Skip to content

Commit

Permalink
Initial work on integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
devlead committed Sep 17, 2019
1 parent e6a44e1 commit d5d9fca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,8 @@ Task("Run-Integration-Tests")
.DeferOnError()
.DoesForEach(
()=> new[] {
GetFiles($"{parameters.Paths.Directories.IntegrationTestsBinTool.FullPath}/**/Cake.dll").Single(),
GetFiles($"{parameters.Paths.Directories.IntegrationTestsBinTool.FullPath}/**/netcoreapp2.1/**/Cake.dll").Single(),
GetFiles($"{parameters.Paths.Directories.IntegrationTestsBinTool.FullPath}/**/netcoreapp3.0/**/Cake.dll").Single(),
parameters.Paths.Directories.IntegrationTestsBinFullFx.CombineWithFilePath("Cake.exe"),
parameters.Paths.Directories.IntegrationTestsBinNetCore.CombineWithFilePath("Cake.dll")
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Task("Cake.Common.Tools.TextTransform.TextTransformAliases.TransformTemplate.Set
var t4Path = Context.Tools.Resolve("t4") ?? Context.Tools.Resolve("t4.exe");
if (t4Path == null)
{
DotNetCoreTool(null, "tool", "install --tool-path ./tools dotnet-t4 --version 2.0.2");
DotNetCoreTool(null, "tool", "install --tool-path ./tools dotnet-t4 --version 2.0.5");
}
});

Expand Down

0 comments on commit d5d9fca

Please sign in to comment.