Changing the IProject OutputPath property to FullOutputPath.

This commit is contained in:
Livar Cunha 2016-10-24 14:47:05 -07:00
parent d61ebd3087
commit 1506bf3bf2
4 changed files with 4 additions and 4 deletions

View file

@ -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; }
} }

View file

@ -39,7 +39,7 @@ namespace Microsoft.DotNet.Cli.Utils
} }
} }
public string OutputPath public string FullOutputPath
{ {
get get
{ {

View file

@ -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))
{ {

View file

@ -67,7 +67,7 @@ namespace Microsoft.DotNet.Cli.Utils
} }
} }
public string OutputPath public string FullOutputPath
{ {
get get
{ {