2019-09-30 20:08:12 -07:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
2018-07-16 00:45:29 -07:00
|
|
|
|
<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>
|
2018-07-16 00:45:29 -07:00
|
|
|
|
</PropertyGroup>
|
2019-09-30 20:08:12 -07:00
|
|
|
|
|
2020-09-10 21:10:32 -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">
|
2021-09-09 10:51:18 -07:00
|
|
|
|
<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" />
|
2020-09-10 21:10:32 -07:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2021-04-02 15:08:05 -07:00
|
|
|
|
<!-- 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\**\*;
|
2021-04-02 15:48:57 -07:00
|
|
|
|
External\stormlibsharp\lib\**;
|
2021-09-09 10:51:18 -07:00
|
|
|
|
External\stormlibsharp\TestConsole\**
|
2021-04-02 15:17:26 -07:00
|
|
|
|
</DefaultItemExcludes>
|
2021-04-02 15:08:05 -07:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2020-09-10 22:32:00 -07:00
|
|
|
|
<ItemGroup>
|
2020-09-30 23:19:50 -07:00
|
|
|
|
<None Include="LICENSE.txt" Pack="true" PackagePath="$(PackageLicenseFile)" />
|
2020-09-10 22:32:00 -07:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2020-09-10 21:10:32 -07:00
|
|
|
|
<ItemGroup>
|
2020-09-30 23:19:50 -07:00
|
|
|
|
<None Include="*.dll" Pack="true">
|
2020-09-10 21:10:32 -07:00
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
2020-09-30 23:19:50 -07:00
|
|
|
|
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
|
|
|
|
|
|
<PackageCopyToOutput>true</PackageCopyToOutput>
|
2020-09-10 21:10:32 -07:00
|
|
|
|
</None>
|
2021-03-02 13:09:15 -08:00
|
|
|
|
</ItemGroup>
|
2019-09-30 20:08:12 -07:00
|
|
|
|
|
2021-09-09 10:51:18 -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" />
|
2021-09-09 10:51:18 -07:00
|
|
|
|
<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>
|