-
Notifications
You must be signed in to change notification settings - Fork 132
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
Making ./build.sh --with... work better #1532
Comments
Sorry for butting in, but want to get into this one early:
@rainersigwald did I miss something?
|
We could also just copy over the sdk directory before mutating it 😆 |
@dagood No, installing a resolver does require copying into the MSBuild installation directory. You could copy a different file (a manifest pointing to your resolver elsewhere) but that doesn't really help you. We could of course add command-line/API surface to change that. Let us know if that would help a bunch; as is I think I lean toward either of the options you're mentioning. |
Well, copying over the SDK is the workaround I think we'd go with (transitioning over to use the nupkg flow + nuget.config + global.json is extra effort) so it'd save an SDK worth of build-time disk space to do one of the product-side suggestions. It looks like this old but popular issue actually covers this request already: dotnet/msbuild#2278. |
[Triage] Related to #1478 |
(This is a WIP issue where I am collecting issues that I am running into when trying to use our various
./build.sh --with-....
options on Fedora)--with-sdk
tries to modify a read-only SDKI tried using
--with-sdk
with a/usr/lib64/dotnet
(that's where the previously built SDK is installed) and the build blows up:It's trying to mutate the copy of the SDK at
/usr/lib64/dotnet/
which onlyroot
can write to.TODO
The text was updated successfully, but these errors were encountered: