Skip to content

Commit b637e14

Browse files
committed
removing old project, moving new projects, using license file
1 parent 8f71265 commit b637e14

34 files changed

+45
-284
lines changed

DDDToolkit.sln

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ Project("{00D1A9C2-B5F0-4AF3-8072-F6C62B433612}") = "DDDToolkit.Samples.Library.
3535
EndProject
3636
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DDDToolkit.Validation", "src\DDDToolkit.Validation\DDDToolkit.Validation.csproj", "{0D0A57EF-3B95-4D6B-A3E6-0217FEB0DC6F}"
3737
EndProject
38-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DDDToolkit.EventSourcing", "DDDToolkit.EventSourcing\DDDToolkit.EventSourcing.csproj", "{EE8BBDB2-9128-4C5C-9648-53371FE3C3BE}"
38+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DDDToolkit.EventSourcing", "src\DDDToolkit.EventSourcing\DDDToolkit.EventSourcing.csproj", "{EE8BBDB2-9128-4C5C-9648-53371FE3C3BE}"
3939
EndProject
40-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DDDToolkit.EventSourcing.Tests", "DDDToolkit.EventSourcing.Tests\DDDToolkit.EventSourcing.Tests.csproj", "{37BE5ED1-05A9-491B-B8DA-F751882E20B0}"
40+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DDDToolkit.EventSourcing.Tests", "tests\DDDToolkit.EventSourcing.Tests\DDDToolkit.EventSourcing.Tests.csproj", "{37BE5ED1-05A9-491B-B8DA-F751882E20B0}"
4141
EndProject
4242
Global
4343
GlobalSection(SolutionConfigurationPlatforms) = preSolution

src/DDDToolkit.API/AggregateController.cs

Lines changed: 0 additions & 38 deletions
This file was deleted.

src/DDDToolkit.API/DDDToolkit.API.csproj

Lines changed: 0 additions & 27 deletions
This file was deleted.

src/DDDToolkit.API/IAggregateController.cs

Lines changed: 0 additions & 14 deletions
This file was deleted.

src/DDDToolkit.API/IReadableAggregateController.cs

Lines changed: 0 additions & 13 deletions
This file was deleted.

src/DDDToolkit.API/IWritableAggregateController.cs

Lines changed: 0 additions & 13 deletions
This file was deleted.

src/DDDToolkit.API/ReadableAggregateController.cs

Lines changed: 0 additions & 33 deletions
This file was deleted.

src/DDDToolkit.API/ReadableAggregateControllerImpl.cs

Lines changed: 0 additions & 12 deletions
This file was deleted.

src/DDDToolkit.API/WritableAggregateController.cs

Lines changed: 0 additions & 56 deletions
This file was deleted.

src/DDDToolkit.API/WritableAggregateControllerImpl.cs

Lines changed: 0 additions & 12 deletions
This file was deleted.

src/DDDToolkit.ApplicationLayer/DDDToolkit.ApplicationLayer.csproj

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<TargetFramework>netstandard1.3</TargetFramework>
@@ -7,7 +7,7 @@
77
<Product>DDDToolkit</Product>
88
<Description>Generic application services for CRUD operations with DDDToolkit.</Description>
99
<Copyright>Paul Burgess</Copyright>
10-
<PackageLicenseUrl>https://opensource.org/licenses/MIT</PackageLicenseUrl>
10+
<PackageLicenseFile>LICENSE</PackageLicenseFile>
1111
<PackageProjectUrl>https://github.com/codepb/DDDToolkit</PackageProjectUrl>
1212
<RepositoryUrl>https://github.com/codepb/DDDToolkit</RepositoryUrl>
1313
<PackageTags>DDD, Domain Driven Design, Application Layer</PackageTags>
@@ -16,6 +16,10 @@
1616
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1717
</PropertyGroup>
1818

19+
<ItemGroup>
20+
<None Include="..\..\LICENSE" Pack="true" PackagePath=""/>
21+
</ItemGroup>
22+
1923
<ItemGroup>
2024
<PackageReference Include="FluentQueries" Version="1.1.1" />
2125
</ItemGroup>

src/DDDToolkit.Core/DDDToolkit.Core.csproj

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<TargetFramework>netstandard1.3</TargetFramework>
@@ -8,14 +8,18 @@
88
<Product>DDDToolkit</Product>
99
<Description>Core set of classes to support development using DDD.</Description>
1010
<Copyright>Paul Burgess</Copyright>
11-
<PackageLicenseUrl>https://opensource.org/licenses/MIT</PackageLicenseUrl>
11+
<PackageLicenseFile>LICENSE</PackageLicenseFile>
1212
<PackageProjectUrl>https://github.com/codepb/DDDToolkit</PackageProjectUrl>
1313
<RepositoryUrl>https://github.com/codepb/DDDToolkit</RepositoryUrl>
1414
<PackageTags>DDD, Domain Driven Design, Entity, Aggregate</PackageTags>
1515
<PackageIconUrl>https://raw.githubusercontent.com/codepb/DDDToolkit/master/logo/logo.png</PackageIconUrl>
1616
<Version>2.0.0</Version>
1717
</PropertyGroup>
1818

