Skip to content

Commit 326a859

Browse files
Ihar YakimushIhar Yakimush
authored andcommitted
netstandard2.0 support added to ...Mvc.csproj
1 parent 7327597 commit 326a859

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

Community.AspNetCore.ExceptionHandling.Mvc/Community.AspNetCore.ExceptionHandling.Mvc.csproj

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

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp2.1</TargetFramework>
4+
<TargetFrameworks>netstandard2.0;netcoreapp2.1</TargetFrameworks>
55
<Description>Extension methods to configure exception handler which write MVC action result to responce body. Userfull for writing objects</Description>
66
<PackageProjectUrl>https://github.com/IharYakimush/asp-net-core-exception-handling</PackageProjectUrl>
77
<PackageLicenseUrl>https://github.com/IharYakimush/asp-net-core-exception-handling/blob/develop/LICENSE</PackageLicenseUrl>
88
<Copyright>IharYakimush</Copyright>
99
<PackageTags>aspnetcore exception handling policy mvc action result</PackageTags>
10-
<AssemblyVersion>2.0.2.0</AssemblyVersion>
10+
<AssemblyVersion>2.0.3.0</AssemblyVersion>
1111
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1212
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
13-
<FileVersion>2.0.2.0</FileVersion>
13+
<FileVersion>2.0.3.0</FileVersion>
1414
<Company />
1515
<Authors>IharYakimush</Authors>
16-
<Version>2.0.2</Version>
16+
<Version>2.0.3</Version>
1717
<SignAssembly>true</SignAssembly>
1818
<AssemblyOriginatorKeyFile>..\sgn.snk</AssemblyOriginatorKeyFile>
1919
<ApplicationIcon />
2020
<OutputType>Library</OutputType>
2121
<StartupObject />
22+
<PackageReleaseNotes>netstandard2.0 support added</PackageReleaseNotes>
2223
</PropertyGroup>
2324

2425
<ItemGroup>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,5 @@ Sample of transitions:
6565
| Package | Target | Comments |
6666
| ---------| ------------- | ------------- |
6767
| Community.AspNetCore.ExceptionHandling | netstandard2.0 netcoreapp2.1 | Main functionality |
68-
| Community.AspNetCore.ExceptionHandling.Mvc | netcoreapp2.1 | Alllow to use MVC IActionResult (including ObjectResult) in 'Response' handler |
68+
| Community.AspNetCore.ExceptionHandling.Mvc | netstandard2.0 netcoreapp2.1 | Alllow to use MVC IActionResult (including ObjectResult) in 'Response' handler |
6969
| Community.AspNetCore.ExceptionHandling.NewtonsoftJson | netstandard2.0 | Allow to set Json serialized object as a response body in 'Response' handler. Use it only if 'Community.AspNetCore.ExceptionHandling.Mvc' usage not possible |

0 commit comments

Comments
 (0)