Skip to content

Commit 98edcf4

Browse files
committed
fix file names in tests
1 parent c278d4f commit 98edcf4

File tree

5 files changed

+2
-13
lines changed

5 files changed

+2
-13
lines changed

AcceptanceTests/ExecCmdLineArgumentTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public void RunExecViaCommandLine()
2828
</Target>
2929
</Project>";
3030
File.WriteAllText(buildFile, buildFileContent);
31-
var result = GitVersionHelper.ExecuteIn(fixture.RepositoryPath, MsBuild, "TestBuildFile.proj /target:OutputResults");
31+
var result = GitVersionHelper.ExecuteIn(fixture.RepositoryPath, MsBuild, "RunExecViaCommandLine.proj /target:OutputResults");
3232

3333
result.ExitCode.ShouldBe(0);
3434
result.Log.ShouldContain("GitVersion_FullSemVer: 1.2.4+1");

AcceptanceTests/MsBuildProjectArgTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public void RunsMsBuildProvideViaCommandLineArg()
2525
</Target>
2626
</Project>";
2727
File.WriteAllText(buildFile, buildFileContent);
28-
var result = GitVersionHelper.ExecuteIn(fixture.RepositoryPath, projectFile: "TestBuildFile.proj", projectArgs: "/target:OutputResults");
28+
var result = GitVersionHelper.ExecuteIn(fixture.RepositoryPath, projectFile: "RunsMsBuildProvideViaCommandLineArg.proj", projectArgs: "/target:OutputResults");
2929

3030
result.ExitCode.ShouldBe(0);
3131
result.Log.ShouldContain("FullSemVer: 1.2.3+0");

GitVersionCore/AssemblyInfo.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,9 @@
22
using System.Runtime.CompilerServices;
33

44
[assembly: AssemblyTitle("GitVersionCore")]
5-
[assembly: AssemblyDescription("")]
6-
[assembly: AssemblyConfiguration("")]
75
[assembly: AssemblyProduct("GitVersion")]
8-
96
[assembly: AssemblyVersion("1.0.0.0")]
107
[assembly: AssemblyFileVersion("1.0.0.0")]
11-
128
[assembly: InternalsVisibleTo("Tests")]
139
[assembly: InternalsVisibleTo("GitVersion")]
1410
[assembly: InternalsVisibleTo("AcceptanceTests")]

GitVersionExe/AssemblyInfo.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,8 @@
22
using System.Runtime.CompilerServices;
33

44
[assembly: AssemblyTitle("GitVersion")]
5-
[assembly: AssemblyDescription("")]
6-
[assembly: AssemblyConfiguration("")]
75
[assembly: AssemblyProduct("GitVersion")]
8-
96
[assembly: AssemblyVersion("1.0.0.0")]
107
[assembly: AssemblyFileVersion("1.0.0.0")]
11-
128
[assembly: InternalsVisibleTo("Tests")]
139
[assembly: InternalsVisibleTo("AcceptanceTests")]

GitVersionTask/AssemblyInfo.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
using System.Reflection;
22

33
[assembly: AssemblyTitle("GitVersionTask")]
4-
[assembly: AssemblyDescription("")]
5-
[assembly: AssemblyConfiguration("")]
64
[assembly: AssemblyProduct("GitVersionTask")]
7-
85
[assembly: AssemblyVersion("1.0.0.0")]
96
[assembly: AssemblyFileVersion("1.0.0.0")]

0 commit comments

Comments
 (0)