6dff8e7777
- Domain, Infrastructure, Application (class libraries) - Web (ASP.NET Core empty) - Admin (Blazor Server) - All net8.0 target framework - Project references configured Co-Authored-By: Claude <noreply@anthropic.com>
15 lines
417 B
XML
15 lines
417 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\TaxBaik.Application\TaxBaik.Application.csproj" />
|
|
<ProjectReference Include="..\TaxBaik.Infrastructure\TaxBaik.Infrastructure.csproj" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|