Skip to content

Commit c278d4f

Browse files
committed
fix file names
1 parent d6e6120 commit c278d4f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

AcceptanceTests/ExecCmdLineArgumentTest.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ public void RunExecViaCommandLine()
1919
fixture.Repository.MakeATaggedCommit(TaggedVersion);
2020
fixture.Repository.MakeACommit();
2121

22-
var buildFile = Path.Combine(fixture.RepositoryPath, "TestBuildFile.proj");
22+
var buildFile = Path.Combine(fixture.RepositoryPath, "RunExecViaCommandLine.proj");
23+
File.Delete(buildFile);
2324
var buildFileContent = @"<?xml version=""1.0"" encoding=""utf-8""?>
2425
<Project xmlns=""http://schemas.microsoft.com/developer/msbuild/2003"">
2526
<Target Name=""OutputResults"">

AcceptanceTests/MsBuildProjectArgTest.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ public void RunsMsBuildProvideViaCommandLineArg()
1616
{
1717
fixture.Repository.MakeATaggedCommit(TaggedVersion);
1818

19-
var buildFile = Path.Combine(fixture.RepositoryPath, "TestBuildFile.proj");
19+
var buildFile = Path.Combine(fixture.RepositoryPath, "RunsMsBuildProvideViaCommandLineArg.proj");
20+
File.Delete(buildFile);
2021
var buildFileContent = @"<?xml version=""1.0"" encoding=""utf-8""?>
2122
<Project xmlns=""http://schemas.microsoft.com/developer/msbuild/2003"">
2223
<Target Name=""OutputResults"">

0 commit comments

Comments
 (0)