<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>
|