File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 18
18
" ms-dotnettools.csharp"
19
19
],
20
20
21
+ "settings" : {
22
+ // Loading projects on demand is better for larger codebases
23
+ "omnisharp.enableMsBuildLoadProjectsOnDemand" : true
24
+ },
25
+
21
26
// Use 'postCreateCommand' to run commands after the container is created.
22
27
"onCreateCommand" : " bash -i ${containerWorkspaceFolder}/.devcontainer/scripts/container-creation.sh" ,
23
28
Original file line number Diff line number Diff line change 6
6
# the repo directory on the container so we do this post-create
7
7
git submodule update --init --recursive
8
8
# Install SDK and tool dependencies before container starts
9
- ./eng/build.sh --only-build-repo-tasks
9
+ # Also run the full restore on the repo so that go-to definition
10
+ # and other language features will be available in C# files
11
+ ./restore.sh
You can’t perform that action at this time.
0 commit comments