-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
Deployment and Servicing guidance for customers #3351
Comments
Feedback on servicing: dotnet/core#1541 |
Feedback pointing to asks on automated servicing scenarios: dotnet/core#1781 |
Just my 2¢ on this issue, since you mentioned MSIX above: Currently, to create a fully self-contained MSIX (for Windows Store deployment, usually) I have to do something like this to copy the .NET Core runtime into my package's VFS folder. This is much like self-contained deployment, except that there is one copy of the .NET Core runtime across two different top-level targets (the main app and a shell extension, both implemented in Core). However, I still have to package the runtime separately for each app. When several apps that use this technique are installed, the disk space wasted by the duplicate copies of the runtime begins to add up. One easy solution to this problem is for me to create an MSIX package with However, this would break Windows Store deployment, as only Microsoft can publish framework packages to the Store. If we could have official .NET Core runtime packages available as dependencies in the Store, that would be amazing. If those dependencies could be downloaded and installed automatically when I try to install an MSIX package from outside the store, that would be even better. (Following this morning's announcement, I am planning on porting as many of my apps as possible to MSIX deployment, to provide the best possible experience on Windows 10X.) Thanks! |
I believe that issue is related |
@MichaelSimons I don't think we have any content related to this except for generic mentions of "use the visual studio publish" |
The text was updated successfully, but these errors were encountered: