Shuxia Ning
2024-08-14 d3cf19f5fc555eb53d74ca08f157cca5c3c8311c
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-windows</TargetFramework>
    <ImplicitUsings>enable</ImplicitUsings>
    <Nullable>disable</Nullable>
  </PropertyGroup>
 
  <ItemGroup>
    <Compile Remove="Node\**" />
    <EmbeddedResource Remove="Node\**" />
    <None Remove="Node\**" />
  </ItemGroup>
 
  <ItemGroup>
    <Compile Remove="NetWork\NetWork.cs" />
  </ItemGroup>
 
  <ItemGroup>
    <None Remove="template\template.inp" />
  </ItemGroup>
 
  <ItemGroup>
    <Content Include="template\template.inp">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </Content>
  </ItemGroup>
 
  <ItemGroup>
    <ProjectReference Include="..\Yw.EPAnet.Core\Yw.EPAnet.Core.csproj" />
  </ItemGroup>
 
  <ItemGroup>
    <Folder Include="NetWork\" />
  </ItemGroup>
 
</Project>