Skip to content

Commit

Permalink
Support NServiceBus 8.x
Browse files Browse the repository at this point in the history
  • Loading branch information
ramonsmits committed Dec 9, 2022
1 parent d984524 commit b861aab
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ NServiceBus | NServiceBus.RateLimiter
------------|------------------------
v6.x | v1.x
v7.x | v2.x
v8.x | v3.x

## Use cases

Expand Down
12 changes: 6 additions & 6 deletions src/NServiceBus.RateLimiter/NServiceBus.RateLimiter.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

<PropertyGroup>
<!-- AssemblyFileVersionAttribute -->
<FileVersion>2.1.0</FileVersion>
<FileVersion>3.0.0</FileVersion>
<!-- AssemblyInformationalVersionAttribute -->
<Version>$(FileVersion)</Version>
<!-- AssemblyVersionAttribute -->
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>3.0.0.0</AssemblyVersion>
<!-- Nuget -->
<PackageVersion>$(Version)</PackageVersion>
<TargetFrameworks>net452;netstandard2.0</TargetFrameworks>
<TargetFrameworks>net472;net6.0</TargetFrameworks>
<PackageId>NServiceBus.RateLimiter</PackageId>
<Authors>ramonsmits</Authors>
<Description>Rate Limiting NService Pipeline extension</Description>
Expand All @@ -21,20 +21,20 @@
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<IncludeSource>True</IncludeSource>
<RepositoryUrl>https://github.com/ramonsmits/NServiceBus.RateLimiter</RepositoryUrl>
<Copyright>Copyright 2017, 2018, 2019, 2020 (c) Ramon Smits</Copyright>
<Copyright>Copyright 2017, 2018, 2019, 2020, 2021, 2022 (c) Ramon Smits</Copyright>
<PackageTags>nservicebus pipeline</PackageTags>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\key.snk</AssemblyOriginatorKeyFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<LangVersion>latest</LangVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="NServiceBus" Version="[7.0.0,8.0.0)" />
<PackageReference Include="NServiceBus" Version="[8.0.1, 9.0.0)" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/>
</ItemGroup>

Expand Down

0 comments on commit b861aab

Please sign in to comment.