wx
2022-02-18 dbe3a91f87f65e893ae1e82f829e1a45496644d7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<Project Sdk="Microsoft.NET.Sdk">
 
  <PropertyGroup>
    <TargetFramework>net6.0</TargetFramework>
    <NoWarn>1701;1702;1591</NoWarn>
    <DocumentationFile>ZTICInterface.Application.xml</DocumentationFile>
  </PropertyGroup>
 
  <ItemGroup>
    <None Remove="applicationsettings.json" />
    <None Remove="ZTICInterface.Application.xml" />
  </ItemGroup>
 
  <ItemGroup>
    <Content Include="applicationsettings.json">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </Content>
  </ItemGroup>
 
  <ItemGroup>
    <ProjectReference Include="..\ZTICInterface.Core\ZTICInterface.Core.csproj" />
  </ItemGroup>
 
  <ItemGroup>
    <Folder Include="Service\" />
    <Folder Include="App\" />
  </ItemGroup>
 
</Project>