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 2b7962f commit 92e2e02Copy full SHA for 92e2e02
.gitignore
@@ -6,4 +6,7 @@ obj/
6
.fsdocs/
7
output/
8
tmp/
9
-DocsGenerated/
+DocsGenerated/
10
+
11
+# needed FSharp.Formatting. It will be generated by after build action:
12
+Docs/index.md
Rhino.Scripting.Fsharp.fsproj
@@ -96,4 +96,9 @@
96
<WriteLinesToFile File="./bin/ChangelogVersion.txt" Lines="@(CurrentReleaseChangelog)" Overwrite="true" ContinueOnError="false" />
97
</Target>
98
99
+ <Target Name="CopyReadmeToDocs" AfterTargets="Build">
100
+ <!-- for fsdocs to build locally -->
101
+ <Copy SourceFiles="./README.md" DestinationFiles="./Docs/index.md" ContinueOnError="false"/>
102
+ </Target>
103
104
</Project>
0 commit comments