Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 22 additions & 22 deletions samples/ClearDomain.Samples/ClearDomain.Samples.csproj
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<IsPackable>False</IsPackable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="MediatR.Contracts" Version="2.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="9.0.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9.0.2" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.2" />
<PackageReference Include="Microsoft.Extensions.Identity.Core" Version="9.0.2" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\source\ClearDomain.Identity\ClearDomain.Identity.csproj" />
<ProjectReference Include="..\..\source\ClearDomain\ClearDomain.csproj" />
</ItemGroup>

</Project>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<IsPackable>False</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MediatR.Contracts" Version="2.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="9.0.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9.0.6" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.6" />
<PackageReference Include="Microsoft.Extensions.Identity.Core" Version="9.0.6" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\source\ClearDomain.Identity\ClearDomain.Identity.csproj" />
<ProjectReference Include="..\..\source\ClearDomain\ClearDomain.csproj" />
</ItemGroup>
</Project>
74 changes: 37 additions & 37 deletions source/ClearDomain.Identity/ClearDomain.Identity.csproj
Original file line number Diff line number Diff line change
@@ -1,37 +1,37 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<Title>ClearDomain.Identity</Title>
<Authors>Michael Bradvica</Authors>
<Company>Simplex Software LLC</Company>
<Description>A set of domain base classes and interfaces for .NET.</Description>
<Copyright>Copyright (c) Simplex Software LLC 2025. All rights reserved.</Copyright>
<PackageProjectUrl>https://github.com/mjbradvica/ClearDomain</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/mjbradvica/ClearDomain</RepositoryUrl>
<PackageTags>ddd, domain, DomainDrivenDesign</PackageTags>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<Version>0.9.6</Version>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\LICENSE">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

<ItemGroup>
<PackageReference Include="ClearDomain" Version="0.9.6" />
<PackageReference Include="Microsoft.Extensions.Identity.Stores">
<Version>9.0.2</Version>
</PackageReference>
</ItemGroup>

</Project>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<Title>ClearDomain.Identity</Title>
<Authors>Michael Bradvica</Authors>
<Company>Simplex Software LLC</Company>
<Description>A set of domain base classes and interfaces for .NET.</Description>
<Copyright>Copyright (c) Simplex Software LLC 2025. All rights reserved.</Copyright>
<PackageProjectUrl>https://github.com/mjbradvica/ClearDomain</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/mjbradvica/ClearDomain</RepositoryUrl>
<PackageTags>ddd, domain, DomainDrivenDesign</PackageTags>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<Version>0.9.6</Version>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\LICENSE">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="ClearDomain" Version="0.9.6" />
<PackageReference Include="Microsoft.Extensions.Identity.Stores">
<Version>9.0.6</Version>
</PackageReference>
</ItemGroup>
</Project>
58 changes: 29 additions & 29 deletions tests/ClearDomain.Tests/ClearDomain.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="coverlet.msbuild" Version="6.0.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Dapper" Version="2.1.66" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="6.0.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.2" />
<PackageReference Include="MongoDB.Driver" Version="3.2.1" />
<PackageReference Include="MSTest" Version="3.8.2" />
<PackageReference Include="coverlet.collector" Version="6.0.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\source\ClearDomain.Identity\ClearDomain.Identity.csproj" />
<ProjectReference Include="..\..\source\ClearDomain\ClearDomain.csproj" />
</ItemGroup>

</Project>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="coverlet.msbuild" Version="6.0.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Dapper" Version="2.1.66" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="6.0.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.6" />
<PackageReference Include="MongoDB.Driver" Version="3.4.0" />
<PackageReference Include="MSTest" Version="3.9.3" />
<PackageReference Include="coverlet.collector" Version="6.0.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\source\ClearDomain.Identity\ClearDomain.Identity.csproj" />
<ProjectReference Include="..\..\source\ClearDomain\ClearDomain.csproj" />
</ItemGroup>
</Project>