mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-04-21 05:29:39 +00:00
33 lines
801 B
JSON
33 lines
801 B
JSON
{
|
|
"dotnet.defaultSolution": "SharpCompress.sln",
|
|
"files.exclude": {
|
|
"**/bin": true,
|
|
"**/obj": true
|
|
},
|
|
"files.watcherExclude": {
|
|
"**/bin/**": true,
|
|
"**/obj/**": true,
|
|
"**/artifacts/**": true
|
|
},
|
|
"search.exclude": {
|
|
"**/bin": true,
|
|
"**/obj": true,
|
|
"**/artifacts": true
|
|
},
|
|
"editor.formatOnSave": false,
|
|
"[csharp]": {
|
|
"editor.defaultFormatter": "csharpier.csharpier-vscode",
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll": "explicit"
|
|
}
|
|
},
|
|
"csharpier.enableDebugLogs": false,
|
|
"omnisharp.enableRoslynAnalyzers": true,
|
|
"omnisharp.enableEditorConfigSupport": true,
|
|
"dotnet-test-explorer.testProjectPath": "tests/**/*.csproj",
|
|
"chat.tools.terminal.autoApprove": {
|
|
"dotnet csharpier": true
|
|
}
|
|
}
|