Shiny.Extensions.Push
2.0.0-preview-0027
Prefix Reserved
See the version list below for details.
dotnet add package Shiny.Extensions.Push --version 2.0.0-preview-0027
NuGet\Install-Package Shiny.Extensions.Push -Version 2.0.0-preview-0027
<PackageReference Include="Shiny.Extensions.Push" Version="2.0.0-preview-0027" />
paket add Shiny.Extensions.Push --version 2.0.0-preview-0027
#r "nuget: Shiny.Extensions.Push, 2.0.0-preview-0027"
// Install Shiny.Extensions.Push as a Cake Addin #addin nuget:?package=Shiny.Extensions.Push&version=2.0.0-preview-0027&prerelease // Install Shiny.Extensions.Push as a Cake Tool #tool nuget:?package=Shiny.Extensions.Push&version=2.0.0-preview-0027&prerelease
SHINY SERVICE EXTENSIONS FOR .NET
<img src="https://github.com/shinyorg/shiny/raw/master/art/logo.png" width="100" />
FEATURES
- Push Notification Management without a 3rd Party (think Azure Notification Hubs for your on-prem servers)
- Mail Templating On Steroids! Loaders, parsers, converters, & senders!
LINKS
SUPPORT SHINY
While Shiny is free and will continue to be so, maintenance and support takes a heavy toll on sustainability. If you or your company have the resources, please consider becoming a GitHub Sponsor. GitHub Sponsorships help to make Open Source Development more sustainable.
Depending on your Sponsorship Tier, you may also get access to some great benefits on Sponsor Connect (https://sponsorconnect.dev) including:
- The Sponsor Only Discord server
- Training available ONLY to sponsors on Sponsor Connect
- Special sponsor-only packages
How about some Shiny Gear
SQL Server Table Scripts
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[MailTemplates](
[MailTemplateId] [uniqueidentifier] NOT NULL,
[TemplateName] [nvarchar](255) NOT NULL,
[CultureCode] [varchar](5) NULL,
[Content] [nvarchar](max) NOT NULL,
CONSTRAINT [PK_MailTemplates] PRIMARY KEY CLUSTERED
(
[MailTemplateId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY],
CONSTRAINT [UK_MailTemplates] UNIQUE NONCLUSTERED
(
[TemplateName] ASC,
[CultureCode] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
Push
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[PushRegistrations](
[PushRegistrationId] [uniqueidentifier] NOT NULL,
[Platform] [int] NOT NULL,
[DeviceToken] [varchar](512) NOT NULL,
[UserId] [varchar](50) NULL,
[DateUpdated] [datetimeoffset](7) NOT NULL,
[DateCreated] [datetimeoffset](7) NOT NULL,
CONSTRAINT [PK_PushRegistrations] PRIMARY KEY CLUSTERED
(
[PushRegistrationId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY],
CONSTRAINT [UK_PushRegistrations] UNIQUE NONCLUSTERED
(
[DeviceToken] ASC,
[Platform] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[PushTags] Script Date: 12/16/2021 3:27:13 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[PushTags](
[PushTagId] [uniqueidentifier] NOT NULL,
[PushRegistrationId] [uniqueidentifier] NOT NULL,
[Value] [nvarchar](50) NOT NULL,
CONSTRAINT [PK_PushTags] PRIMARY KEY CLUSTERED
(
[PushTagId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY],
CONSTRAINT [UK_PushTags] UNIQUE NONCLUSTERED
(
[PushRegistrationId] ASC,
[Value] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[PushTags] WITH CHECK ADD CONSTRAINT [FK_PushTags_PushRegistrations] FOREIGN KEY([PushRegistrationId])
REFERENCES [dbo].[PushRegistrations] ([PushRegistrationId])
GO
ALTER TABLE [dbo].[PushTags] CHECK CONSTRAINT [FK_PushTags_PushRegistrations]
GO
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. |
-
net8.0
- Shiny.Extensions.Push.Abstractions (>= 2.0.0-preview-0027)
- Shiny.Extensions.Push.Apple (>= 2.0.0-preview-0027)
- Shiny.Extensions.Push.GoogleFirebase (>= 2.0.0-preview-0027)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Shiny.Extensions.Push:
Package | Downloads |
---|---|
DigiCypress.XAF.AppNotifications.Blazor
AppNotifications Blazor module for Devexpress XAF |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.0.0-preview-0036 | 137 | 3 months ago |
2.0.0-preview-0034 | 128 | 6 months ago |
2.0.0-preview-0029 | 275 | 8 months ago |
2.0.0-preview-0027 | 102 | 8 months ago |
2.0.0-preview-0025 | 104 | 8 months ago |
2.0.0-preview-0024 | 83 | 8 months ago |
2.0.0-preview-0021 | 70 | 8 months ago |
2.0.0-preview-0019 | 72 | 9 months ago |
2.0.0-preview-0018 | 77 | 9 months ago |
2.0.0-preview-0014 | 756 | 1/9/2024 |
2.0.0-preview-0013 | 476 | 11/27/2023 |
2.0.0-preview-0009 | 1,175 | 8/5/2023 |
2.0.0-preview-0005 | 726 | 3/23/2023 |
2.0.0-preview-0001 | 609 | 3/22/2023 |
1.3.0-preview-0027 | 697 | 4/25/2022 |
1.3.0-preview-0002 | 823 | 4/4/2022 |
1.3.0-preview-0001 | 616 | 4/5/2022 |
1.3.0-g2ba43447db | 664 | 4/25/2022 |
1.3.0-alpha.2 | 118 | 4/4/2022 |
1.2.1-g5e4fb68cb5 | 627 | 4/5/2022 |
1.2.0-preview.58 | 121 | 4/3/2022 |
1.2.0-preview.54 | 126 | 3/15/2022 |
1.2.0-preview.53 | 114 | 3/15/2022 |
1.2.0-preview.51 | 122 | 3/14/2022 |
1.2.0-gfedfcb591b | 616 | 4/4/2022 |
1.2.0-gc3d6596f9b | 624 | 4/4/2022 |
1.1.0.60 | 2,174 | 3/2/2022 |
1.1.0.59-preview | 703 | 2/3/2022 |
1.1.0.55-preview | 700 | 1/23/2022 |
1.1.0.52-preview | 656 | 1/22/2022 |
1.1.0.49-preview | 608 | 1/19/2022 |
1.1.0.48-preview | 644 | 1/18/2022 |
1.1.0.46-preview | 602 | 1/18/2022 |
1.0.0.43-preview | 664 | 1/16/2022 |
1.0.0.38 | 791 | 1/4/2022 |
1.0.0.37 | 744 | 1/4/2022 |
1.0.0.30-preview | 630 | 12/30/2021 |
1.0.0.28-preview | 706 | 12/22/2021 |
1.0.0.12-preview | 649 | 12/20/2021 |
1.0.0.8-preview | 660 | 12/18/2021 |
1.0.0.4-preview | 657 | 12/18/2021 |