ningshuxia
2022-11-14 e4680615a852b2eb115b32c8bcbc3b788c3f9ef4
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
30
31
32
33
34
35
36
37
<Project Sdk="Microsoft.NET.Sdk">
 
  <PropertyGroup>
    <TargetFramework>net6.0</TargetFramework>
    <ImplicitUsings>enable</ImplicitUsings>
    <Nullable>disable</Nullable>
    <AssemblyName>IStation.DataDockingSocket4NT</AssemblyName>
    <RootNamespace>IStation.DataDockingSocket</RootNamespace>
  </PropertyGroup>
 
  <ItemGroup>
    <Compile Remove="Log4Net\**" />
    <EmbeddedResource Remove="Log4Net\**" />
    <None Remove="Log4Net\**" />
  </ItemGroup>
 
  <ItemGroup>
    <Compile Remove="instruction\NtnyMsgHelper.cs" />
  </ItemGroup>
 
  <ItemGroup>
    <PackageReference Include="log4net" Version="2.0.14" />
  </ItemGroup>
 
  <ItemGroup>
    <ProjectReference Include="..\..\Component\IStation.Quartz\IStation.Quartz.csproj" />
    <ProjectReference Include="..\..\Component\IStation.RabbitMq\IStation.RabbitMq.csproj" />
    <ProjectReference Include="..\IStation.IDataDockingSocket\IStation.IDataDockingSocket.csproj" />
  </ItemGroup>
 
  <ItemGroup>
    <None Update="paras_datadocking_socket_nt.json">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </None>
  </ItemGroup>
 
</Project>