Jakub Bereżański

Results 113 comments of Jakub Bereżański

@stogle ah, indeed, it seems to be the case. The workload id is still the same, `Microsoft.VisualStudio.Workload.XamarinBuildTools` (fortunately; it would be crazy if they changed the id as well), so...

> is there a way to pass the bootstraperPath Yes, this should work: ``` choco install visualstudio2022buildtools --package-parameters "--bootstrapperPath C:\SomeDir\my_bootstrapper.exe" ``` > The chocolatey package could be made proxy friendly......

> there's an error stating "No previous catalog found at C:\Programdata\Microsoft\VisualStudio\Packages_Instances\catalog.previous.json". This seems to be a problem inside the Visual Studio Installer itself. The choco extension does not touch that...

I don't have any experience with the LTSC releases, but I think I understand the problem. First, some organizational matters: - Please rebase on top of `master` and target `master`...

Thank you for the very detailed description, that really helps. I'll think about it over the weekend, but my instinctive reaction is that maybe it would be best to provide...

I think I would like the default behavior of the packages/extension to be to assume the Current channel and only pick installed instances which refer to that channel when determining...

Also: > we are passing one more parameter to the Install-VisualStudio script, the DesiredProductVersion, allowing us to have a package that will install that specific version Please note that the...

> 1. Create 3 packages of Visual Studio 2022 Enterprise, with the following DesiredProductVersion: 17.2.32616.157 (this is 17.2.5, use the non-LTSC installer link, where the column Channel says Current) 17.2.32802.462...

Implemented in extension 1.11.0 (currently in preview). I've also added example LTSC packages as well as fixed version variants (packages which always install a specific VS version) of both Current...

Here are example scripts from an "evergreen" package which installs the latest version from the LTSC 17.4 channel: ChocolateyInstall.ps1 ```powershell Install-VisualStudio ` -PackageName 'visualstudio2022buildtools-ltsc17.4' ` -ApplicationName 'Microsoft Visual Studio Build...