-
Notifications
You must be signed in to change notification settings - Fork 707
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
Add custom resolver for libcoreclr.so #900
Conversation
@@ -30,6 +30,8 @@ | |||
using System.Text; | |||
using NStack; | |||
|
|||
using Rune = System.Rune; |
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.
This to fix a compiler error; disambiguate .NET5's System.Text.Rune with System.Rune coming from https://github.com/migueldeicaza/NStack/blob/447f61d/NStack/unicode/Rune.cs#L4.
b6d3286
to
74c0c24
Compare
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.
This all looks great. I don't have time to test and I want to do that before I merge. But I will asap.
74c0c24
to
19955fa
Compare
Is .NET 5 at a point where we would be comfortable releasing a nuget package built with it? |
The .NET 5.0 general availability is rumored for Nov. 2020. Some NuGet packages are using dotnet 5.0 RC versions for their preview / beta releases. If there is a stable version planned for |
Still in |
My recommendation is that we merge this change now for 0.90 and plan on launching 1.0 after .NET 5 launches in Nov. Any objections? |
Sounds good, will likely give us more bake time to iron out possible bugs in 5.0 bits. 😎👍 |
This patch is required for "true" SingleFile form factor, introduced in .NET 5.0.
I tested @benadams' repro (by using replacing PackageReference with ProjectReference and commenting out this line) and confirmed this special-casing for .NET5.0 (using SDK's implicitly defined compilation constant
NET5_0
) fixes the problem.Fixes #889.
cc @MichalStrehovsky, @benadams