forked from dotnet/vscode-csharp
-
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.
- Loading branch information
Showing
473 changed files
with
4,023 additions
and
1,342 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
{ | ||
"hydrated": true, | ||
"properties": { | ||
"helpUri": "https://eng.ms/docs/microsoft-security/security/azure-security/cloudai-security-fundamentals-engineering/security-integration/guardian-wiki/microsoft-guardian/general/baselines" | ||
"helpUri": "https://eng.ms/docs/microsoft-security/security/azure-security/cloudai-security-fundamentals-engineering/security-integration/guardian-wiki/microsoft-guardian/general/baselines", | ||
"hydrationStatus": "This file contains identifying data. It is **NOT** safe to check into your repo. To dehydrate this file, run `guardian dehydrate --help` and follow the guidance." | ||
}, | ||
"version": "1.0.0", | ||
"baselines": { | ||
"default": { | ||
"name": "default", | ||
"createdDate": "2024-03-18 18:32:58Z", | ||
"lastUpdatedDate": "2024-03-18 18:32:58Z" | ||
"createdDate": "2024-09-09 19:35:36Z", | ||
"lastUpdatedDate": "2024-09-09 19:35:36Z" | ||
} | ||
}, | ||
"results": { | ||
"d6ffb0614846153cf3cc5936d0444ed9eda6fe6854febb4c8ea59243c120b223": { | ||
"signature": "d6ffb0614846153cf3cc5936d0444ed9eda6fe6854febb4c8ea59243c120b223", | ||
"26445e3e484940d2d58c2ffc32ab3895fca4b1589d66e2f2dee2fa01f2c479fb": { | ||
"signature": "26445e3e484940d2d58c2ffc32ab3895fca4b1589d66e2f2dee2fa01f2c479fb", | ||
"alternativeSignatures": [], | ||
"target": "omnisharptest/omnisharpUnitTests/testAssets/private.pem", | ||
"target": "test/omnisharp/omnisharpUnitTests/testAssets/private.pem", | ||
"line": 1, | ||
"memberOf": [ | ||
"default" | ||
], | ||
"tool": "credscan", | ||
"ruleId": "CSCAN-GENERAL0020", | ||
"createdDate": "2024-06-27 21:30:23Z", | ||
"expirationDate": "2024-12-14 21:44:58Z", | ||
"justification": "This error is baselined with an expiration date of 180 days from 2024-06-27 21:44:58Z" | ||
"createdDate": "2024-09-09 19:35:36Z" | ||
} | ||
} | ||
} | ||
} |
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,9 @@ | ||
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.192.0/containers/dotnet/.devcontainer/base.Dockerfile | ||
|
||
FROM mcr.microsoft.com/dotnet/sdk:8.0 | ||
|
||
# Set up machine requirements to build the repo | ||
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ | ||
&& apt-get -y install --no-install-recommends curl git gnupg \ | ||
&& curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \ | ||
&& apt-get install -y nodejs |
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,56 @@ | ||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at: | ||
// https://github.com/microsoft/vscode-dev-containers/tree/v0.140.1/containers/dotnetcore | ||
{ | ||
"name": "vscode-csharp", | ||
"build": { | ||
"dockerfile": "Dockerfile", | ||
// Set the context to the workspace folder to allow us to copy files from it. | ||
"context": ".." | ||
}, | ||
"customizations": { | ||
"vscode": { | ||
"settings": { | ||
"files.associations": { | ||
"*.csproj": "msbuild", | ||
"*.fsproj": "msbuild", | ||
"*.globalconfig": "ini", | ||
"*.manifest": "xml", | ||
"*.nuspec": "xml", | ||
"*.pkgdef": "ini", | ||
"*.projitems": "msbuild", | ||
"*.props": "msbuild", | ||
"*.resx": "xml", | ||
"*.rsp": "Powershell", | ||
"*.ruleset": "xml", | ||
"*.settings": "xml", | ||
"*.shproj": "msbuild", | ||
"*.slnf": "json", | ||
"*.targets": "msbuild", | ||
"*.vbproj": "msbuild", | ||
"*.vsixmanifest": "xml", | ||
"*.vstemplate": "xml", | ||
"*.xlf": "xml", | ||
"*.yml": "azure-pipelines" | ||
}, | ||
// ms-vscode.powershell settings | ||
"powershell.promptToUpdatePowerShell": false, | ||
"powershell.integratedConsole.showOnStartup": false, | ||
"powershell.startAutomatically": false, | ||
// ms-azure-devops.azure-pipelines settings | ||
"azure-pipelines.customSchemaFile": ".vscode/dnceng-schema.json" | ||
}, | ||
"extensions": [ | ||
"ms-dotnettools.csharp", | ||
"ms-dotnettools.csdevkit", | ||
"EditorConfig.EditorConfig", | ||
"ms-vscode.powershell", | ||
"tintoy.msbuild-project-tools", | ||
"ms-azure-devops.azure-pipelines", | ||
"dbaeumer.vscode-eslint", | ||
"esbenp.prettier-vscode", | ||
"orta.vscode-jest" | ||
] | ||
} | ||
}, | ||
"postCreateCommand": "npm ci && npx gulp installDependencies" | ||
} |
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,7 @@ | ||
{ | ||
"run": [ | ||
{ | ||
"tool": "require-dotnetcoresdk" | ||
} | ||
] | ||
} |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
Oops, something went wrong.