Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Liquid v6.0 release core packages and adapters. #214

Merged
merged 1 commit into from
Jun 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
Expand All @@ -8,7 +8,7 @@
<Company>Avanade Inc.</Company>
<Product>Liquid - Modern Application Framework</Product>
<Copyright>Avanade 2019</Copyright>
<Version>6.0.0-preview-20221201-04</Version>
<Version>6.0.0</Version>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<IsPackable>true</IsPackable>
<Description>
Expand All @@ -27,7 +27,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Azure.Storage.Blobs" Version="12.19.1" />
<PackageReference Include="Azure.Storage.Blobs" Version="12.20.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Options" Version="6.0.0" />
Expand Down
7 changes: 5 additions & 2 deletions src/Liquid.Adapter.Dataverse/Liquid.Adapter.Dataverse.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<Company>Avanade Inc.</Company>
<Product>Liquid - Modern Application Framework</Product>
<Copyright>Avanade 2019</Copyright>
<Version>6.0.0-preview-20221201-02</Version>
<Version>6.0.0</Version>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<IsPackable>true</IsPackable>
<Description>Adapter for Microsoft Dataverse integrations.
Expand All @@ -18,7 +18,10 @@ This component is part of Liquid Application Framework.</Description>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.PowerPlatform.Dataverse.Client" Version="1.1.16" />
<PackageReference Include="Microsoft.Identity.Client" Version="4.61.3" />
<PackageReference Include="Microsoft.PowerPlatform.Dataverse.Client" Version="1.1.22" />
<PackageReference Include="System.Security.Cryptography.Pkcs" Version="6.0.4" />
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
</ItemGroup>

<ItemGroup>
Expand Down
7 changes: 3 additions & 4 deletions src/Liquid.Messaging/Liquid.Messaging.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
<Company>Avanade Inc.</Company>
<Product>Liquid - Modern Application Framework</Product>
<Copyright>Avanade 2019</Copyright>
<PackageProjectUrl>https://github.com/Avanade/Liquid.Messaging</PackageProjectUrl>
<PackageProjectUrl>https://github.com/Avanade/Liquid-Application-Framework</PackageProjectUrl>
<PackageIcon>logo.png</PackageIcon>
<Version>6.0.0-preview-20231130-02</Version>
<Version>6.0.0</Version>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Description>
The Liquid.Messaging provides producer and consumer patterns to allow the send and consumption of Messaging inside your microservice.
Expand All @@ -20,8 +20,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Liquid.Core" Version="6.0.0-preview-20221201-01" />
<PackageReference Include="Liquid.Domain" Version="6.0.0-preview-20230201-02" />
<PackageReference Include="Liquid.Domain" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="6.0.0" />
</ItemGroup>

Expand Down
11 changes: 5 additions & 6 deletions src/Liquid.WebApi.Http/Liquid.WebApi.Http.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
<Company>Avanade Inc.</Company>
<Product>Liquid - Modern Application Framework</Product>
<Copyright>Avanade 2019</Copyright>
<PackageProjectUrl>https://github.com/Avanade/Liquid.WebApi</PackageProjectUrl>
<PackageProjectUrl>https://github.com/Avanade/Liquid-Application-Framework</PackageProjectUrl>
<PackageIcon>logo.png</PackageIcon>
<Version>6.0.0-preview-20231130-01</Version>
<Version>6.0.0</Version>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<IsPackable>true</IsPackable>
<DebugType>Full</DebugType>
Expand All @@ -23,10 +23,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Liquid.Core" Version="6.0.0-preview-20221201-01" />
<PackageReference Include="Liquid.Domain" Version="6.0.0-preview-20230201-02" />
<PackageReference Include="Microsoft.Extensions.Http" Version="7.0.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
<PackageReference Include="Liquid.Domain" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Http" Version="6.0.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.6.2" />
</ItemGroup>

<ItemGroup>
Expand Down
3 changes: 1 addition & 2 deletions test/Liquid.Messaging.Tests/Mock/CommandHandlerMock.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@ namespace Liquid.Messaging.Tests.Mock
{
public class CommandHandlerMock : IRequestHandler<CommandRequestMock>
{
public async Task<Unit> Handle(CommandRequestMock request, CancellationToken cancellationToken)
public async Task Handle(CommandRequestMock request, CancellationToken cancellationToken)
{
await Task.CompletedTask;
return new Unit();
}
}
}
Loading