18 lines
684 B
XML
18 lines
684 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<Description>A cross-platform C# library for native desktop "toast" notifications.</Description>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<PackageProjectUrl>https://github.com/pr8x/DesktopNotifications</PackageProjectUrl>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\DesktopNotifications\DesktopNotifications.csproj" />
|
|
<PackageReference Include="Microsoft.Toolkit.Uwp.Notifications" Version="7.0.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|