App.Domain.csproj
576 bytes
| 1 | <Project Sdk="Microsoft.NET.Sdk"> |
|---|---|
| 2 | |
| 3 | <ItemGroup> |
| 4 | <ProjectReference Include="..\Base.Domain\Base.Domain.csproj" /> |
| 5 | <ProjectReference Include="..\Base.Contracts\Base.Contracts.csproj" /> |
| 6 | <ProjectReference Include="..\App.Resources\App.Resources.csproj" /> |
| 7 | </ItemGroup> |
| 8 | |
| 9 | <ItemGroup> |
| 10 | <PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="10.0.5" /> |
| 11 | </ItemGroup> |
| 12 | |
| 13 | <PropertyGroup> |
| 14 | <TargetFramework>net10.0</TargetFramework> |
| 15 | <ImplicitUsings>enable</ImplicitUsings> |
| 16 | <Nullable>enable</Nullable> |
| 17 | </PropertyGroup> |
| 18 | |
| 19 | </Project> |
| 20 | |