Files
BinaryObjectScanner/BurnOutSharp/BurnOutSharp.csproj

70 lines
2.7 KiB
XML
Raw Normal View History

2019-09-30 20:08:12 -07:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2022-04-16 21:58:54 -07:00
<TargetFrameworks>netstandard2.0</TargetFrameworks>
2020-09-10 22:32:00 -07:00
<Title>BurnOutSharp</Title>
<AssemblyName>BurnOutSharp</AssemblyName>
<Description>Port of BurnOut to C#, with additions</Description>
<Authors>Matt Nadareski;Gernot Knippen</Authors>
<Product>BurnOutSharp</Product>
2022-03-27 20:43:49 -07:00
<Copyright>Copyright (c)2005-2010 Gernot Knippen, Copyright (c)2018-2022 Matt Nadareski</Copyright>
2020-09-10 22:32:00 -07:00
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<RepositoryUrl>https://github.com/mnadareski/BurnOutSharp</RepositoryUrl>
2022-04-17 22:02:43 -07:00
<Version>2.1.0</Version>
<AssemblyVersion>2.1.0</AssemblyVersion>
<FileVersion>2.1.0</FileVersion>
2020-09-10 22:32:00 -07:00
<IncludeSource>true</IncludeSource>
<IncludeSymbols>true</IncludeSymbols>
</PropertyGroup>
2019-09-30 20:08:12 -07:00
<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
2019-09-30 12:17:15 -07:00
<ItemGroup>
2022-04-16 21:58:54 -07:00
<PackageReference Include="SharpCompress" Version="0.31.0" />
2022-03-07 13:39:04 -08:00
<PackageReference Include="System.Text.Encoding.CodePages" Version="6.0.0" />
<PackageReference Include="Teronis.MSBuild.Packaging.ProjectBuildInPackage" Version="1.0.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
2022-04-17 13:35:14 -07:00
<PackageReference Include="UnshieldSharp" Version="1.6.8" />
2022-04-17 13:33:59 -07:00
<PackageReference Include="WiseUnpacker" Version="1.0.3" />
</ItemGroup>
<!-- These are needed for dealing with submodules -->
<PropertyGroup>
2021-04-02 15:17:26 -07:00
<DefaultItemExcludes>
$(DefaultItemExcludes);
**\AssemblyInfo.cs;
2021-04-02 15:34:47 -07:00
External\hllib\HLExtract\**\*;
External\hllib\HLExtract.Net\Program.cs;
External\hllib\HLLib\**\*;
External\stormlibsharp\lib\**;
External\stormlibsharp\TestConsole\**
2021-04-02 15:17:26 -07:00
</DefaultItemExcludes>
</PropertyGroup>
2020-09-10 22:32:00 -07:00
<ItemGroup>
<None Include="LICENSE.txt" Pack="true" PackagePath="$(PackageLicenseFile)" />
2020-09-10 22:32:00 -07:00
</ItemGroup>
<ItemGroup>
<None Include="*.dll" Pack="true">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
<PackageCopyToOutput>true</PackageCopyToOutput>
</None>
2021-03-02 13:09:15 -08:00
</ItemGroup>
2019-09-30 20:08:12 -07:00
<ItemGroup>
2022-05-15 14:18:45 -07:00
<ProjectReference Include="..\HLLibSharp\HLLibSharp\HLLibSharp.csproj" />
2022-05-14 21:25:41 -07:00
<ProjectReference Include="..\WixToolset\src\WixToolset.Dtf.Compression.Cab\WixToolset.Dtf.Compression.Cab.csproj" />
<ProjectReference Include="..\WixToolset\src\WixToolset.Dtf.Compression\WixToolset.Dtf.Compression.csproj" />
<ProjectReference Include="..\WixToolset\src\WixToolset.Dtf.WindowsInstaller\WixToolset.Dtf.WindowsInstaller.csproj">
<PrivateAssets>all</PrivateAssets>
</ProjectReference>
</ItemGroup>
2019-09-30 20:08:12 -07:00
</Project>