27 lines
1.2 KiB
XML
27 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<!--package info-->
|
|
<PackageId>DTLib.Ben.Demystifier</PackageId>
|
|
<Version>1.0.0</Version>
|
|
<Authors>Timerix</Authors>
|
|
<RepositoryType>GIT</RepositoryType>
|
|
<RepositoryUrl>https://github.com/Timerix22/DTLib</RepositoryUrl>
|
|
<Configuration>Release</Configuration>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
|
|
<!--compilation properties-->
|
|
<TargetFrameworks>net6.0;netstandard2.0;net48</TargetFrameworks>
|
|
<DebugType>embedded</DebugType>
|
|
<!--language features-->
|
|
<Nullable>enable</Nullable>
|
|
<LangVersion>10</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Reflection.Metadata" Version="5.0.0" Condition="'$(TargetFramework)' != 'net6.0'"/>
|
|
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.4" Condition="'$(TargetFramework)' != 'netstandard2.1'"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|