Skip to content

Commit

Permalink
Merge pull request #39 from mindbox-cloud/mukhamedyarov/scenarios/bum…
Browse files Browse the repository at this point in the history
…pVersion

bump version
  • Loading branch information
mukhamedyarov authored Sep 19, 2024
2 parents 3db5f44 + 6d3308c commit 22fd444
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 11 deletions.
6 changes: 6 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,12 @@ dotnet_analyzer_diagnostic.category-CodeQuality.severity = warning
# IDE0008 Use explicit type instead of var
dotnet_diagnostic.IDE0008.severity = none

# IDE0290 Use primary constructor
dotnet_diagnostic.IDE0290.severity = none

# IDE0300 Use collection expression for array
dotnet_diagnostic.IDE0300.severity = none

# IDE0009 Add this or Me qualification
dotnet_diagnostic.IDE0009.severity = none

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET Core 6.0
- name: Setup .NET Core 8.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
dotnet-version: 8.0.x
- name: Setup .NET Core 3.1
uses: actions/setup-dotnet@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup .NET Core 6.0
- name: Setup .NET Core 8.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
dotnet-version: 8.0.x
- name: Setup .NET Core 3.1
uses: actions/setup-dotnet@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup .NET Core 6.0
- name: Setup .NET Core 8.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
dotnet-version: 8.0.x
- name: Setup .NET Core 3.1
uses: actions/setup-dotnet@v1
with:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFramework>.net8.0</TargetFramework>
<RootNamespace>Mindbox.ExceptionsHandling.Template</RootNamespace>
<AssemblyName>Mindbox.ExceptionsHandling.Template</AssemblyName>
<Nullable>enable</Nullable>
Expand All @@ -9,7 +9,7 @@
<ProjectReference Include="..\Mindbox.ExceptionsHandling.Abstractions\Mindbox.ExceptionsHandling.Abstractions.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Sentry.AspNetCore" Version="3.29.1" />
<PackageReference Include="Sentry.Extensions.Logging" Version="3.29.1" />
<PackageReference Include="Sentry.AspNetCore" Version="4.10.2" />
<PackageReference Include="Sentry.Extensions.Logging" Version="4.10.2" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using Microsoft.Extensions.Options;
using Sentry;
using Sentry.AspNetCore;
using Sentry.Extensions.Logging;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<IsPackable>false</IsPackable>
<TargetFrameworks>net6.0</TargetFrameworks>
<TargetFrameworks>net8.0</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
Expand Down

0 comments on commit 22fd444

Please sign in to comment.