lixiaojun
2024-08-13 d06e5f065b7d1d2ccb8812d6aeb768b825a82d1e
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
<Project Sdk="Microsoft.NET.Sdk">
 
  <PropertyGroup>
    <TargetFramework>net6.0-windows</TargetFramework>
    <ImplicitUsings>enable</ImplicitUsings>
    <Nullable>disable</Nullable>
  </PropertyGroup>
 
  <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>