Skip to content

Commit 3b44048

Browse files
authored
Merge branch 'main' into main
2 parents 6b09a95 + c8af1f3 commit 3b44048

File tree

6,838 files changed

+765791
-226115
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

6,838 files changed

+765791
-226115
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
## DO NOT MODIFY THIS FILE MANUALLY. This is part of auto-baselining from 1ES Pipeline Templates. Go to [https://aka.ms/1espt-autobaselining] for more details.
2+
3+
pipelines:
4+
111:
5+
retail:
6+
source:
7+
credscan:
8+
lastModifiedDate: 2024-09-10
9+
eslint:
10+
lastModifiedDate: 2024-09-10
11+
psscriptanalyzer:
12+
lastModifiedDate: 2024-09-10
13+
armory:
14+
lastModifiedDate: 2024-09-10
15+
accessibilityinsights:
16+
lastModifiedDate: 2025-06-02
17+
binary:
18+
credscan:
19+
lastModifiedDate: 2025-02-04
20+
binskim:
21+
lastModifiedDate: 2025-02-04
22+
spotbugs:
23+
lastModifiedDate: 2025-02-04

.config/configuration.winget

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
# yaml-language-server: $schema=https://aka.ms/configuration-dsc-schema/0.2
2+
# Reference: https://github.com/microsoft/vscode/wiki/How-to-Contribute
3+
properties:
4+
resources:
5+
- resource: Microsoft.WinGet.DSC/WinGetPackage
6+
directives:
7+
description: Install Git
8+
# Requires elevation for the set operation (i.e., for installing the package)
9+
securityContext: elevated
10+
settings:
11+
id: Git.Git
12+
source: winget
13+
- resource: Microsoft.WinGet.DSC/WinGetPackage
14+
id: npm
15+
directives:
16+
description: Install NodeJS version 20
17+
# Requires elevation for the set operation (i.e., for installing the package)
18+
securityContext: elevated
19+
settings:
20+
id: OpenJS.NodeJS.LTS
21+
version: "20.14.0"
22+
source: winget
23+
- resource: Microsoft.WinGet.DSC/WinGetPackage
24+
directives:
25+
description: Install Python 3.10
26+
settings:
27+
id: Python.Python.3.10
28+
source: winget
29+
- resource: Microsoft.WinGet.DSC/WinGetPackage
30+
id: vsPackage
31+
directives:
32+
description: Install Visual Studio 2022 (any edition is OK)
33+
# Requires elevation for the set operation (i.e., for installing the package)
34+
securityContext: elevated
35+
settings:
36+
id: Microsoft.VisualStudio.2022.BuildTools
37+
source: winget
38+
- resource: Microsoft.VisualStudio.DSC/VSComponents
39+
dependsOn:
40+
- vsPackage
41+
directives:
42+
description: Install required VS workloads
43+
# Requires elevation for the get and set operations
44+
securityContext: elevated
45+
allowPrerelease: true
46+
settings:
47+
productId: Microsoft.VisualStudio.Product.BuildTools
48+
channelId: VisualStudio.17.Release
49+
includeRecommended: true
50+
components:
51+
- Microsoft.VisualStudio.Workload.VCTools
52+
- resource: NpmDsc/NpmInstall
53+
dependsOn:
54+
- npm
55+
directives:
56+
description: Install dependencies
57+
allowPrerelease: true
58+
settings:
59+
PackageDirectory: '${WinGetConfigRoot}\..\'
60+
configurationVersion: 0.2.0

0 commit comments

Comments
 (0)