mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-13 21:31:04 +00:00
57 lines
2.3 KiB
XML
57 lines
2.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net472;net48;netcoreapp3.1;net5.0</TargetFrameworks>
|
|
<PlatformTarget>x86</PlatformTarget>
|
|
<Title>BurnOutSharp</Title>
|
|
<AssemblyName>BurnOutSharp</AssemblyName>
|
|
<Description>Port of BurnOut to C#, with additions</Description>
|
|
<Authors>Matt Nadareski;Gernot Knippen</Authors>
|
|
<Product>BurnOutSharp</Product>
|
|
<Copyright>Copyright (c)2005-2010 Gernot Knippen, Copyright (c)2018-2021 Matt Nadareski</Copyright>
|
|
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
|
|
<RepositoryUrl>https://github.com/mnadareski/BurnOutSharp</RepositoryUrl>
|
|
<Version>1.5.1</Version>
|
|
<AssemblyVersion>1.5.1</AssemblyVersion>
|
|
<FileVersion>1.5.1</FileVersion>
|
|
<IncludeSource>true</IncludeSource>
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(TargetFramework.TrimEnd(`0123456789`))' == 'net'">
|
|
<DefineConstants>NET_FRAMEWORK</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="LessIO" Version="1.0.34" Condition="'$(TargetFramework.TrimEnd(`0123456789`))' == 'net'" />
|
|
<PackageReference Include="libmspack4n" Version="0.9.10" Condition="'$(TargetFramework.TrimEnd(`0123456789`))' == 'net'" />
|
|
<PackageReference Include="SharpCompress" Version="0.26.0" />
|
|
<PackageReference Include="UnshieldSharp" Version="1.4.2.4" />
|
|
<PackageReference Include="WiseUnpacker" Version="1.0.1" />
|
|
<PackageReference Include="wix-libs" Version="3.11.1" Condition="'$(TargetFramework.TrimEnd(`0123456789`))' == 'net'" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="LICENSE.txt" Pack="true" PackagePath="$(PackageLicenseFile)" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="*.dll" Pack="true">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
|
|
<PackageCopyToOutput>true</PackageCopyToOutput>
|
|
</None>
|
|
<None Include="*.pdb" Pack="true">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
|
|
<PackageCopyToOutput>true</PackageCopyToOutput>
|
|
</None>
|
|
|
|
</ItemGroup>
|
|
|
|
</Project>
|