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 f985896 commit f73ab8bCopy full SHA for f73ab8b
build.fsx
@@ -39,6 +39,8 @@ Target "Pack" <| fun _ -> ()
39
40
Target "PublishNuget" <| fun _ -> publishNugetPackages solution
41
42
+Target "PublishUnity" <| fun _ -> ()
43
+
44
Target "Publish" <| fun _ -> ()
45
46
Target "CI" <| fun _ -> ()
@@ -57,10 +59,11 @@ Target "Help" <| fun _ ->
57
59
let isPublishOnly = getBuildParam "publishonly"
58
60
61
"Build" ==> "PackNuget" =?> ("PublishNuget", isPublishOnly = "")
-"Build" ==> "PackUnity"
62
+"Build" ==> "PackUnity" =?> ("PublishUnity", isPublishOnly = "")
63
"PackNuget" ==> "Pack"
64
"PackUnity" ==> "Pack"
65
"PublishNuget" ==> "Publish"
66
+"PublishUnity" ==> "Publish"
67
68
"Test" ==> "CI"
69
"Cover" ==> "CI"
0 commit comments