We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf9c11d commit 24278e8Copy full SHA for 24278e8
build/build.fsx
@@ -42,14 +42,14 @@ Target "BuildApp" (fun _ ->
42
]
43
44
MSBuild null "Rebuild" msbuildProperties (seq { yield "src/Elasticsearch.sln" })
45
- gitLink()
+ if not isMono then gitLink()
46
47
//moves all the release builds to build/output/PROJECTNAME
48
!! "src/**/*.csproj"
49
|> Seq.map(fun f -> (f, buildDir + directoryInfo(f).Name.Replace(".csproj", "")))
50
|> Seq.iter(fun (f,d) ->
51
CreateDir d
52
- CopyDir d (directoryInfo(f).Parent.FullName + @"\bin\Release") allFiles
+ CopyDir d (directoryInfo(f).Parent.FullName + @"/bin/Release") allFiles
53
)
54
55
//Scan for xml docs and patch them to replace <inheritdoc /> with the documentation
0 commit comments