lixiaojun
2022-08-02 66b07025421f9a1c68c9298b3cc8345280bfc0c7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
 
  <PropertyGroup>
    <TargetFramework>net6.0</TargetFramework>
    <ImplicitUsings>enable</ImplicitUsings>
    <Nullable>disable</Nullable>
    <AssemblyName>IStation.Application4Monitor</AssemblyName>
    <RootNamespace>IStation.Application</RootNamespace>
    <GenerateDocumentationFile>True</GenerateDocumentationFile>
  </PropertyGroup>
 
  <ItemGroup>
    <Compile Remove="dto\**" />
    <EmbeddedResource Remove="dto\**" />
    <None Remove="dto\**" />
  </ItemGroup>
 
  <ItemGroup>
    <ProjectReference Include="..\..\Service\IStation.Service4Monitor\IStation.Service4Monitor.csproj" />
    <ProjectReference Include="..\IStation.Application4Core\IStation.Application4Core.csproj" />
  </ItemGroup>
 
</Project>