cloudflight
2024-07-27 bf63476bc5de49e5b16be35fda57f696ecf8c987
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</TargetFramework>
    <OutputType>Library</OutputType>
    <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
    <AssemblyTitle>Hydro.CodeProvider</AssemblyTitle>
    <Product>CodeProvider</Product>
    <Copyright>Copyright ©  2021</Copyright>
    <AssemblyVersion>1.0.0.0</AssemblyVersion>
    <FileVersion>1.0.0.0</FileVersion>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <OutputPath>..\..\bin\debug\</OutputPath>
    <WarningLevel>0</WarningLevel>
    <UseVSHostingProcess>false</UseVSHostingProcess>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <OutputPath>..\..\bin\release\</OutputPath>
    <NoWarn>DV2002;CS0219;CS0162;CS0414;CS016;CS0618;CS0619;CS0649;</NoWarn>
  </PropertyGroup>
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'dll_test|AnyCPU'">
    <DebugSymbols>true</DebugSymbols>
    <OutputPath>bin\dll_test\</OutputPath>
  </PropertyGroup>
  <ItemGroup>
    <ProjectReference Include="..\Hydro.CommonBase\Hydro.CommonBase.csproj" />
    <ProjectReference Include="..\Hydro.DynamicDll\Hydro.DynamicDll.csproj" />
  </ItemGroup>
  <ItemGroup>
    <PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
    <PackageReference Include="System.CodeDom" Version="8.0.0" />
    <PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
    <PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
  </ItemGroup>
</Project>