Skip to content

Commit a0cdb80

Browse files
Chris Martinezcommonsensesoftware
authored andcommitted
Add support for .NET 5.0
1 parent 2709f16 commit a0cdb80

File tree

6 files changed

+13
-14
lines changed

6 files changed

+13
-14
lines changed

src/Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer/Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer.csproj

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

33
<PropertyGroup>
4-
<VersionPrefix>4.2.0</VersionPrefix>
5-
<AssemblyVersion>4.2.0.0</AssemblyVersion>
6-
<TargetFramework>netcoreapp3.1</TargetFramework>
4+
<VersionPrefix>5.0.0</VersionPrefix>
5+
<AssemblyVersion>5.0.0.0</AssemblyVersion>
6+
<TargetFrameworks>netcoreapp3.1;net5.0</TargetFrameworks>
77
<AssemblyTitle>Microsoft ASP.NET Core API Versioning</AssemblyTitle>
88
<Description>ASP.NET Core MVC API explorer functionality for discovering metadata such as the list of API-versioned controllers and actions, and their URLs and allowed HTTP methods.</Description>
99
<RootNamespace>Microsoft.AspNetCore.Mvc.ApiExplorer</RootNamespace>

src/Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer/SR.Designer.cs

Lines changed: 4 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Microsoft.AspNetCore.Mvc.Versioning/Microsoft.AspNetCore.Mvc.Versioning.csproj

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

33
<PropertyGroup>
4-
<VersionPrefix>4.2.0</VersionPrefix>
5-
<AssemblyVersion>4.2.0.0</AssemblyVersion>
6-
<TargetFramework>netcoreapp3.1</TargetFramework>
4+
<VersionPrefix>5.0.0</VersionPrefix>
5+
<AssemblyVersion>5.0.0.0</AssemblyVersion>
6+
<TargetFrameworks>netcoreapp3.1;net5.0</TargetFrameworks>
77
<AssemblyTitle>Microsoft ASP.NET Core API Versioning</AssemblyTitle>
88
<Description>A service API versioning library for Microsoft ASP.NET Core.</Description>
99
<RootNamespace>Microsoft.AspNetCore.Mvc</RootNamespace>

src/Microsoft.AspNetCore.Mvc.Versioning/SR.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer.Tests/Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.1</TargetFramework>
4+
<TargetFrameworks>netcoreapp3.1;net5.0</TargetFrameworks>
55
<RootNamespace>Microsoft.AspNetCore.Mvc.ApiExplorer</RootNamespace>
66
<PreserveCompilationContext>true</PreserveCompilationContext>
77
</PropertyGroup>

test/Microsoft.AspNetCore.Mvc.Versioning.Tests/Microsoft.AspNetCore.Mvc.Versioning.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.1</TargetFramework>
4+
<TargetFrameworks>netcoreapp3.1;net5.0</TargetFrameworks>
55
<RootNamespace>Microsoft.AspNetCore.Mvc</RootNamespace>
66
<PreserveCompilationContext>true</PreserveCompilationContext>
77
</PropertyGroup>

0 commit comments

Comments
 (0)