username@email.com
2023-08-31 633193b38b094ee2e0651cf64b95fb5b559c8714
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<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" />
        <ProjectReference Include="..\DocumentServiceAPI.Model\DocumentServiceAPI.Model.csproj" />
    </ItemGroup>
 
</Project>