Initial commit

This commit is contained in:
Pat Hartl 2026-03-29 13:56:50 -05:00
commit 099012cfd3
36 changed files with 6675 additions and 0 deletions

View file

@ -0,0 +1,20 @@
<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>