ningshuxia
2023-06-27 d5a533d045422407c1b7edfdde9fd19740e478d1
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
<Project Sdk="Microsoft.NET.Sdk">
 
  <PropertyGroup>
    <TargetFramework>net6.0</TargetFramework>
    <ImplicitUsings>enable</ImplicitUsings>
    <Nullable>disable</Nullable>
    <AssemblyName>IStation.Settings</AssemblyName>
    <RootNamespace>IStation</RootNamespace>
    <GenerateDocumentationFile>True</GenerateDocumentationFile>
  </PropertyGroup>
 
  <ItemGroup>
    <None Remove="paras_settings.json" />
  </ItemGroup>
 
  <ItemGroup>
    <Content Include="paras_settings.json">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </Content>
  </ItemGroup>
 
  <ItemGroup>
    <ProjectReference Include="..\..\Component\IStation.Newtonsoft\IStation.Newtonsoft.csproj" />
    <ProjectReference Include="..\..\Untity\IStation.Untity\IStation.Untity.csproj" />
  </ItemGroup>
 
</Project>