ningshuxia
2025-04-25 eaf4edfeeb42590be28c59a393c6a868e1831396
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
 
  <PropertyGroup>
    <TargetFramework>net6.0</TargetFramework>
    <ImplicitUsings>enable</ImplicitUsings>
    <Nullable>disable</Nullable>
    <GeneratePackageOnBuild>True</GeneratePackageOnBuild>
    <Version>1.0.6</Version>
    <Title>Epanet的Net封装包</Title>
    <PackageReleaseNotes>修复En_geterror崩溃问题</PackageReleaseNotes>
  </PropertyGroup>
 
  <ItemGroup>
    <None Remove="epanet2.dll" />
  </ItemGroup>
 
  <ItemGroup>
    <Content Include="epanet2.dll">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </Content>
  </ItemGroup>
 
</Project>