Redistributable installers as NuGet packages #110497
Unanswered
MikeFarrington
asked this question in
Ideas
Replies: 1 comment
-
For anyone coming across this, the closest existing solution I've come across is making use of the MSBuild FileDownload Task, first using
Here is a quick example from the solution I came up with. Please note, the target "CoreCompile" is used in WiX Toolset. You may need to change this for your chosen installer solution.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When bundling both the .NET Desktop Runtime and ASP.NET Core Runtime installers into my installers via my CI build chain, I am having to use locally self-created NuGet packages. I must re-create these packages every time a new version of .NET is released.
I use the lesser known "PackageDownload" feature of NuGet within SDK-style project files to pull these NuGet packages containing installer executables down and stage them for bundling into my WiX Toolset based installer. It lets me keep everything in the project files.
Microsoft is already publishing NuGet packages for use in AOT / Self-Contained packages:
Microsoft.AspNetCore.App.Runtime.win-x64
Microsoft.WindowsDesktop.App.Runtime.win-x64
runtime.win-x64.Microsoft.NETCore.DotNetAppHost
Can we get a new set of packages for the redistributable installers that are released automatically?
Beta Was this translation helpful? Give feedback.
All reactions