File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ function RegisterExtractorPack(id)
16
16
-- For now, parse the command line as follows:
17
17
-- Everything that starts with `-` (or `/`) will be ignored.
18
18
-- The first non-option argument is treated as the command.
19
- -- if that's `build`, we append `/ p:UseSharedCompilation=false` to the command line,
19
+ -- if that's `build`, we append `- p:UseSharedCompilation=false` to the command line,
20
20
-- otherwise we do nothing.
21
21
local match = false
22
22
local needsSeparator = false ;
@@ -37,7 +37,7 @@ function RegisterExtractorPack(id)
37
37
break
38
38
end
39
39
if arg == ' run' then
40
- -- for `dotnet run`, we need to make sure that `/ p:UseSharedCompilation=false` is
40
+ -- for `dotnet run`, we need to make sure that `- p:UseSharedCompilation=false` is
41
41
-- not passed in as an argument to the program that is run
42
42
match = true
43
43
needsSeparator = true
@@ -49,7 +49,7 @@ function RegisterExtractorPack(id)
49
49
end
50
50
end
51
51
if match then
52
- local injections = { ' / p:UseSharedCompilation=false' }
52
+ local injections = { ' - p:UseSharedCompilation=false' }
53
53
if needsSeparator then
54
54
table.insert (injections , ' --' )
55
55
end
You can’t perform that action at this time.
0 commit comments