Jacques Eloff

Results 92 comments of Jacques Eloff

We are using the extension, but all our MSIs are SxS, even within an SDK patch. .NET decided to defer the upgrade logic to the bundle or to VS (which...

Burn definitely cleans up. I set up a sandbox, installed .NET 8, then removed it. HKLM\SOFTWARE\Classes\Installer\Dependencies remain, but the provider keys are gone.

Was this downloaded from NuGet or from an internal feed? We generally only sign the official builds going to NuGet. @danegsta as an FYI. I suspect this is just a...

We build the installers for all the templates and VS should be picking those up. If they're missing from VS, I'd expect them to be missing from the standalone installations...

We use the same target for all platforms: https://github.com/dotnet/installer/blob/c5ce95b250cc405443c5d740841f387215b0e903/src/redist/targets/BundledTemplates.targets#L193 and that should include the same nupkg. I looked at the template.json in the package because I thought maybe there were...

I assume we'd want the regex pattern to be any valid C# pattern., so we need to validate the expression first before using it to validate the input. Question: What...

If it's marked as not installed, the applicability logic may think it's installable. Updates for 2.1 and 3.1 (and 5.0) were based on a sequence of MSI detection logic. This...

Not that if these were installed through VS, they may have a lingering dependency that will block removal through `msiexec`. You can confirm this by looking at `HKLM\SOFTWARE\Classes\Installer\Dependencies`. You can...

The hosting bundle installs both runtimes, but from the logs it appear that ANCM is failing to install. It seems that a current version of IIS is installed: 12.2.19282.0, and...

Unfortunately, it's not shipped separately, but you can extract it. 1. Grab the WiX toolset binaries: https://github.com/wixtoolset/wix3/releases/download/wix3112rtm/wix311-binaries.zip 2. Run ```dark.exe -x C:\somefolder dotnet-hosting-3.1.5-win.exe``` - this will decompile the bundle and...