diff --git a/README.md b/README.md index 4a623ce..15fff05 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,8 @@ novu-dotnet targets .NET Standard 2.0 and is compatible with .NET Core 2.0+ and | 0.3.2 | \>= 0.18 | [BREAKING} Obsolete Notification Templates has been removed. Service registration separation of single client and each client. Novu.Extension and Novu.Sync released as packages. | | 0.3.2 | \>= 0.18 | | | 0.4.0 | \>= 0.24 | | +| 0.5.0 | \>= 0.24 | Refit 7.2.2 / Microsoft.Extension>=7.x | +| 0.6.0 | \>= 0.24 | Refit 8.0 / Microsoft.Extension>=8.x | ## Installation @@ -51,8 +53,7 @@ dotnet add package Novu ### Direct instantiation ```csharp -using Novu.DTO; -using Novu.Models; +using Novu.Domain.Models; using Novu; var novuConfiguration = new NovuClientConfiguration diff --git a/src/Novu.Extensions/Novu.Extensions.csproj b/src/Novu.Extensions/Novu.Extensions.csproj index 1d00a27..2f7980a 100644 --- a/src/Novu.Extensions/Novu.Extensions.csproj +++ b/src/Novu.Extensions/Novu.Extensions.csproj @@ -21,15 +21,15 @@ - - - - + + + + - - - - + + + + diff --git a/src/Novu.Sync/Novu.Sync.csproj b/src/Novu.Sync/Novu.Sync.csproj index be57584..d4e4d2a 100644 --- a/src/Novu.Sync/Novu.Sync.csproj +++ b/src/Novu.Sync/Novu.Sync.csproj @@ -25,7 +25,7 @@ - + diff --git a/src/Novu.Tests/IntegrationTests/SubscriberPreferenceTests.cs b/src/Novu.Tests/IntegrationTests/SubscriberPreferenceTests.cs index 07ae8a0..f8ef4b8 100644 --- a/src/Novu.Tests/IntegrationTests/SubscriberPreferenceTests.cs +++ b/src/Novu.Tests/IntegrationTests/SubscriberPreferenceTests.cs @@ -86,7 +86,7 @@ public async Task Should_Get_InApp_Unseen() var messagesCount = await subscriberClient.GetInAppUnseen(subscriber.SubscriberId!); // fire forget test, that it returns something - messagesCount.Data.Count.Should().BeGreaterOrEqualTo(0); + messagesCount.Data.Count.Should().BeGreaterThanOrEqualTo(0); } [Fact] @@ -97,6 +97,6 @@ public async Task Should_Get_InApp() var messages = await subscriberClient.GetInApp(subscriber.SubscriberId!); // fire forget test, that it returns something - messages.Data.Should().HaveCountGreaterOrEqualTo(0); + messages.Data.Should().HaveCountGreaterThanOrEqualTo(0); } } \ No newline at end of file diff --git a/src/Novu.Tests/Novu.Tests.csproj b/src/Novu.Tests/Novu.Tests.csproj index 80b5bfe..18352a0 100644 --- a/src/Novu.Tests/Novu.Tests.csproj +++ b/src/Novu.Tests/Novu.Tests.csproj @@ -9,25 +9,25 @@ - - - - - + + + + + - - + + - + - + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/src/Novu/Novu.csproj b/src/Novu/Novu.csproj index 0c92516..55dfac0 100644 --- a/src/Novu/Novu.csproj +++ b/src/Novu/Novu.csproj @@ -26,8 +26,8 @@ - - + +