Skip to content

Commit

Permalink
Use supported versions of Microsoft.AspNetCore.* (#4561)
Browse files Browse the repository at this point in the history
ASP.NET Core 2.1 on .NET Framework is supported
while version 2.2 is deprecated.
  • Loading branch information
olegd-superoffice committed Nov 15, 2023
1 parent e7dd065 commit 5785968
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/NSwag.Commands/NSwag.Commands.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net462'">
<PackageReference Include="Microsoft.AspNetCore" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.ApiExplorer" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Formatters.Json" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore" Version="[2.1.7, 2.2)" />
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="[2.1.1, 2.2)" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.ApiExplorer" Version="[2.1.3, 2.2)" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Formatters.Json" Version="[2.1.18, 2.2)" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 5785968

Please sign in to comment.