Skip to content

Commit 9bfbd7c

Browse files
committed
Modified build.fsx for new directory structure.
1 parent 8ecb6ff commit 9bfbd7c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build/build.fsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ let tempDir = artifactsDir @@ "tmp"
4141

4242
let slnFile =
4343
match isMono with
44-
| true -> srcDir @@ "CSharpDriver-Mono.sln"
45-
| false -> srcDir @@ "CSharpDriver.sln"
44+
| true -> baseDir @@ "CSharpDriver-Mono.sln"
45+
| false -> baseDir @@ "CSharpDriver.sln"
4646

4747
let asmFile = srcDir @@ "MongoDB.Shared" @@ "GlobalAssemblyInfo.cs"
4848
let apiDocsFile = baseDir @@ "Docs" @@ "Api" @@ "CSharpDriverDocs.shfbproj"
@@ -105,7 +105,7 @@ Target "AssemblyInfo" (fun _ ->
105105

106106
Target "Build" (fun _ ->
107107
!! "./**/packages.config"
108-
|> Seq.iter (RestorePackage (fun x -> { x with OutputPath = srcDir @@ "packages" }))
108+
|> Seq.iter (RestorePackage (fun x -> { x with OutputPath = baseDir @@ "packages" }))
109109

110110

111111
let mutable properties = ["Configuration", config

0 commit comments

Comments
 (0)