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.
|
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <!--If you are willing to use Windows/MacOS native APIs you will need to create 3 projects.
- One for Windows with net7.0-windows TFM, one for MacOS with net7.0-macos and one with net7.0 TFM for Linux.-->
- <TargetFramework>net7.0</TargetFramework>
- <Nullable>enable</Nullable>
- <BuiltInComInteropSupport>true</BuiltInComInteropSupport>
- </PropertyGroup>
-
- <PropertyGroup>
- <ApplicationManifest>app.manifest</ApplicationManifest>
- </PropertyGroup>
-
- <ItemGroup>
- <PackageReference Include="Avalonia.Desktop" Version="$(AvaloniaVersion)" />
- <!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
- <PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="$(AvaloniaVersion)" />
- </ItemGroup>
-
- <ItemGroup>
- <ProjectReference Include="..\Example\Example.csproj" />
- </ItemGroup>
- </Project>
|