@@ -24,10 +24,6 @@ open Fake.Tools
2424open System
2525open System.IO
2626
27- // --------------------------------------------------------------------------------------
28- // START TODO: Provide project-specific details below
29- // --------------------------------------------------------------------------------------
30-
3127// The name of the project
3228// (used by attributes in AssemblyInfo, name of a NuGet package and directory in 'src')
3329let project = " src/FSharp.Control.AsyncSeq"
@@ -45,8 +41,8 @@ let projectRepo = "https://github.com/fsprojects/FSharp.Control.AsyncSeq"
4541
4642let configuration = DotNet.BuildConfiguration.fromEnvironVarOrDefault " configuration" DotNet.BuildConfiguration.Release
4743
48- // Folder to deposit deploy artifacts
49- let artifactsDir = __ SOURCE_ DIRECTORY__ @@ " artifacts "
44+ // Folder to deposit deploy bin
45+ let binDir = __ SOURCE_ DIRECTORY__ @@ " bin "
5046
5147// Read additional information from the release notes document
5248let release = ReleaseNotes.load " RELEASE_NOTES.md"
@@ -64,7 +60,7 @@ let versionPropsTemplate = $"\
6460
6561Target.create " Clean" ( fun _ ->
6662 DotNet.exec id " clean" " " |> ignore
67- Shell.cleanDirs [ " artifacts " ; " temp" ]
63+ Shell.cleanDirs [ " bin " ; " temp" ]
6864)
6965
7066// Generate assembly info files with the right version & up-to-date information
@@ -117,7 +113,7 @@ Target.create "Pack" (fun _ ->
117113 File.WriteAllText( " version.props" , versionPropsTemplate)
118114 DotNet.pack ( fun pack ->
119115 { pack with
120- OutputPath = Some artifactsDir
116+ OutputPath = Some binDir
121117 Configuration = configuration
122118 }) solutionFile
123119)
@@ -138,7 +134,7 @@ Target.create "All" ignore
138134" Clean"
139135 ==> " Build"
140136 ==> " Test"
141- ==> " NuGet "
137+ ==> " Pack "
142138 ==> " All"
143139
144140" Clean"
0 commit comments