Notify.NET/samples/Notify.NET.Sample/Notify.NET.Sample.csproj

21 lines
615 B
XML
Raw Normal View History

2026-03-29 13:56:50 -05:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<!-- Target net6.0 so the sample can run on modern .NET while consuming the netstandard2.0 library -->
<TargetFramework>net6.0</TargetFramework>
<LangVersion>10</LangVersion>
<Nullable>enable</Nullable>
<RootNamespace>Notify.NET.Sample</RootNamespace>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Notify.NET\Notify.NET.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
</ItemGroup>
</Project>