NativeNotification.Interface
1.0.0
See the version list below for details.
dotnet add package NativeNotification.Interface --version 1.0.0
NuGet\Install-Package NativeNotification.Interface -Version 1.0.0
<PackageReference Include="NativeNotification.Interface" Version="1.0.0" />
<PackageVersion Include="NativeNotification.Interface" Version="1.0.0" />
<PackageReference Include="NativeNotification.Interface" />
paket add NativeNotification.Interface --version 1.0.0
#r "nuget: NativeNotification.Interface, 1.0.0"
#:package NativeNotification.Interface@1.0.0
#addin nuget:?package=NativeNotification.Interface&version=1.0.0
#tool nuget:?package=NativeNotification.Interface&version=1.0.0
NativeNotification
A C# library for sending native system notifications across multiple desktop platforms. Supports Windows (toast notifications), Linux (freedesktop.org), and macOS (NSUserNotification).
var manager = ManagerFactory.GetNotificationManager(new NativeNotificationOption() { AppName = "AppName" });
var notification = manager.Create();
notification.Title = "Title";
notification.Message = "Hello Message.";
notification.Buttons.Add(new ActionButton("Button Text", () => Console.WriteLine("button clicked.")));
notification.Show(new NotificationDeliverOption() { Duration = TimeSpan.FromSeconds(10) });
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net8.0
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on NativeNotification.Interface:
| Package | Downloads |
|---|---|
|
NativeNotification
A C# library for sending native notifications on different desktop platforms. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.3 | 6,648 | 9/13/2025 |
| 1.0.2 | 2,277 | 8/26/2025 |
| 1.0.1 | 962 | 7/26/2025 |
| 1.0.0 | 717 | 7/24/2025 |
| 1.0.0-beta2 | 513 | 7/24/2025 |
| 1.0.0-beta1 | 567 | 7/24/2025 |
- A C# library for sending native system notifications across desktop platforms.
- Supports Windows (toast notifications), Linux (freedesktop.org), and macOS (NSUserNotification).
- Supports notifications with text, images, and action buttons.