@@ -117,7 +117,7 @@ Task("Artifacts-MsBuildCore-Test")
117
117
continue ;
118
118
}
119
119
120
- var cmd = $ "-file { rootPrefix } /scripts/Test-MsBuildCore.ps1 -version { version } -repoPath { rootPrefix } /repo/test /core -nugetPath { rootPrefix } /nuget -targetframework { targetframework } ";
120
+ var cmd = $ "-file { rootPrefix } /scripts/Test-MsBuildCore.ps1 -version { version } -repoPath { rootPrefix } /repo/tests/integration /core -nugetPath { rootPrefix } /nuget -targetframework { targetframework } ";
121
121
122
122
DockerTestArtifact ( dockerImage , parameters , cmd ) ;
123
123
}
@@ -141,7 +141,7 @@ Task("Artifacts-MsBuildFull-Test")
141
141
dotnetCoreMsBuildSettings . WithProperty ( "TargetFramework" , framework ) ;
142
142
dotnetCoreMsBuildSettings . WithProperty ( "GitVersionTaskVersion" , version ) ;
143
143
144
- var projPath = MakeAbsolute ( new DirectoryPath ( "./test /core" ) ) ;
144
+ var projPath = MakeAbsolute ( new DirectoryPath ( "./tests/integration /core" ) ) ;
145
145
146
146
DotNetCoreBuild ( projPath . FullPath , new DotNetCoreBuildSettings
147
147
{
@@ -151,7 +151,7 @@ Task("Artifacts-MsBuildFull-Test")
151
151
ArgumentCustomization = args => args . Append ( $ "--source { nugetSource } ")
152
152
} ) ;
153
153
154
- var netcoreExe = new DirectoryPath ( "./test /core/build" ) . Combine ( framework ) . CombineWithFilePath ( "app.dll" ) ;
154
+ var netcoreExe = new DirectoryPath ( "./tests/integration /core/build" ) . Combine ( framework ) . CombineWithFilePath ( "app.dll" ) ;
155
155
ValidateOutput ( "dotnet" , netcoreExe . FullPath , parameters . Version . GitVersion . FullSemVer ) ;
156
156
}
157
157
@@ -166,9 +166,9 @@ Task("Artifacts-MsBuildFull-Test")
166
166
msBuildSettings . WithProperty ( "GitVersionTaskVersion" , version ) ;
167
167
msBuildSettings . WithProperty ( "RestoreSource" , nugetSource ) ;
168
168
169
- MSBuild ( "./test /full" , msBuildSettings ) ;
169
+ MSBuild ( "./tests/integration /full" , msBuildSettings ) ;
170
170
171
- var fullExe = new DirectoryPath ( "./test /full/build" ) . CombineWithFilePath ( "app.exe" ) ;
171
+ var fullExe = new DirectoryPath ( "./tests/integration /full/build" ) . CombineWithFilePath ( "app.exe" ) ;
172
172
ValidateOutput ( fullExe . FullPath , null , parameters . Version . GitVersion . FullSemVer ) ;
173
173
} ) ;
174
174
0 commit comments