-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix webroot argument that somehow corrupted the following environment…
… argument.
- Loading branch information
1 parent
7a3ecb6
commit e70011d
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -148,7 +148,7 @@ public async Task<Uri> StartUpAsync() | |
argumentsBuilder = argumentsBuilder | ||
.Add("--urls").Add(url) | ||
.Add("--contentRoot").Add(_contentRootPath) | ||
.Add("--webroot=").Add(Path.Combine(_contentRootPath, "wwwroot")) | ||
.Add("--webroot=" + Path.Combine(_contentRootPath, "wwwroot")) | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
sarahelsaig
Author
Member
|
||
.Add("--environment").Add("Development"); | ||
|
||
if (!useExeToExecuteApp) argumentsBuilder = argumentsBuilder.Add(_configuration.AppAssemblyPath); | ||
|
Why does this one parameter use an
=
sign when the rest of them don't?