-
Notifications
You must be signed in to change notification settings - Fork 162
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 proposal for .NET Core 3 targeting packs and runtime packs #50
Conversation
Co-Authored-By: nguerrera <nicholg@microsoft.com>
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.
Copying unresolved comments to this PR from the internal one...
Co-Authored-By: nguerrera <nicholg@microsoft.com>
Co-Authored-By: nguerrera <nicholg@microsoft.com>
I've started implementing this proposal for ASP.NET Core. I have some follow-up questions which I think should be addressed in this spec:
cc @pakrym |
@nguerrera @natemcmaster The questions about conflict resolution data and the platform manifest made me realize that we need that information to be in both the targeting packs and the runtime packs, and the SDK needs to select the correct source for that information based on whether the app is self-contained or not. I've filed dotnet/sdk#2933 |
@natemcmaster We currently don't plan to have runtime pack installers in the same way that we will have targeting pack installers. So runtime packs will always be acquired via |
The package conflict overrides will need to be converted to a data file like the manifest. Possibly this could be folded into 1 file. To bootstrap, we can extract the props somewhere in the sdk where we can conditionally import it, a bit like bundled versions. We're already reading the manifest by convention, but looks like we have the (small) bug Daniel mentions for runtime pack case. I think we can fix that and do the bundled version-esque trick for preview 3. |
For architecture specificity of targeting pack installer, see pr for m.nc.app.ref installer. different approaches were discussed, but ultimately multiple msis seems simplest. We do need x86 and x64 sdks to install tps to their own location with appropriate ref counting. I'm deferring to msi experts to decide how best to achieve that. I don't remember the name Davis picked offhand and I'm away from a computer to check, but it seemed good to me. Can you follow his lead for that? |
For uninstalling, I think it should follow the same policy as the shared frameworks, which is changing but I think it is currently still 100% side by side so we should match that and just include the tps in any push to change it. I'm imagining every build will produce a tp, but once we hit rtm, we'll re ship .0 in patches unless there's a critical issue that requires a serviced tp. I alluded to this in the doc but I'll make it more detailed |
Actually, if I understood the plans for upgrading/uninstalling patches/previews correctly, I think it is only a concern for the bundles / higher level packages that can uninstall old things bundled with previous versions and install new things. |
Any reason why this hasn't been merged? I believe it is in the product. |
There are some things that are out of date. It's on my list to clean it up. |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
I am still looking for a specification. Very difficult to file bugs for something with no official documentation. |
@dsplaisted can this be merged? Or should this be closed? |
@terrajobst I'll fix it up. (Yes, I know I've said that forever, but give me a bit more time.) |
This is on an extremely short list of things I still intend to wrap up even though I don’t work on the sdk anymore |
With the introduction of the mono vm in .net 5, there is a need to uniquely differentiate the runtime packs. To be clear, this would apply to scenarios where there are > 1 vm's being used (Xamarin.Mac targeting OSX). To me, it would make sense to just add the vm to the name of the runtime pack. Something like What's the best way to proceed? /cc @marek-safar @ericstj |
I don't believe that's how nupkg's are supposed to work. You have one nupkg for all runtime targets. Maybe FrameworkReference(s) are handled differently. Unless what you're saying is related to this part of the specification:
And adding Mono changing what it means to be 1:1 with .NET Core Runtimes, as it adds a second runtime? P.S. I'm not sure what {rid} is here - RuntimeIdentifier? |
Finally had a moment to look at this. I've fixed the inaccuracies related to .NET Core 3's final shape and I'm going to go ahead and merge this now. |
Ah, I don't have permission to merge anymore. @terrajobst @dsplaisted, go ahead and merge if you approve. |
Done ✅ |
@nguerrera Much appreciated. |
No description provided.