Remove the 'exe' extension to enable tests to run on non-Windows platforms
This commit is contained in:
parent
09ad082913
commit
5106376cbb
|
|
@ -53,7 +53,7 @@ namespace Microsoft.AspNetCore.Server.Testing
|
|||
string executableArgs = string.Empty;
|
||||
if (DeploymentParameters.PublishApplicationBeforeDeployment)
|
||||
{
|
||||
executableName = Path.Combine(DeploymentParameters.PublishedApplicationRootPath, new DirectoryInfo(DeploymentParameters.ApplicationPath).Name + ".exe");
|
||||
executableName = Path.Combine(DeploymentParameters.PublishedApplicationRootPath, new DirectoryInfo(DeploymentParameters.ApplicationPath).Name);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue