Skip to content

Commit f471403

Browse files
committed
Set Roslyn.sln as the default solution on unix
1 parent e041ae9 commit f471403

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.devcontainer/devcontainer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"*.yml": "azure-pipelines"
3333
},
3434
// ms-dotnettools.csharp settings
35-
"omnisharp.defaultLaunchSolution": "Compilers.sln",
35+
"omnisharp.defaultLaunchSolution": "Roslyn.sln",
3636
"omnisharp.disableMSBuildDiagnosticWarning": true,
3737
"omnisharp.enableEditorConfigSupport": true,
3838
"omnisharp.enableImportCompletion": true,

.vscode/settings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"*.yml": "azure-pipelines"
2323
},
2424
// ms-dotnettools.csharp settings
25-
"omnisharp.defaultLaunchSolution": "Compilers.sln",
25+
"omnisharp.defaultLaunchSolution": "Roslyn.sln",
2626
"omnisharp.disableMSBuildDiagnosticWarning": true,
2727
"omnisharp.enableEditorConfigSupport": true,
2828
"omnisharp.enableImportCompletion": true,

build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ while [[ -h $source ]]; do
1313
done
1414

1515
scriptroot="$( cd -P "$( dirname "$source" )" && pwd )"
16-
"$scriptroot/eng/build.sh" --build $@
16+
"$scriptroot/eng/build.sh" --build --solution Roslyn.sln $@

restore.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ while [[ -h $source ]]; do
1313
done
1414

1515
scriptroot="$( cd -P "$( dirname "$source" )" && pwd )"
16-
"$scriptroot/eng/build.sh" --restore $@
16+
"$scriptroot/eng/build.sh" --restore --solution Roslyn.sln $@

0 commit comments

Comments
 (0)