2023-01-20 23:08:33 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
|
2023-02-18 21:54:35 +08:00
|
|
|
|
<!-- Uncomment below to enable Native AOT compilation-->
|
|
|
|
|
<!--
|
2023-02-18 21:02:58 +08:00
|
|
|
|
<PublishAot>true</PublishAot>
|
2023-02-18 21:54:35 +08:00
|
|
|
|
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
|
|
|
|
|
-->
|
2023-01-20 23:08:33 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
|
|
|
</PropertyGroup>
|
2023-02-18 21:33:19 +08:00
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<RdXmlFile Include="rd.xml"/>
|
|
|
|
|
</ItemGroup>
|
2023-01-20 23:08:33 +08:00
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-02-03 22:46:48 +08:00
|
|
|
|
<PackageReference Include="Avalonia.Desktop" Version="11.0.0-preview5" />
|
2023-01-20 23:08:33 +08:00
|
|
|
|
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
|
2023-02-06 00:55:02 +08:00
|
|
|
|
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.0.0-preview5" />
|
2023-01-20 23:08:33 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Semi.Avalonia.Demo\Semi.Avalonia.Demo.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|