-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added target framework to netstandard2.0 #821
Conversation
Welp it gets pulled in with the Microsoft.Bcl.AsyncInterfaces package (which I did not know existed). Derp. We can just target |
src/MediatR/MediatR.csproj
Outdated
@@ -4,7 +4,7 @@ | |||
<Authors>Jimmy Bogard</Authors> | |||
<Description>Simple, unambitious mediator implementation in .NET</Description> | |||
<Copyright>Copyright Jimmy Bogard</Copyright> | |||
<TargetFrameworks>netstandard2.1</TargetFrameworks> | |||
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Evidently this can be JUST netstandard2.0
.
*RequestExceptionHandlerState.cs *IStreamRequestHandler.cs
*Microsoft.Extensions.DependencyInjection.Abstractions 7.0.0 *MinVer 4.2.0
Unfortunately I have some problems compiling the project, i get the following message: |
Please consider adding netstandard2.0 as a target framework if you can.