Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShreyas Jejurkar <shreyasjejurkar123@live.com>2021-04-06 02:56:05 +0300
committerGitHub <noreply@github.com>2021-04-06 02:56:05 +0300
commitae8b2c2e36a20b5d116c4af45eea41d081755a76 (patch)
treeaefc790042284238fcba1058bb2de0f89a91cb3e /omnisharp.json
parent79b419c40c36054bd25b5ad382aab06de4222691 (diff)
Added VSCode debugging (for MvcSandbox) & code analysis support (#29486)
* Added VSCode debugging support for MvcSandbox * Added ignored vscode folders * 1. Convered some more projects. 2. Added env variable for TargetFramework and used it in launch.json file rather than hardcoding TFW. * Addressed PR feedback. 1. Removed extensions.json 2. Updated BuildFromSource.md for Vscode instructions. 3. Added launch settings for BasicTestApp. * Addressed PR feedback!
Diffstat (limited to 'omnisharp.json')
-rw-r--r--omnisharp.json27
1 files changed, 27 insertions, 0 deletions
diff --git a/omnisharp.json b/omnisharp.json
new file mode 100644
index 0000000000..4c69db8efd
--- /dev/null
+++ b/omnisharp.json
@@ -0,0 +1,27 @@
+{
+ "RoslynExtensionsOptions": {
+ "enableAnalyzersSupport": true
+ },
+ "FormattingOptions": {
+ "enableEditorConfigSupport": true
+ },
+ "RenameOptions": {
+ "RenameInComments": true,
+ "RenameOverloads": true,
+ "RenameInStrings": true
+ },
+ "msbuild": {
+ "MSBuildSDKsPath": ".\\.dotnet",
+ "EnablePackageAutoRestore": true,
+ "loadProjectsOnDemand": true
+ },
+ "fileOptions": {
+ "systemExcludeSearchPatterns": [
+ "**/node_modules/**/*",
+ "**/bin/**/*",
+ "**/obj/**/*",
+ "**/node_modules/**/*"
+ ],
+ "excludeSearchPatterns": []
+ }
+}