37 lines
1.9 KiB
XML
37 lines
1.9 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<!--package info-->
|
|
<PackageId>DTLib.Demystifier</PackageId>
|
|
<Version>1.1.0</Version>
|
|
<Authors>Timerix</Authors>
|
|
<Description>netstandard2.0 fork of Demystifier</Description>
|
|
<RepositoryType>GIT</RepositoryType>
|
|
<RepositoryUrl>https://timerix.ddns.net:3322/Timerix/DTLib.Demystifier</RepositoryUrl>
|
|
<PackageProjectUrl>https://timerix.ddns.net:3322/Timerix/DTLib.Demystifier</PackageProjectUrl>
|
|
<Configuration>Release</Configuration>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<!--compilation properties-->
|
|
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
|
|
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
|
|
<!--language features-->
|
|
<LangVersion>12</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
<RootNamespace>DTLib.Demystifier</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<!--external dependencies-->
|
|
<ItemGroup >
|
|
<PackageReference Include="System.Reflection.Metadata" Version="8.0.0" />
|
|
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.4" />
|
|
</ItemGroup>
|
|
|
|
<!--copy pdb files from nuget packages to publish directory-->
|
|
<Target Name="IncludeSymbolFiles" AfterTargets="ResolveAssemblyReferences" Condition="@(ReferenceCopyLocalPaths) != ''">
|
|
<ItemGroup>
|
|
<ReferenceCopyLocalPaths Include="%(ReferenceCopyLocalPaths.RelativeDir)%(ReferenceCopyLocalPaths.Filename).pdb; %(ReferenceCopyLocalPaths.RelativeDir)%(ReferenceCopyLocalPaths.Filename).xml" />
|
|
<ReferenceCopyLocalPaths Remove="@(ReferenceCopyLocalPaths)" Condition="!Exists('%(FullPath)')" />
|
|
</ItemGroup>
|
|
</Target>
|
|
</Project>
|