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.
50 lines
2.3 KiB
50 lines
2.3 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>net7.0</TargetFramework>
|
|
<!-- Necessary for Microsoft.DotNet.GenAPI.Tool -->
|
|
<RestoreAdditionalProjectSources>https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet8-transport/nuget/v3/index.json</RestoreAdditionalProjectSources>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="..\build\JetBrains.dotMemoryUnit.props" />
|
|
<ItemGroup>
|
|
<PackageReference Include="Nuke.Common" Version="6.2.1" />
|
|
<PackageReference Include="vswhere" Version="2.6.7" Condition=" '$(OS)' == 'Windows_NT' " />
|
|
<PackageReference Include="MicroCom.CodeGenerator" Version="0.11.0" />
|
|
<!-- Keep in sync with Avalonia.Build.Tasks -->
|
|
<PackageReference Include="Mono.Cecil" Version="0.11.5" />
|
|
<PackageReference Include="Microsoft.Debugging.Tools.PdbStr" Version="20230731.1609.0" GeneratePathProperty="true" PrivateAssets="All"/>
|
|
<PackageReference Include="Microsoft.Build.Framework" Version="17.3.2" PrivateAssets="All" />
|
|
<PackageReference Include="xunit.runner.console" Version="2.4.2">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
|
|
<PackageDownload Include="Microsoft.DotNet.ApiCompat.Tool" Version="[8.0.200]" />
|
|
<PackageDownload Include="Microsoft.DotNet.GenAPI.Tool" Version="[8.0.300-preview.24115.44]" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<NukeMetadata Include="**\*.json" Exclude="bin\**;obj\**" />
|
|
<NukeExternalFiles Include="**\*.*.ext" Exclude="bin\**;obj\**" />
|
|
|
|
<!-- Common build related files -->
|
|
<Compile Remove="Numerge/**/*.*" />
|
|
<Compile Include="Numerge/Numerge/**/*.cs" Exclude="Numerge/Numerge/obj/**/*.cs" />
|
|
<EmbeddedResource Include="$(PkgMicrosoft_Debugging_Tools_PdbStr)/content/x86/pdbstr.exe" />
|
|
<EmbeddedResource Include="../build/avalonia.snk" />
|
|
<Compile Remove="il-repack\ILRepack\Application.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="..\dirs.proj">
|
|
<Link>dirs.proj</Link>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|