38 lines
1.5 KiB
XML
38 lines
1.5 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<!--package info-->
|
|
<PackageId>DTLib.Network</PackageId>
|
|
<Version>1.1.2</Version>
|
|
<Authors>Timerix</Authors>
|
|
<Description>Some sick network protocols</Description>
|
|
<RepositoryType>GIT</RepositoryType>
|
|
<RepositoryUrl>https://github.com/Timerix22/DTLib</RepositoryUrl>
|
|
<PackageProjectUrl>https://github.com/Timerix22/DTLib</PackageProjectUrl>
|
|
<Configuration>Release</Configuration>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<!--compilation properties-->
|
|
<TargetFrameworks>net6.0;netstandard2.0;net48</TargetFrameworks>
|
|
<DebugType>embedded</DebugType>
|
|
<!--language features-->
|
|
<LangVersion>10</LangVersion>
|
|
<Nullable>disable</Nullable>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<!--external dependencies-->
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'net48' ">
|
|
<Reference Include="System.Net" />
|
|
<Reference Include="System.Net.Http" />
|
|
<Reference Include="Microsoft.CSharp" />
|
|
</ItemGroup>
|
|
|
|
<!--DTLib dependencies-->
|
|
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
<ProjectReference Include="..\DTLib\DTLib.csproj" />
|
|
<ProjectReference Include="..\DTLib.Dtsod\DTLib.Dtsod.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup Condition=" '$(Configuration)' != 'Debug' ">
|
|
<PackageReference Include="DTLib.Dtsod" Version="1.1.2" />
|
|
</ItemGroup>
|
|
</Project>
|