iced/Iced/Iced.csproj

40 lines
1.9 KiB
XML
Raw Normal View History

2018-09-12 13:40:49 +02:00
<Project Sdk="Microsoft.NET.Sdk">
2018-09-10 22:17:35 +02:00
2018-09-06 01:29:23 +02:00
<PropertyGroup>
<OutputType>Library</OutputType>
2018-09-10 22:17:35 +02:00
<TargetFrameworks>net471;netstandard2.0</TargetFrameworks>
<Description>x86/x64 instruction decoder, encoder, formatter</Description>
<Copyright>Copyright (C) 2018 de4dot@gmail.com</Copyright>
<AssemblyTitle>Iced</AssemblyTitle>
2018-09-06 01:29:23 +02:00
<AssemblyName>Iced</AssemblyName>
2018-09-10 22:17:35 +02:00
<PackageId>Iced</PackageId>
<NeutralLanguage>en-US</NeutralLanguage>
<Version>0.9.0</Version>
<Authors>0xd4d</Authors>
<PackageTags>x86;x64;disassembler;encoder;decoder</PackageTags>
<!-- <PackageReleaseNotes>https://github.com/0xd4d/iced/blob/master/changelog.md</PackageReleaseNotes> -->
<!-- <PackageIconUrl>https://raw.githubusercontent.com/0xd4d/iced/master/img/iced.png</PackageIconUrl> -->
<PackageProjectUrl>https://github.com/0xd4d/iced/</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/0xd4d/iced//blob/master/COPYING.txt</PackageLicenseUrl>
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.1' ">1.6.0</NetStandardImplicitPackageVersion>
<Features>strict</Features>
2018-09-10 22:17:35 +02:00
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!--Add support for sourcelink-->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<AssemblyOriginatorKeyFile>../Iced.snk</AssemblyOriginatorKeyFile>
<SignAssembly>True</SignAssembly>
2018-09-10 22:17:35 +02:00
2018-09-12 23:31:28 +02:00
<LangVersion>latest</LangVersion>
2018-09-06 01:29:23 +02:00
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
2018-09-12 23:31:28 +02:00
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>
2018-09-10 22:17:35 +02:00
</Project>