mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
57586d75fd
.NET Core 2.1 introduced some runtime changes to support Span<T> and ByReference. Along with this comes the ability to do things like reinterpret memory as a different type. In .NET Framework the garbage collector couldn't track these references. These features proved useful enough that support for .NET Framework was dropped. * Target netstandard2.1 and netcoreapp3.0 * Build: Zip native builds. Put version in zip filename * Always build native exe on AppVeyor
25 lines
886 B
XML
25 lines
886 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<RootNamespace>LibHacBuild</RootNamespace>
|
|
<IsPackable>False</IsPackable>
|
|
<NoWarn>CS0649;CS0169</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageDownload Include="GitVersion.Tool" Version="[5.0.1]" />
|
|
<PackageReference Include="NuGet.CommandLine" Version="5.3.1" />
|
|
<PackageReference Include="Nuke.Common" Version="0.23.4" />
|
|
<PackageReference Include="SharpZipLib" Version="1.2.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<NukeMetadata Include="**\*.json" Exclude="bin\**;obj\**" />
|
|
<NukeExternalFiles Include="**\*.*.ext" Exclude="bin\**;obj\**" />
|
|
<None Remove="*.csproj.DotSettings;*.ref.*.txt" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|