Changing the IProject OutputPath property to FullOutputPath.
This commit is contained in:
parent
d61ebd3087
commit
1506bf3bf2
4 changed files with 4 additions and 4 deletions
|
@ -16,7 +16,7 @@ namespace Microsoft.DotNet.Cli.Utils
|
||||||
|
|
||||||
string RuntimeConfigJsonPath { get; }
|
string RuntimeConfigJsonPath { get; }
|
||||||
|
|
||||||
string OutputPath { get; }
|
string FullOutputPath { get; }
|
||||||
|
|
||||||
Dictionary<string, string> EnvironmentVariables { get; }
|
Dictionary<string, string> EnvironmentVariables { get; }
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,7 +39,7 @@ namespace Microsoft.DotNet.Cli.Utils
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public string OutputPath
|
public string FullOutputPath
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
|
|
|
@ -55,7 +55,7 @@ namespace Microsoft.DotNet.Cli.Utils
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
var buildOutputPath = project.OutputPath;
|
var buildOutputPath = project.FullOutputPath;
|
||||||
|
|
||||||
if (!Directory.Exists(buildOutputPath))
|
if (!Directory.Exists(buildOutputPath))
|
||||||
{
|
{
|
||||||
|
|
|
@ -67,7 +67,7 @@ namespace Microsoft.DotNet.Cli.Utils
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public string OutputPath
|
public string FullOutputPath
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue