-
Notifications
You must be signed in to change notification settings - Fork 0
/
Winget-Demo.json
60 lines (60 loc) · 1.75 KB
/
Winget-Demo.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"parameters": {},
"variables": {},
"resources": [
{
"name": "AssertWindows 10.0.17763.0",
"type": "Microsoft.Windows.DSC/AssertWindows",
"properties": {
"versionMinimum": "10.0.17763.0"
}
},
{
"name": "Enable Developer Mode",
"type": "Microsoft.Windows.DSC/DeveloperMode",
"properties": {
},
"dependsOn": [
"Microsoft.Windows.DSC/AssertWindows/Assert Windows 10.0.17763.0"
]
},
{
"name": "vsPackage",
"type": "Microsoft.WinGet.DSC/WinGetPackage",
"properties": {
"id": "Microsoft.VisualStudio.2022.Community",
"source": "winget"
},
"dependsOn": [
"Microsoft.Windows.DSC/AssertWindows/Assert Windows 10.0.17763.0"
]
},
{
"name": "Install required VS components",
"type": "Microsoft.VisualStudio.DSC/VisualStudioComponents",
"properties": {
"productId": "Microsoft.VisualStudio.Product.Community",
"channelId": "VisualStudio.17.Release",
"vsconfigFile": ".vsconfig"
},
"dependsOn": [
"Microsoft.Windows.DSC/AssertWindows/Assert Windows 10.0.17763.0",
"Microsoft.WinGet.DSC/WinGetPackage/vsPackage"
]
},
{
"name": "Install VS extension for MSI",
"type": "Microsoft.VisualStudio.DSC/VisualStudioExtension",
"properties": {
"productId": "Microsoft.VisualStudio.Product.Community",
"channelId": "VisualStudio.17.Release",
"publisher": "VisualStudioClient",
"name": "MicrosoftVisualStudio2022InstallerProjects"
},
"dependsOn": [
"Microsoft.Windows.DSC/AssertWindows/Assert Windows 10.0.17763.0",
"Microsoft.WinGet.DSC/WinGetPackage/vsPackage"
]
}
]
}