csharpc-sharpdotnetxamlavaloniauicross-platformcross-platform-xamlavaloniaguimulti-platformuser-interfacedotnetcore
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.8 KiB
43 lines
1.8 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<RootNamespace></RootNamespace>
|
|
<IsPackable>False</IsPackable>
|
|
<NoWarn>$(NoWarn);CS0649;CS0169;SYSLIB0011</NoWarn>
|
|
<NukeTelemetryVersion>1</NukeTelemetryVersion>
|
|
<TargetFramework>$(AvsCurrentTargetFramework)</TargetFramework>
|
|
<!-- See https://github.com/nuke-build/nuke/issues/818 -->
|
|
<EnableUnsafeBinaryFormatterSerialization>true</EnableUnsafeBinaryFormatterSerialization>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Nuke.Common" Version="9.0.4" />
|
|
<PackageReference Include="MicroCom.CodeGenerator" Version="0.11.0" />
|
|
<!-- Keep in sync with Avalonia.Build.Tasks -->
|
|
<PackageReference Include="Mono.Cecil" Version="0.11.6" />
|
|
<PackageReference Include="Microsoft.Build.Framework" Version="18.0.2" PrivateAssets="All" />
|
|
<PackageReference Include="NuGet.Protocol" Version="7.0.1" />
|
|
<PackageDownload Include="Microsoft.DotNet.ApiCompat.Tool" Version="[10.0.100]" />
|
|
<PackageDownload Include="Microsoft.DotNet.ApiDiff.Tool" Version="[10.0.100-rtm.25531.102]" />
|
|
<PackageDownload Include="dotnet-ilrepack" Version="[1.0.0]" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<NukeMetadata Include="**\*.json" Exclude="bin\**;obj\**" />
|
|
<NukeExternalFiles Include="**\*.*.ext" Exclude="bin\**;obj\**" />
|
|
|
|
<!-- Common build related files -->
|
|
<Compile Include="../external/Numerge/Numerge/**/*.cs"
|
|
Exclude="../external/Numerge/Numerge/obj/**/*.cs"
|
|
LinkBase="Numerge" />
|
|
<EmbeddedResource Include="../build/avalonia.snk" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="..\dirs.proj">
|
|
<Link>dirs.proj</Link>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|