Skip to content

Commit

Permalink
chore: Update MassTransit version to 8.2.5 and Swashbuckle.AspNetCore…
Browse files Browse the repository at this point in the history
… version to 6.7.2
  • Loading branch information
foxminchan committed Aug 25, 2024
1 parent da896e1 commit 091fdf1
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 13 deletions.
8 changes: 4 additions & 4 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<PollyVersion>8.4.1</PollyVersion>
<AspireUnstablePackagesVersion>8.0.2-preview.1.24326.4</AspireUnstablePackagesVersion>
<GrpcVersion>2.65.0</GrpcVersion>
<MassTransitVersion>8.2.4</MassTransitVersion>
<MassTransitVersion>8.2.5</MassTransitVersion>
</PropertyGroup>
<ItemGroup>
<!-- Aspire -->
Expand Down Expand Up @@ -55,7 +55,7 @@
<PackageVersion Include="EntityFrameworkCore.Exceptions.Common" Version="8.1.3" />
<PackageVersion Include="EntityFrameworkCore.Exceptions.PostgreSQL" Version="8.1.3" />
<!-- Semantic Kernel -->
<PackageVersion Include="Microsoft.SemanticKernel" Version="1.17.1" />
<PackageVersion Include="Microsoft.SemanticKernel" Version="1.17.2" />
<!-- Polly -->
<PackageVersion Include="Polly" Version="$(PollyVersion)" />
<PackageVersion Include="Polly.Extensions" Version="$(PollyVersion)" />
Expand Down Expand Up @@ -98,9 +98,9 @@
<!-- Miscellaneous -->
<PackageVersion Include="Scrutor" Version="4.2.2" />
<PackageVersion Include="MediatR" Version="12.4.0" />
<PackageVersion Include="Marten.AspNetCore" Version="7.26.2" />
<PackageVersion Include="Marten.AspNetCore" Version="7.26.3" />
<PackageVersion Include="FluentEmail.Mailtrap" Version="2.7.0" />
<PackageVersion Include="Swashbuckle.AspNetCore" Version="6.7.1" />
<PackageVersion Include="Swashbuckle.AspNetCore" Version="6.7.2" />
<PackageVersion Include="FluentValidation.AspNetCore" Version="11.3.0" />
<PackageVersion Include="Microsoft.Web.LibraryManager.Build" Version="2.1.175" />
<PackageVersion Include="MicroElements.Swashbuckle.FluentValidation" Version="6.0.0" />
Expand Down
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@
## Domain Business & Bounded Contexts - Services Boundaries

- **Catalog**: Display books with pagination and search functionality.
- **Shopping Cart**: Add books to the shopping cart and place an order.
- **Order**: Display orders with pagination and search functionality.
- **Basket**: Add books to the shopping cart and place an order.
- **Ordering**: Display orders with pagination and search functionality.
- **Identity**: Register, login, and manage user profile.
- **Notification**: Send email notifications.
- **Rating**: Rate products.
- **Rating**: Rate books.

![Domain Business & Bounded Contexts](docs/architechture.png)

Expand Down Expand Up @@ -82,7 +82,7 @@ git clone [email protected]:foxminchan/BookWorm.git
dotnet run --project src/BookWorm.AppHost/BookWorm.AppHost.csproj
```

> [!NOTE]
> [!WARNING]
> Ensure that you have Docker running on your machine.
## Contributing
Expand All @@ -92,6 +92,9 @@ dotnet run --project src/BookWorm.AppHost/BookWorm.AppHost.csproj
- Make your changes
- Create a pull request

> [!CAUTION]
> Do not change namespaces for `Integration Events` as it will break the messaging system.
## Project References

- [eShop](https://github.com/dotnet/eShop)
Expand Down
Binary file modified bun.lockb
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<IsPublishable>false</IsPublishable>
<IsPackable>false</IsPackable>
<IsAspireHost>true</IsAspireHost>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<IsPublishable>false</IsPublishable>
<IsPackable>false</IsPackable>
<IsAspireHost>true</IsAspireHost>
<UserSecretsId>449294a4-1735-47a7-8510-55e20b1aa4fa</UserSecretsId>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<IsPublishable>false</IsPublishable>
<IsPackable>false</IsPackable>
<IsAspireHost>true</IsAspireHost>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<IsPublishable>false</IsPublishable>
<IsPackable>false</IsPackable>
<IsAspireHost>true</IsAspireHost>
Expand Down

0 comments on commit 091fdf1

Please sign in to comment.