123456789101112131415161718192021 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net8.0</TargetFramework>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>disable</Nullable>
- <GenerateDocumentationFile>True</GenerateDocumentationFile>
- <RootNamespace>DW5S.Controller</RootNamespace>
- </PropertyGroup>
- <ItemGroup>
- <FrameworkReference Include="Microsoft.AspNetCore.App" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\DW5S.DTO\02.DW5S.DTO.csproj" />
- <ProjectReference Include="..\DW5S.Entity\03.DW5S.Entity.csproj" />
- <ProjectReference Include="..\DW5S.KxcApi\06.DW5S.KxcApi.csproj" />
- <ProjectReference Include="..\DW5S.Repostory\04.DW5S.Repostory.csproj" />
- <ProjectReference Include="..\DW5S.Service\07.DW5S.Service.csproj" />
- <ProjectReference Include="..\DW5S.WebApi\05.DW5S.WebApi.csproj" />
- </ItemGroup>
- </Project>
|