Skip to content

Commit a10ea66

Browse files
author
Rafał Maciąg
committed
Nugets
1 parent a63ea29 commit a10ea66

File tree

7 files changed

+57
-2
lines changed

7 files changed

+57
-2
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 modelingevolution
3+
Copyright (c) 2020 ModelingEvolution
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

ModelingEvolution.Plumberd.Abstrations/ModelingEvolution.Plumberd.csproj

+26
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,36 @@
44
<TargetFramework>netcoreapp3.1</TargetFramework>
55
<AssemblyName>ModelingEvolution.Plumberd</AssemblyName>
66
<RootNamespace>ModelingEvolution.Plumberd</RootNamespace>
7+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
8+
<PackageId>Plumberd</PackageId>
9+
<Authors>Rafal Maciag</Authors>
10+
<Product>Plumberd</Product>
11+
<Copyright>ModelingEvolution</Copyright>
12+
<PackageLicenseFile>LICENSE</PackageLicenseFile>
13+
<PackageProjectUrl>https://github.com/modelingevolution/plumberd</PackageProjectUrl>
14+
<RepositoryUrl>https://github.com/modelingevolution/plumberd</RepositoryUrl>
15+
<RepositoryType>GIT</RepositoryType>
16+
<PackageTags>EventStore CQRS EventSourcing</PackageTags>
17+
<PackageReleaseNotes>Pre-Alfa</PackageReleaseNotes>
18+
<PackageIcon>logo-squere.png</PackageIcon>
19+
<Version>0.0.0.1</Version>
20+
<Description>Plumberd is a lightweight library to make working with EventStore easy.
21+
It's makes it super easy for everyone familiar with ASP Controllers or WCF to jump into CQRS and EventSourcing. All the plumbing is automated.</Description>
722
</PropertyGroup>
823

924
<ItemGroup>
1025
<PackageReference Include="Serilog" Version="2.10.0" />
1126
</ItemGroup>
1227

28+
<ItemGroup>
29+
<None Include="..\LICENSE">
30+
<Pack>True</Pack>
31+
<PackagePath></PackagePath>
32+
</None>
33+
<None Include="..\logo-squere.png">
34+
<Pack>True</Pack>
35+
<PackagePath></PackagePath>
36+
</None>
37+
</ItemGroup>
38+
1339
</Project>

ModelingEvolution.Plumberd.EventStore/ModelingEvolution.Plumberd.EventStore.csproj

+28
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,23 @@
44
<TargetFramework>netcoreapp3.1</TargetFramework>
55
<AssemblyName>ModelingEvolution.Plumberd.EventStore</AssemblyName>
66
<RootNamespace>ModelingEvolution.Plumberd.EventStore</RootNamespace>
7+
<PackageLicenseFile>LICENSE</PackageLicenseFile>
8+
<PackageId>Plumberd.EventStore</PackageId>
9+
<Authors>Rafal Maciag</Authors>
10+
<Company>ModelingEvolution</Company>
11+
<Product>Plumberd.EventStore</Product>
12+
<Copyright>ModelingEvolution</Copyright>
13+
<PackageProjectUrl>https://github.com/modelingevolution/plumberd</PackageProjectUrl>
14+
<RepositoryUrl>https://github.com/modelingevolution/plumberd</RepositoryUrl>
15+
<RepositoryType>GIT</RepositoryType>
16+
<PackageIcon>logo-squere.png</PackageIcon>
17+
<PackageTags>EventStore CQRS EventSourcing</PackageTags>
18+
<Version>0.0.0.1</Version>
19+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
20+
<Description>Plumberd is a lightweight library to make working with EventStore easy.
21+
It's makes it super easy for everyone familiar with ASP Controllers or WCF to jump into CQRS and EventSourcing. All the plumbing is automated.
22+
23+
This package is the implementation of EventStory from EventStore.</Description>
724
</PropertyGroup>
825

926
<ItemGroup>
@@ -16,4 +33,15 @@
1633
<ProjectReference Include="..\ModelingEvolution.Plumberd.Abstrations\ModelingEvolution.Plumberd.csproj" />
1734
</ItemGroup>
1835

36+
<ItemGroup>
37+
<None Include="..\LICENSE">
38+
<Pack>True</Pack>
39+
<PackagePath></PackagePath>
40+
</None>
41+
<None Include="..\logo-squere.png">
42+
<Pack>True</Pack>
43+
<PackagePath></PackagePath>
44+
</None>
45+
</ItemGroup>
46+
1947
</Project>

ModelingEvolution.Plumberd.sln

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ModelingEvolution.Plumberd.
1111
EndProject
1212
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{0AD30101-00A4-4037-902F-EF8CA829F541}"
1313
ProjectSection(SolutionItems) = preProject
14+
LICENSE = LICENSE
1415
README.md = README.md
1516
EndProjectSection
1617
EndProject

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## INTRODUCTION
44

55
Plumberd is a lightweight library to make working with EventStore easy.
6-
It's makes it super easy for everyone familiar with ASP Controllers to jump into CQRS and EventSourcing.
6+
It's makes it super easy for everyone familiar with ASP Controllers or WCF to jump into CQRS and EventSourcing. All the plumbing is automated.
77

88
How? So simple:
99

logo-squere.png

4.51 KB
Loading

logo.png

38.9 KB
Loading

0 commit comments

Comments
 (0)