ningshuxia
2025-04-16 a67da735b33be01b24845ce03ae7551cf55ddbbc
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
<Project Sdk="Microsoft.NET.Sdk">
 
  <PropertyGroup>
    <TargetFramework>net6.0</TargetFramework>
    <ImplicitUsings>enable</ImplicitUsings>
    <Nullable>disable</Nullable>
    <PlatformTarget>AnyCPU</PlatformTarget>
  </PropertyGroup>
 
  <ItemGroup>
    <Compile Remove="analysis\**" />
    <Compile Remove="Calculate\**" />
    <Compile Remove="schedule\**" />
    <EmbeddedResource Remove="analysis\**" />
    <EmbeddedResource Remove="Calculate\**" />
    <EmbeddedResource Remove="schedule\**" />
    <None Remove="analysis\**" />
    <None Remove="Calculate\**" />
    <None Remove="schedule\**" />
  </ItemGroup>
 
  <ItemGroup>
    <None Update="epanet2.2.dll">
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
    </None>
  </ItemGroup>
 
</Project>