Skip to content

Commit 92e2e02

Browse files
committed
local doc
1 parent 2b7962f commit 92e2e02

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,7 @@ obj/
66
.fsdocs/
77
output/
88
tmp/
9-
DocsGenerated/
9+
DocsGenerated/
10+
11+
# needed FSharp.Formatting. It will be generated by after build action:
12+
Docs/index.md

Rhino.Scripting.Fsharp.fsproj

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,4 +96,9 @@
9696
<WriteLinesToFile File="./bin/ChangelogVersion.txt" Lines="@(CurrentReleaseChangelog)" Overwrite="true" ContinueOnError="false" />
9797
</Target>
9898

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+
99104
</Project>

0 commit comments

Comments
 (0)