mirror of
https://github.com/microsoft/PowerToys
synced 2025-09-04 16:35:10 +00:00
[Dev]Add additional Winget DSC scripts for VS Pro and Enterprise (#31325)
* Create configuration.Enterprise.dsc.yaml * Create configuration.Professional.dsc.yaml * Update configuration.Enterprise.dsc.yaml * Update configuration.Professional.dsc.yaml * Update configuration.dsc.yaml * Rename configuration.Enterprise.dsc.yaml to configuration.vsEnterprise.dsc.yaml * Rename configuration.Professional.dsc.yaml to configuration.vsProfessional.dsc.yaml
This commit is contained in:
@@ -11,7 +11,7 @@ properties:
|
|||||||
- resource: Microsoft.WinGet.DSC/WinGetPackage
|
- resource: Microsoft.WinGet.DSC/WinGetPackage
|
||||||
id: vsPackage
|
id: vsPackage
|
||||||
directives:
|
directives:
|
||||||
description: Install Visual Studio 2022 (any edition is OK)
|
description: Install Visual Studio 2022 Community (Any edition will work)
|
||||||
allowPrerelease: true
|
allowPrerelease: true
|
||||||
settings:
|
settings:
|
||||||
id: Microsoft.VisualStudio.2022.Community
|
id: Microsoft.VisualStudio.2022.Community
|
||||||
@@ -31,4 +31,4 @@ properties:
|
|||||||
# Next steps:
|
# Next steps:
|
||||||
# Open a terminal
|
# Open a terminal
|
||||||
# Navigate to the folder you cloned PowerToys to.
|
# Navigate to the folder you cloned PowerToys to.
|
||||||
# Run git submodule update --init --recursive
|
# Run git submodule update --init --recursive
|
||||||
|
34
.configurations/configuration.vsEnterprise.dsc.yaml
Normal file
34
.configurations/configuration.vsEnterprise.dsc.yaml
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
# yaml-language-server: $schema=https://aka.ms/configuration-dsc-schema/0.2
|
||||||
|
# Reference: https://github.com/microsoft/PowerToys/blob/main/doc/devdocs/readme.md#compiling-powertoys
|
||||||
|
properties:
|
||||||
|
resources:
|
||||||
|
- resource: Microsoft.Windows.Developer/DeveloperMode
|
||||||
|
directives:
|
||||||
|
description: Enable Developer Mode
|
||||||
|
allowPrerelease: true
|
||||||
|
settings:
|
||||||
|
Ensure: Present
|
||||||
|
- resource: Microsoft.WinGet.DSC/WinGetPackage
|
||||||
|
id: vsPackage
|
||||||
|
directives:
|
||||||
|
description: Install Visual Studio 2022 Enterprise (Any edition will work)
|
||||||
|
allowPrerelease: true
|
||||||
|
settings:
|
||||||
|
id: Microsoft.VisualStudio.2022.Enterprise
|
||||||
|
source: winget
|
||||||
|
- resource: Microsoft.VisualStudio.DSC/VSComponents
|
||||||
|
dependsOn:
|
||||||
|
- vsPackage
|
||||||
|
directives:
|
||||||
|
description: Install required VS workloads
|
||||||
|
allowPrerelease: true
|
||||||
|
settings:
|
||||||
|
productId: Microsoft.VisualStudio.Product.Enterprise
|
||||||
|
channelId: VisualStudio.17.Release
|
||||||
|
vsConfigFile: '${WinGetConfigRoot}\..\.vsconfig'
|
||||||
|
configurationVersion: 0.2.0
|
||||||
|
|
||||||
|
# Next steps:
|
||||||
|
# Open a terminal
|
||||||
|
# Navigate to the folder you cloned PowerToys to.
|
||||||
|
# Run git submodule update --init --recursive
|
34
.configurations/configuration.vsProfessional.dsc.yaml
Normal file
34
.configurations/configuration.vsProfessional.dsc.yaml
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
# yaml-language-server: $schema=https://aka.ms/configuration-dsc-schema/0.2
|
||||||
|
# Reference: https://github.com/microsoft/PowerToys/blob/main/doc/devdocs/readme.md#compiling-powertoys
|
||||||
|
properties:
|
||||||
|
resources:
|
||||||
|
- resource: Microsoft.Windows.Developer/DeveloperMode
|
||||||
|
directives:
|
||||||
|
description: Enable Developer Mode
|
||||||
|
allowPrerelease: true
|
||||||
|
settings:
|
||||||
|
Ensure: Present
|
||||||
|
- resource: Microsoft.WinGet.DSC/WinGetPackage
|
||||||
|
id: vsPackage
|
||||||
|
directives:
|
||||||
|
description: Install Visual Studio 2022 Professional (Any edition will work)
|
||||||
|
allowPrerelease: true
|
||||||
|
settings:
|
||||||
|
id: Microsoft.VisualStudio.2022.Professional
|
||||||
|
source: winget
|
||||||
|
- resource: Microsoft.VisualStudio.DSC/VSComponents
|
||||||
|
dependsOn:
|
||||||
|
- vsPackage
|
||||||
|
directives:
|
||||||
|
description: Install required VS workloads
|
||||||
|
allowPrerelease: true
|
||||||
|
settings:
|
||||||
|
productId: Microsoft.VisualStudio.Product.Professional
|
||||||
|
channelId: VisualStudio.17.Release
|
||||||
|
vsConfigFile: '${WinGetConfigRoot}\..\.vsconfig'
|
||||||
|
configurationVersion: 0.2.0
|
||||||
|
|
||||||
|
# Next steps:
|
||||||
|
# Open a terminal
|
||||||
|
# Navigate to the folder you cloned PowerToys to.
|
||||||
|
# Run git submodule update --init --recursive
|
Reference in New Issue
Block a user