19+
<ItemGroup>
20+
<None Include="..\..\LICENSE" Pack="true" PackagePath=""/>
21+
</ItemGroup>
22+
1923
<ItemGroup>
2024
<PackageReference Include="Microsoft.CSharp" Version="4.5.0" />
2125
<PackageReference Include="System.Reflection.TypeExtensions" Version="4.5.1" />

src/DDDToolkit.EntityFramework.Extensions/DDDToolkit.EntityFramework.Extensions.csproj

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
@@ -7,7 +7,7 @@
77
<Product>DDDToolkit</Product>
88
<Description>Extensions to support working with DDDToolkit with Entity Framework Core.</Description>
99
<Copyright>Paul Burgess</Copyright>
10-
<PackageLicenseUrl>https://opensource.org/licenses/MIT</PackageLicenseUrl>
10+
<PackageLicenseFile>LICENSE</PackageLicenseFile>
1111
<PackageProjectUrl>https://github.com/codepb/DDDToolkit</PackageProjectUrl>
1212
<RepositoryUrl>https://github.com/codepb/DDDToolkit</RepositoryUrl>
1313
<PackageTags>DDD, Domain Driven Design, Entity Framework Core</PackageTags>
@@ -16,6 +16,10 @@
1616
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1717
</PropertyGroup>
1818

19+
<ItemGroup>
20+
<None Include="..\..\LICENSE" Pack="true" PackagePath=""/>
21+
</ItemGroup>
22+
1923
<ItemGroup>
2024
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="2.2.2" />
2125
</ItemGroup>
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<TargetFramework>netstandard1.3</TargetFramework>
55
<Authors>Paul Burgess</Authors>
66
<Product>DDDToolkit</Product>
77
<Description>Support for event sourcing using DDD</Description>
88
<Copyright>Paul Burgess</Copyright>
9-
<PackageLicenseUrl>https://opensource.org/licenses/MIT</PackageLicenseUrl>
9+
<PackageLicenseFile>LICENSE</PackageLicenseFile>
1010
<PackageProjectUrl>https://github.com/codepb/DDDToolkit</PackageProjectUrl>
1111
<PackageIconUrl>https://raw.githubusercontent.com/codepb/DDDToolkit/master/logo/logo.png</PackageIconUrl>
1212
<RepositoryUrl>https://github.com/codepb/DDDToolkit</RepositoryUrl>
@@ -15,12 +15,16 @@
1515
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1616
</PropertyGroup>
1717

18+
<ItemGroup>
19+
<None Include="..\..\LICENSE" Pack="true" PackagePath=""/>
20+
</ItemGroup>
21+
1822
<ItemGroup>
1923
<PackageReference Include="FluentAssertions" Version="5.6.0" />
2024
</ItemGroup>
2125

2226
<ItemGroup>
23-
<ProjectReference Include="..\src\DDDToolkit.Core\DDDToolkit.Core.csproj" />
27+
<ProjectReference Include="..\DDDToolkit.Core\DDDToolkit.Core.csproj" />
2428
</ItemGroup>
2529

2630
</Project>

src/DDDToolkit.Repository.Sql/DDDToolkit.Repository.Sql.csproj

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
@@ -7,7 +7,7 @@
77
<Product>DDDToolkit</Product>
88
<Description>Repository and Unit of Work classes to work with DDDToolkit and SQL database using Entity Framework Core</Description>
99
<Copyright>Paul Burgess</Copyright>
10-
<PackageLicenseUrl>https://opensource.org/licenses/MIT</PackageLicenseUrl>
10+
<PackageLicenseFile>LICENSE</PackageLicenseFile>
1111
<PackageProjectUrl>https://github.com/codepb/DDDToolkit</PackageProjectUrl>
1212
<RepositoryUrl>https://github.com/codepb/DDDToolkit</RepositoryUrl>
1313
<PackageTags>DDD, Domain Driven Design, Entity Framework Core, SQL</PackageTags>
@@ -17,8 +17,7 @@
1717
</PropertyGroup>
1818

1919
<ItemGroup>
20-
<Compile Remove="EFQuery.cs" />
21-
<Compile Remove="Query.cs" />
20+
<None Include="..\..\LICENSE" Pack="true" PackagePath=""/>
2221
</ItemGroup>
2322

2423
<ItemGroup>

0 commit comments

Comments
 (0)