<Project Sdk="Microsoft.NET.Sdk">
|
<PropertyGroup>
|
<TargetFramework>net6.0-windows</TargetFramework>
|
<OutputType>Library</OutputType>
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
<UseWindowsForms>true</UseWindowsForms>
|
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
|
</PropertyGroup>
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
<OutputPath>..\..\bin\debug\</OutputPath>
|
<UseVSHostingProcess>false</UseVSHostingProcess>
|
</PropertyGroup>
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
<OutputPath>..\..\bin\release\</OutputPath>
|
</PropertyGroup>
|
<ItemGroup>
|
<ProjectReference Include="..\Hydro.CodeProvider\Hydro.CodeProvider.csproj" />
|
<ProjectReference Include="..\Hydro.CommonBase\Hydro.CommonBase.csproj" />
|
<ProjectReference Include="..\Hydro.ConfigModel\Hydro.ConfigModel.csproj" />
|
<ProjectReference Include="..\Hydro.Core\Hydro.Core.csproj" />
|
<ProjectReference Include="..\Hydro.HydraulicModel\Hydro.HydraulicModel.csproj" />
|
</ItemGroup>
|
<ItemGroup>
|
<PackageReference Include="AForge" Version="2.2.5" />
|
<PackageReference Include="Dapper" Version="2.1.28" />
|
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
|
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
</ItemGroup>
|
<ItemGroup>
|
<Reference Include="Hydro.HydraulicHelper">
|
<HintPath>..\..\..\Desktop.V1.3\Lib\Hydro.HydraulicHelper.dll</HintPath>
|
</Reference>
|
</ItemGroup>
|
</Project>
|