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.
34 lines
1.7 KiB
34 lines
1.7 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Avalonia.Headless.Vnc\Avalonia.Headless.Vnc.csproj" />
|
|
<ProjectReference Include="..\..\src\Avalonia.Dialogs\Avalonia.Dialogs.csproj" />
|
|
<ProjectReference Include="..\..\src\Linux\Avalonia.LinuxFramebuffer\Avalonia.LinuxFramebuffer.csproj" />
|
|
<ProjectReference Include="..\ControlCatalog\ControlCatalog.csproj" />
|
|
<ProjectReference Include="..\..\src\Avalonia.X11\Avalonia.X11.csproj" />
|
|
<PackageReference Include="Avalonia.Angle.Windows.Natives" Version="2.1.0.2020091801" />
|
|
<!-- For native controls test -->
|
|
<PackageReference Include="MonoMac.NetStandard" Version="0.0.4" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(RunNativeAotCompilation)' == 'true'">
|
|
<PackageReference Include="Microsoft.DotNet.ILCompiler" Version="$(NativeAotCompilerVersion)" />
|
|
<!-- Cross-compilation for Windows x64-arm64 and Linux x64-arm64 -->
|
|
<PackageReference Condition="'$(RuntimeIdentifier)'=='win-arm64'" Include="runtime.win-x64.Microsoft.DotNet.ILCompiler" Version="$(NativeAotCompilerVersion)" />
|
|
<PackageReference Condition="'$(RuntimeIdentifier)'=='linux-arm64'" Include="runtime.linux-x64.Microsoft.DotNet.ILCompiler" Version="$(NativeAotCompilerVersion)" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<!-- For Microsoft.CodeAnalysis -->
|
|
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="..\..\build\SampleApp.props" />
|
|
<Import Project="..\..\build\ReferenceCoreLibraries.props" />
|
|
</Project>
|
|
|