cloudflight
2024-06-17 b62f5f0104845c2a3a74707792ebf28a506e24f1
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
33
34
35
<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>