Skip to content

Commit

Permalink
We now use PathHelper.NormalizeDirectory() to get the correct seperat…
Browse files Browse the repository at this point in the history
…ors including a trailing one.
  • Loading branch information
tomspilman committed Aug 9, 2013
1 parent afe277e commit d1d26f8
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ public PipelineManager(string projectDir, string outputDir, string intermediateD
Assemblies.Add(null);
Logger = new PipelineBuildLogger();

ProjectDirectory = PathHelper.Normalize(projectDir + Path.DirectorySeparatorChar);
OutputDirectory = PathHelper.Normalize(outputDir + Path.DirectorySeparatorChar);
IntermediateDirectory = PathHelper.Normalize(intermediateDir + Path.DirectorySeparatorChar);
ProjectDirectory = PathHelper.NormalizeDirectory(projectDir);
OutputDirectory = PathHelper.NormalizeDirectory(outputDir);
IntermediateDirectory = PathHelper.NormalizeDirectory(intermediateDir);
}

public void AddAssembly(string assemblyFilePath)
Expand Down

0 comments on commit d1d26f8

Please sign in to comment.