File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change 5
5
# GitHub doesn't pull in submodules by default when mounting
6
6
# the repo directory on the container so we do this post-create
7
7
git submodule update --init --recursive
8
+
8
9
# Install SDK and tool dependencies before container starts
9
10
# Also run the full restore on the repo so that go-to definition
10
11
# and other language features will be available in C# files
11
12
./restore.sh
13
+
14
+ # Add .NET Dev Certs to environment to facilitate debugging.
15
+ # Do **NOT** do this in a public base image as all images inheriting
16
+ # from the base image would inherit these dev certs as well.
17
+ dotnet dev-certs https
18
+
12
19
# The container creation script is executed in a new Bash instance
13
20
# so we exit at the end to avoid the creation process lingering.
14
21
exit
You can’t perform that action at this time.
0 commit comments