24 lines
936 B
XML
24 lines
936 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<!--Note: Dotnet currently does not allow to build on non-windows platforms when a windows TFM is specified-->
|
|
<PropertyGroup Condition=" '$(OS)' != 'Windows_NT' ">
|
|
<TargetFrameworks>netcoreapp3.1;net5.0</TargetFrameworks>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(OS)' == 'Windows_NT' ">
|
|
<TargetFrameworks>netcoreapp3.1;net5.0-windows10.0.17763.0</TargetFrameworks>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<LangVersion>8.0</LangVersion>
|
|
<OutputType>WinExe</OutputType>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Avalonia" Version="0.10.21" />
|
|
<PackageReference Include="Avalonia.Desktop" Version="0.10.21" />
|
|
<PackageReference Include="Avalonia.Diagnostics" Version="0.10.21" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\DesktopNotifications.Avalonia\DesktopNotifications.Avalonia.csproj" />
|
|
</ItemGroup>
|
|
</Project> |