-
Notifications
You must be signed in to change notification settings - Fork 266
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
More support for netcoreapp3.0 #378
More support for netcoreapp3.0 #378
Conversation
22edb5a
to
5781f8c
Compare
src/Giraffe/Giraffe.fsproj
Outdated
<PackageReference Include="Microsoft.AspNetCore.Hosting.Abstractions" Version="2.2.*" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Diagnostics" Version="2.2.*" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Authentication" Version="2.2.*" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Authorization" Version="3.0.0" /> |
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.
Should this be version 2.2.*
, as I assume 3.0.0
was to fix compatibility with netcoreapp3.0
which would now be covered by the framework reference.
This is straddling major aspnetcore versions, that's my only real concern here. MVC just went to Another thing to note, here I've lowered the major version of |
I recommend looking at |
Thanks @NinoFloris, this PR looks consistent with that approach and is ready for review. |
@@ -45,11 +54,11 @@ | |||
<ItemGroup Condition="'$(TargetFramework)' != 'netcoreapp3.0'"> | |||
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="2.2.0" /> | |||
</ItemGroup> | |||
|
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.
Both these ItemGroup
s are repleated here.
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.
LGTM, only one comment where we included the TestHost reference multiple times.
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.
LGTM
Thanks @slang25! |
See #377