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 97e080f commit 8683582Copy full SHA for 8683582
Content/Library/build/build.fs
@@ -34,8 +34,10 @@ let environVarAsBoolOrDefault varName defaultValue =
34
//-----------------------------------------------------------------------------
35
36
let rootDirectory =
37
- __SOURCE_DIRECTORY__
38
- </> ".."
+ IO.Path.GetFullPath(
+ __SOURCE_DIRECTORY__
39
+ </> ".."
40
+ )
41
42
let productName = "MyLib.1"
43
@@ -121,6 +123,7 @@ let changelogPath =
121
123
rootDirectory
122
124
</> changelogFile
125
126
+
127
let changelog = Fake.Core.Changelog.load changelogPath
128
129
let mutable latestEntry =
0 commit comments