Merge pull request #5014 from dotnet/shanselman-patch-1

projetfactory -> "projectfactory"
This commit is contained in:
Livar 2016-12-13 16:35:02 -08:00 committed by GitHub
commit 0caae96daf

View file

@ -37,11 +37,11 @@ namespace Microsoft.DotNet.Cli.Utils
Path.Combine(AppContext.BaseDirectory, "MSBuild.dll") : Path.Combine(AppContext.BaseDirectory, "MSBuild.dll") :
msBuildExePath; msBuildExePath;
Reporter.Verbose.WriteLine($"projetfactory: MSBUILD_EXE_PATH = {msBuildExePath}"); Reporter.Verbose.WriteLine($"projectfactory: MSBUILD_EXE_PATH = {msBuildExePath}");
string msBuildProjectPath = GetMSBuildProjPath(projectDirectory); string msBuildProjectPath = GetMSBuildProjPath(projectDirectory);
Reporter.Verbose.WriteLine($"projetfactory: MSBuild project path = {msBuildProjectPath}"); Reporter.Verbose.WriteLine($"projectfactory: MSBuild project path = {msBuildProjectPath}");
if(msBuildProjectPath == null) if(msBuildProjectPath == null)
{ {
@ -79,4 +79,4 @@ namespace Microsoft.DotNet.Cli.Utils
return projectFiles.First(); return projectFiles.First();
} }
} }
} }