Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ jobs:
linux-pester:
needs: linux-build
strategy:
fail-fast: false
matrix:
group: [dsc, adapters, extensions, resources]
runs-on: ubuntu-latest
Expand Down Expand Up @@ -80,6 +81,7 @@ jobs:
macos-pester:
needs: macos-build
strategy:
fail-fast: false
matrix:
group: [dsc, adapters, extensions, resources]
runs-on: macos-latest
Expand Down Expand Up @@ -124,6 +126,7 @@ jobs:
windows-pester:
needs: windows-build
strategy:
fail-fast: false
matrix:
group: [dsc, adapters, extensions, resources]
runs-on: windows-latest
Expand Down
4 changes: 4 additions & 0 deletions .vscode/schemas/build.data.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$ref": "./definitions.json#/$defs/BuildDataFile"
}
296 changes: 296 additions & 0 deletions .vscode/schemas/definitions.json

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions .vscode/schemas/project.data.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$ref": "./definitions.json#/$defs/ProjectDataFile"
}
8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@
{
"fileMatch": ["**/*.dsc.resource.json"],
"url": "/schemas/v3/bundled/resource/manifest.vscode.json"
},
{
"fileMatch": ["build.data.json"],
"url": "./.vscode/schemas/build.data.json"
},
{
"fileMatch": ["**/.project.data.json"],
"url": "./.vscode/schemas/project.data.json"
}
],
"yaml.schemas": {
Expand Down
17 changes: 17 additions & 0 deletions adapters/powershell/.project.data.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"Name": "powershell-adapter",
"Kind": "Adapter",
"CopyFiles": {
"All": [
"psDscAdapter/powershell.resource.ps1",
"psDscAdapter/psDscAdapter.psd1",
"psDscAdapter/psDscAdapter.psm1",
"powershell.dsc.resource.json"
],
"Windows": [
"psDscAdapter/win_psDscAdapter.psd1",
"psDscAdapter/win_psDscAdapter.psm1",
"windowspowershell.dsc.resource.json"
]
}
}
13 changes: 13 additions & 0 deletions adapters/wmi/.project.data.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"Name": "wmi",
"Kind": "Adapter",
"SupportedPlatformOS": "Windows",
"CopyFiles": {
"Windows": [
"wmi.resource.ps1",
"wmiAdapter.psd1",
"wmiAdapter.psm1",
"wmi.dsc.resource.json"
]
}
}
Loading