lixiaojun
2022-08-17 d3024a7b50b35a8f24c1bfe0f13f4f86cc63a253
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
<Project Sdk="Microsoft.NET.Sdk">
 
  <PropertyGroup>
    <TargetFramework>net6.0</TargetFramework>
    <ImplicitUsings>enable</ImplicitUsings>
    <Nullable>disable</Nullable>
    <RootNamespace>IStation.Channel</RootNamespace>
  </PropertyGroup>
 
  <ItemGroup>
    <None Remove="applicationconfig.json" />
  </ItemGroup>
 
  <ItemGroup>
    <Content Include="applicationconfig.json">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </Content>
  </ItemGroup>
 
  <ItemGroup>
    <ProjectReference Include="..\..\Component\IStation.Furion\IStation.Furion.csproj" />
    <ProjectReference Include="..\..\Component\IStation.Log4Net\IStation.Log4Net.csproj" />
    <ProjectReference Include="..\..\Dto\IStation.Dto4Api\IStation.Dto4Api.csproj" />
  </ItemGroup>
 
</Project>