Guest User

Untitled

a guest
Nov 19th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. Task("Test")
  2. .IsDependentOn("Build")
  3. .Does(() =>
  4. {
  5. foreach(var project in GetFiles("./tests/**/*.csproj"))
  6. {
  7. DotNetCoreTest(
  8. project.GetDirectory().FullPath,
  9. new DotNetCoreTestSettings()
  10. {
  11. Configuration = configuration
  12. });
  13. }
  14. });
Add Comment
Please, Sign In to add comment