-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Work around dotnet/runtime#71027 by using manual runtimeconfig files. (…
…#2) The generated ones can result in the consuming application to not be able to load due to hostfxr reordering the frameworks in a way that will cause it to look for hostpolicy in the wrong framework. Signed-off-by: AraHaan <[email protected]>
- Loading branch information
Showing
3 changed files
with
50 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"runtimeOptions": { | ||
"tfm": "net6.0", | ||
"frameworks": [ | ||
{ | ||
"name": "Microsoft.AspNetCore.App", | ||
"version": "6.0.0" | ||
}, | ||
{ | ||
"name": "Microsoft.NETCore.App", | ||
"version": "6.0.0" | ||
} | ||
], | ||
"configProperties": { | ||
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false, | ||
"System.Reflection.NullabilityInfoContext.IsSupported": true | ||
} | ||
} | ||
} |