Skip to content

Commit 5c28844

Browse files
committed
how did the builds use to work...
1 parent aafd1a4 commit 5c28844

File tree

1 file changed

+8
-11
lines changed

1 file changed

+8
-11
lines changed

build.fsx

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ Target.create "Package" (fun ctx ->
6666
DotNet.pack (fun c ->
6767
{ c with
6868
Configuration = configuration (ctx.Context.AllExecutingTargets)
69+
OutputPath = Some "./.nupkg"
6970
Common = c.Common |> DotNet.Options.withAdditionalArgs args }) sln)
7071

7172
Target.create "PackageVersion" (fun _ ->
@@ -94,20 +95,16 @@ Target.create "RunAnalyzer" (fun ctx ->
9495
Target.create "Default" ignore
9596
Target.create "Release" ignore
9697

97-
"Clean"
98-
==> "Restore"
99-
==> "Build"
100-
==> "Default"
98+
"Clean" ==> "Restore" ==> "Build" ==> "Default"
10199

102100
"Default"
103-
==> "Publish"
104-
==> "Test"
105-
==> "Package"
106-
==> "Changelog"
107-
==> "Release"
101+
"Default"
102+
"Default"
103+
"Default" ==> "Publish" ==> "Test" ==> "Package" ==> "Changelog" ==> "Release"
108104

109105
"Default"
110-
==> "Publish"
111-
==> "RunAnalyzer"
106+
"Default"
107+
"Default"
108+
"Default" ==> "Publish" ==> "RunAnalyzer"
112109

113110
Target.runOrDefault "Default"

0 commit comments

Comments
 (0)