Skip to content

Commit e7a24ca

Browse files
cedricedri
authored andcommitted
uupdate dependencie to Swashbuckle.AspNetCore.SwaggerGen 6.5.0
update version to 1.3.0 Support .Net 7
1 parent 5a999d0 commit e7a24ca

File tree

6 files changed

+18
-18
lines changed

6 files changed

+18
-18
lines changed

.github/workflows/dotnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup .NET
1717
uses: actions/setup-dotnet@v1
1818
with:
19-
dotnet-version: 6.0.x
19+
dotnet-version: 7.0.x
2020
- name: Restore dependencies
2121
run: dotnet restore
2222
- name: Build

.github/workflows/nuget.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- name: Setup dotnet
1111
uses: actions/setup-dotnet@v1
1212
with:
13-
dotnet-version: 6.0.x
13+
dotnet-version: 7.0.x
1414

1515
- name: Build
1616
run: dotnet build -c Release MinimalApi.Endpoint/MinimalApi.Endpoint.csproj

MinimalApi.Endpoint/MinimalApi.Endpoint.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
<RepositoryType>git</RepositoryType>
1111
<PackageReadmeFile>README.md</PackageReadmeFile>
1212
<PackageProjectUrl>https://github.com/michelcedric/StructuredMinimalApi</PackageProjectUrl>
13-
<AssemblyVersion>1.2.0</AssemblyVersion>
14-
<FileVersion>1.2.0</FileVersion>
15-
<Version>1.2.0</Version>
13+
<AssemblyVersion>1.3.0</AssemblyVersion>
14+
<FileVersion>1.3.0</FileVersion>
15+
<Version>1.3.0</Version>
1616
<Description>Simple package to configure API endpoints as individual classes based on minimal Api (.Net 6)</Description>
1717
<PackageTags>minimal-api; minimalapi; api; endpoint</PackageTags>
1818
<!-- Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) -->
@@ -43,7 +43,7 @@
4343
<PrivateAssets>all</PrivateAssets>
4444
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
4545
</PackageReference>
46-
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="6.4.0" />
46+
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="6.5.0" />
4747
</ItemGroup>
4848

4949
</Project>

StructuredMinimalApi.Client.SDK/StructuredMinimalApi.Client.SDK.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
10+
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
1111
</ItemGroup>
1212

1313
</Project>

StructuredMinimalApi.IntegrationTests/StructuredMinimalApi.IntegrationTests.csproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net7.0</TargetFramework>
55
<Nullable>enable</Nullable>
66

77
<IsPackable>false</IsPackable>
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="6.0.7" />
12-
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="6.0.7" />
13-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" />
14-
<PackageReference Include="MSTest.TestAdapter" Version="2.2.10" />
15-
<PackageReference Include="MSTest.TestFramework" Version="2.2.10" />
16-
<PackageReference Include="coverlet.collector" Version="3.1.2">
11+
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="7.0.2" />
12+
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="7.0.2" />
13+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.1" />
14+
<PackageReference Include="MSTest.TestAdapter" Version="3.0.2" />
15+
<PackageReference Include="MSTest.TestFramework" Version="3.0.2" />
16+
<PackageReference Include="coverlet.collector" Version="3.2.0">
1717
<PrivateAssets>all</PrivateAssets>
1818
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1919
</PackageReference>

StructuredMinimalApi/StructuredMinimalApi.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk.Web">
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
44
<TargetFramework>net6.0</TargetFramework>
@@ -10,8 +10,8 @@
1010
</PropertyGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.16.1" />
14-
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
13+
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.17.0" />
14+
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
1515
</ItemGroup>
1616

1717
<ItemGroup>

0 commit comments

Comments
 (0)