1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| <Project Sdk="Microsoft.NET.Sdk">
|
|
| <PropertyGroup>
| <TargetFramework>net6.0</TargetFramework>
| <NoWarn>1701;1702;1591</NoWarn>
| <DocumentationFile>DocumentServiceAPI.Web.Core.xml</DocumentationFile>
| </PropertyGroup>
|
|
|
| <ItemGroup>
| <None Remove="DocumentServiceAPI.Web.Core.xml" />
| </ItemGroup>
|
| <ItemGroup>
| <ProjectReference Include="..\DocumentServiceAPI.Application\DocumentServiceAPI.Application.csproj" />
| </ItemGroup>
|
| </Project>
|
|