ningshuxia
6 天以前 eaf4edfeeb42590be28c59a393c6a868e1831396
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
<Project Sdk="Microsoft.NET.Sdk">
 
    <PropertyGroup>
        <OutputType>WinExe</OutputType>
        <TargetFramework>net6.0-windows</TargetFramework>
        <Nullable>disable</Nullable>
        <ImplicitUsings>enable</ImplicitUsings>
        <UseWPF>true</UseWPF>
    </PropertyGroup>
 
    <ItemGroup>
        <None Remove="wh.inp" />
    </ItemGroup>
 
    <ItemGroup>
        <Content Include="wh.inp">
            <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
        </Content>
    </ItemGroup>
 
    <ItemGroup>
        <ProjectReference Include="..\Yw.Epanet.Calcu.Core\Yw.Epanet.Calcu.Core.csproj" />
        <ProjectReference Include="..\Yw.WpfUI.Hydro.L3d.Core\Yw.WpfUI.Hydro.L3d.Core.csproj" />
    </ItemGroup>
 
    <ItemGroup>
        <None Update="mt.png">
            <CopyToOutputDirectory>Always</CopyToOutputDirectory>
        </None>
    </ItemGroup>
 
</Project>