-
Notifications
You must be signed in to change notification settings - Fork 842
Fix full source-build product build when running R2R #17259
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
Fix full source-build product build when running R2R #17259
Conversation
✅ No release notes required |
See dotnet/source-build#4410 When building from source, we must set the RuntimeIdentifier property explicitly as otherwise the SDK defaults to the portable RID. Also make the SDK aware of the R2R build by updating the Known* items in Directory.Build.targets and remove the AspNetCore framework references.
9b7512c to
b793e15
Compare
b793e15 to
7271b27
Compare
|
Should auto-merge once approved by someone from SB-internal team and all comments are resolved. |
|
Oh, for some reason it wasn't blocked by the comment. @ViktorHofer is it ok that it got merged, or does it need some more changes? We can hold on with merging to release branch and wait for fixes (if any). |
|
viktor used the same patch in sdk, everything was fine dotnet/sdk@43ff4fd. need to remove the patch once fsharp update pops up via codeflow in sdk. |
|
exactly |
Co-authored-by: Kevin Ransom (msft) <[email protected]> Co-authored-by: Petr <[email protected]> Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com> Co-authored-by: Brian Rourke Boll <[email protected]> Co-authored-by: Vlad Zarytovskii <[email protected]> Co-authored-by: Viktor Hofer <[email protected]> Co-authored-by: Florian Verdonck <[email protected]> Co-authored-by: Jakub Majocha <[email protected]> Co-authored-by: ijklam <[email protected]> Co-authored-by: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com> Co-authored-by: dawe <[email protected]> Co-authored-by: Tom Deseyn <[email protected]> Fix AOT (#17238)" (#17264) Fix full source-build product build when running R2R (#17259) Fix plain build of FSC fsproj (#17270) Fix #14375 by showing and inserting correct name of entities from unopened namespace/module (#17261) fix #14375 Fix a typo in docs (#17273) Fix sbom generation (#17275)
See dotnet/source-build#4410 When building from source, we must set the
RuntimeIdentifier property explicitly as otherwise the SDK defaults to the portable RID.
Also make the SDK aware of the R2R build by updating the Known* items in Directory.Build.targets and
remove the AspNetCore framework references.