cloudflight
2025-03-05 197329a6ff17789652955e7be314506301332580
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<Project Sdk="Microsoft.NET.Sdk">
  <PropertyGroup>
    <TargetFramework>net6.0-windows</TargetFramework>
    <OutputType>Library</OutputType>
    <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
    <AssemblyTitle>Hydro.ConfigModel</AssemblyTitle>
    <Company>Administrator</Company>
    <Product>Hydro.ConfigModel</Product>
    <Copyright>Copyright © Administrator 2023</Copyright>
    <AssemblyVersion>1.0.0.0</AssemblyVersion>
    <FileVersion>1.0.0.0</FileVersion>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <Optimize>true</Optimize>
    <OutputPath>..\..\bin\debug\</OutputPath>
    <WarningLevel>0</WarningLevel>
    <NoWarn>MSB3305;DV2002;CS0219;CS0162;CS0414;CS016;CS0618;CS0169;CS0649;CS0109;CS3021;CS0168;CS0067</NoWarn>
    <UseVSHostingProcess>false</UseVSHostingProcess>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <OutputPath>..\..\bin\release\</OutputPath>
    <WarningLevel>0</WarningLevel>
  </PropertyGroup>
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'dll_test|AnyCPU'">
    <DebugSymbols>true</DebugSymbols>
    <OutputPath>bin\dll_test\</OutputPath>
    <Optimize>true</Optimize>
    <NoWarn>MSB3305;DV2002;CS0219;CS0162;CS0414;CS016;CS0618;CS0169;CS0649;CS0109;CS3021;CS0168;CS0067</NoWarn>
  </PropertyGroup>
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
    <OutputPath>..\bin\Debug\</OutputPath>
    <Optimize>true</Optimize>
    <NoWarn>MSB3305;DV2002;CS0219;CS0162;CS0414;CS016;CS0618;CS0169;CS0649;CS0109;CS3021;CS0168;CS0067</NoWarn>
  </PropertyGroup>
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
    <OutputPath>bin\x64\Release\</OutputPath>
    <WarningLevel>0</WarningLevel>
  </PropertyGroup>
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'dll_test|x64'">
    <DebugSymbols>true</DebugSymbols>
    <OutputPath>bin\x64\dll_test\</OutputPath>
    <Optimize>true</Optimize>
    <NoWarn>MSB3305;DV2002;CS0219;CS0162;CS0414;CS016;CS0618;CS0169;CS0649;CS0109;CS3021;CS0168;CS0067</NoWarn>
  </PropertyGroup>
  <ItemGroup>
    <Compile Update="Properties\Resources.Designer.cs">
      <AutoGen>True</AutoGen>
      <DesignTime>True</DesignTime>
      <DependentUpon>Resources.resx</DependentUpon>
    </Compile>
  </ItemGroup>
  <ItemGroup>
    <EmbeddedResource Update="Properties\Resources.resx">
      <Generator>ResXFileCodeGenerator</Generator>
      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
    </EmbeddedResource>
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\Hydro.CommonBase\Hydro.CommonBase.csproj" />
    <ProjectReference Include="..\Hydro.HydraulicModel\Yw.EPAnet.Core.csproj" />
  </ItemGroup>
  <ItemGroup>
    <Analyzer Include="..\..\packages\Microsoft.DependencyValidation.Analyzers.0.11.0\analyzers\dotnet\cs\Microsoft.DependencyValidation.Analyzers.resources.dll" />
    <Analyzer Include="..\..\packages\Microsoft.DependencyValidation.Analyzers.0.11.0\analyzers\dotnet\Microsoft.DependencyValidation.Analyzers.dll" />
  </ItemGroup>
  <ItemGroup>
    <PackageReference Include="Dapper" Version="2.1.28" />
    <PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
    <PackageReference Include="Microsoft.DependencyValidation.Analyzers" Version="0.11.0" />
    <PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
    <PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
    <PackageReference Include="System.Data.SQLite" Version="1.0.118.0" />
    <PackageReference Include="System.Data.SQLite.Core" Version="1.0.118.0" />
    <PackageReference Include="System.Data.SQLite.EF6" Version="1.0.118.0" />
    <PackageReference Include="EntityFramework" Version="6.4.4" />
    <PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
  </ItemGroup>
  <ItemGroup>
    <Compile Remove="CalcExt.cs" />
    <Compile Remove="Common\LogicalPointType.cs" />
    <Compile Remove="Common\TypeFacilities.cs" />
    <Compile Remove="Common\TypeIndicator.cs" />
    <Compile Remove="Common\TypeObject.cs" />
    <Compile Remove="DbHelper.cs" />
    <Compile Remove="EPAmodel.cs" />
    <Compile Remove="GlobalConfig.cs" />
  </ItemGroup>
</Project>