1234567891011121314151617181920212223242526 |
- <Project Sdk="Microsoft.NET.Sdk.Web">
- <PropertyGroup>
- <TargetFramework>net7.0</TargetFramework>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>disable</Nullable>
- <GenerateDocumentationFile>True</GenerateDocumentationFile>
- <RootNamespace>AdService</RootNamespace>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="7.0.19" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\DW5S.DTO\02.DW5S.DTO.csproj" />
- <ProjectReference Include="..\DW5S.WebApi\05.DW5S.WebApi.csproj" />
- </ItemGroup>
- <ItemGroup>
- <None Update="test.dat">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- </Project>
|