-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Visual Studio 2019 Tools to Windows Image (#1143)
* Add Visual Studio 2019 Tools to Windows Image Adds Visual Studio 2019 Build Tools to the Windows image. This will allow building native applications/DLLs for Windows in the Jenkins infrastructure. * Make sure install process completes Makes sure that the install process has completed before moving on. * Add check for 2019 when installing VS Build Tools Adds a check for the environment variable (AGENT_OS_VERSION) to only install VS Build Tools if it is 2019. * Skip goss check on 2022 Skips the goss check fir VS Built Tools if building for 2022.
- Loading branch information
Showing
5 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"version": "1.0", | ||
"components": [ | ||
"Microsoft.VisualStudio.Component.Roslyn.Compiler", | ||
"Microsoft.VisualStudio.Component.CoreBuildTools", | ||
"Microsoft.Component.MSBuild", | ||
"Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Core", | ||
"Microsoft.VisualStudio.Workload.NativeDesktop", | ||
"Microsoft.VisualStudio.Component.TextTemplating", | ||
"Microsoft.VisualStudio.Component.Windows10SDK.19041", | ||
"Microsoft.VisualStudio.Component.Windows10SDK.16299", | ||
"Microsoft.VisualStudio.Component.VC.CoreIde", | ||
"Microsoft.VisualStudio.Component.VC.CoreBuildTools", | ||
"Microsoft.VisualStudio.Component.VC.Redist.14.Latest", | ||
"Microsoft.VisualStudio.Component.VC.Tools.x86.x64", | ||
"Microsoft.VisualStudio.Component.VC.v141.x86.x64", | ||
"Microsoft.VisualStudio.Component.VC.Tools.ARM64", | ||
"Microsoft.VisualStudio.Component.VC.v141.ARM64", | ||
"Microsoft.VisualStudio.Component.VC.Tools.ARM", | ||
"Microsoft.VisualStudio.Component.VC.v141.ARM", | ||
], | ||
"extensions": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters