We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70d100e commit 5af7aacCopy full SHA for 5af7aac
tools/build.fsx
@@ -42,6 +42,14 @@ Target.create "Build" (fun _ ->
42
}) solutionFile
43
)
44
45
+Target.create "Test" (fun _ ->
46
+ DotNet.test (fun c ->
47
+ { c with
48
+ NoBuild = true
49
+ Configuration = DotNet.BuildConfiguration.Release
50
+ }) solutionFile
51
+)
52
+
53
Target.create "Package" (fun _ ->
54
DotNet.pack (fun c ->
55
{ c with
@@ -58,10 +66,12 @@ open Fake.Core.TargetOperators
58
66
59
67
"Clean"
60
68
==> "Build"
69
+ ==> "Test"
61
70
==> "Default"
62
71
63
72
64
73
74
65
75
==> "Package"
76
77
// start build
0 commit comments