<Project Sdk="Microsoft.NET.Sdk">
|
<PropertyGroup>
|
<TargetFramework>net6.0-windows</TargetFramework>
|
<OutputType>WinExe</OutputType>
|
<RootNamespace>Hydro.ClientTool</RootNamespace>
|
<AssemblyName>Hydro.ClientTool</AssemblyName>
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
<UseWindowsForms>true</UseWindowsForms>
|
<UseWPF>true</UseWPF>
|
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
|
</PropertyGroup>
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
<OutputPath>..\bin\debug\</OutputPath>
|
<WarningLevel>0</WarningLevel>
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
<Optimize>False</Optimize>
|
</PropertyGroup>
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
<OutputPath>..\bin\release\</OutputPath>
|
<Optimize>True</Optimize>
|
</PropertyGroup>
|
<ItemGroup>
|
<ProjectReference Include="..\Yw.EPAnet.Calcu.Core\Yw.EPAnet.Calcu.Core.csproj" />
|
</ItemGroup>
|
<ItemGroup>
|
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
|
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
|
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
|
</ItemGroup>
|
<ItemGroup>
|
<Compile Update="Form1.cs">
|
<SubType>Form</SubType>
|
</Compile>
|
</ItemGroup>
|
<ItemGroup>
|
<None Update="Template\template.inp">
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
</None>
|
</ItemGroup>
|
</Project>
|