You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Content/ProjectInfo.fs
+27-2Lines changed: 27 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -50,10 +50,14 @@ type ProjectInfo = {
50
50
AssemblyInformationalVersion =""
51
51
}
52
52
53
-
letindividualProjects=
53
+
// adapt this to reflect the core project in your repository. The only effect this will have is the version displayed in the docs, as it is currently only possible to have one version displayed there.
54
+
letcoreProject= ProjectInfo.create("","","")
55
+
56
+
letprojects=
54
57
[
55
58
// add relative paths (from project root) to your projects here, including individual reslease notes files
56
59
// e.g. ProjectInfo.create("MyProject", "src/MyProject/MyProject.fsproj", "src/MyProject/RELEASE_NOTES.md")
60
+
coreProject
57
61
]
58
62
59
63
#endif
@@ -80,6 +84,25 @@ let projectRepo = $"https://github.com/{gitOwner}/{project}"
80
84
81
85
letpkgDir="pkg"
82
86
87
+
#if(individuaPackageVersions)
88
+
89
+
/// docs are always targeting the version of the core project
0 commit comments