Skip to content
Draft
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
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<PackageVersion Include="Microsoft.AspNetCore.TestHost" Version="10.0.9" />
<PackageVersion Include="Microsoft.Build" Version="18.6.3" />
<PackageVersion Include="Microsoft.CodeAnalysis.PublicApiAnalyzers" Version="4.14.0" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.InMemory" Version="11.0.0-preview.4.26230.115" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.InMemory" Version="11.0.0-preview.5.26302.115" />
<PackageVersion Include="Microsoft.Kiota.Bundle" Version="2.0.0" />
<PackageVersion Include="Microsoft.OpenApi" Version="3.6.0" />
<PackageVersion Include="Microsoft.OpenApi.YamlReader" Version="3.6.0" />
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "11.0.100-preview.4.26230.115",
"version": "11.0.100-preview.5.26302.115",
"allowPrerelease": false,
"paths": [ ".dotnet", "$host$" ]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net11.0' ">
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" VersionOverride="11.0.0-preview.4.26230.115" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" VersionOverride="11.0.0-preview.5.26302.115" />
<PackageReference Update="Microsoft.OpenApi" VersionOverride="3.6.0" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net11.0' ">
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" VersionOverride="11.0.0-preview.4.26230.115" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" VersionOverride="11.0.0-preview.5.26302.115" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Swashbuckle.AspNetCore/Swashbuckle.AspNetCore.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<dependency id="Swashbuckle.AspNetCore.Swagger" version="$version$" exclude="Build,Analyzers" />
<dependency id="Swashbuckle.AspNetCore.SwaggerGen" version="$version$" exclude="Build,Analyzers" />
<dependency id="Swashbuckle.AspNetCore.SwaggerUI" version="$version$" exclude="Build,Analyzers" />
<dependency id="Microsoft.Extensions.ApiDescription.Server" version="11.0.0-preview.4.26230.115" />
<dependency id="Microsoft.Extensions.ApiDescription.Server" version="11.0.0-preview.5.26302.115" />
</group>
</dependencies>
</metadata>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@
</ItemGroup>

<ItemGroup Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net11.0'))">
<PackageReference Update="Microsoft.AspNetCore.Mvc.Testing" VersionOverride="11.0.0-preview.4.26230.115" />
<PackageReference Update="Microsoft.AspNetCore.TestHost" VersionOverride="11.0.0-preview.4.26230.115" />
<PackageReference Update="Microsoft.AspNetCore.Mvc.Testing" VersionOverride="11.0.0-preview.5.26302.115" />
<PackageReference Update="Microsoft.AspNetCore.TestHost" VersionOverride="11.0.0-preview.5.26302.115" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -940,8 +940,8 @@
}
],
"responses": {
"200": {
"description": "OK",
"default": {
"description": "A Product",
"content": {
"application/json": {
"schema": {
Expand All @@ -950,8 +950,8 @@
}
}
},
"default": {
"description": "A Product",
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -940,8 +940,8 @@
}
],
"responses": {
"200": {
"description": "OK",
"default": {
"description": "A Product",
"content": {
"application/json": {
"schema": {
Expand All @@ -950,8 +950,8 @@
}
}
},
"default": {
"description": "A Product",
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
Expand Down
2 changes: 1 addition & 1 deletion test/WebSites/OAuth2Integration/OAuth2Integration.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net11.0'">
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" VersionOverride="11.0.0-preview.4.26230.115" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" VersionOverride="11.0.0-preview.5.26302.115" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion test/WebSites/TodoApp/TodoApp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" VersionOverride="10.0.9" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net11.0'">
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" VersionOverride="11.0.0-preview.4.26230.115" />
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" VersionOverride="11.0.0-preview.5.26302.115" />
</ItemGroup>
</Project>
Loading