Skip to content

Commit 75ea45d

Browse files
authored
Pass "--no-restore" to smoke-test "dotnet new" (#868)
1 parent 0cc1797 commit 75ea45d

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

smoke-test.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,13 @@ function doCommand() {
133133

134134
newArgs="new $proj -lang $lang"
135135

136+
# XXX temporary workaround XXX
137+
# this is a temporary workaround before templates are updated to use netcoreapp3.0.
138+
# see issue https://github.com/dotnet/source-build/issues/635 for more details.
139+
# This part ensures packages won't fail to restore before we can edit the csproj.
140+
newArgs="$newArgs --no-restore"
141+
# XXX temporary workaround XXX
142+
136143
while :; do
137144
if [ $# -le 0 ]; then
138145
break

0 commit comments

Comments
 (0)