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
/// Buildtask for setting a prerelease tag (also sets the mutable isPrerelease to true, and the PackagePrereleaseTag of all project infos accordingly.)
Copy file name to clipboardExpand all lines: Content/ProjectInfo.fs
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
openFake.Core
4
4
5
-
#if(individuaPackageVersions)
5
+
#if(individual-package-versions)
6
6
7
7
/// Contains relevant information about a project (e.g. version info, project location)
8
8
typeProjectInfo={
@@ -51,13 +51,13 @@ type ProjectInfo = {
51
51
}
52
52
53
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("","","")
54
+
letCoreProject= ProjectInfo.create("","","")
55
55
56
56
letprojects=
57
57
[
58
58
// add relative paths (from project root) to your projects here, including individual reslease notes files
59
59
// e.g. ProjectInfo.create("MyProject", "src/MyProject/MyProject.fsproj", "src/MyProject/RELEASE_NOTES.md")
60
-
coreProject
60
+
CoreProject
61
61
]
62
62
63
63
#endif
@@ -67,7 +67,7 @@ let project = "{PROJECTNAME}"
67
67
lettestProjects=
68
68
[
69
69
// add relative paths (from project root) to your testprojects here
70
-
#if(individuaPackageVersions)
70
+
#if(individual-package-versions)
71
71
// e.g. ProjectInfo.create("MyTestProject", "tests/MyTestProject/MyTestProject.fsproj")
72
72
#endif
73
73
]
@@ -84,7 +84,7 @@ let projectRepo = $"https://github.com/{gitOwner}/{project}"
84
84
85
85
letpkgDir="pkg"
86
86
87
-
#if(individuaPackageVersions)
87
+
#if(individual-package-versions)
88
88
89
89
/// docs are always targeting the version of the core project
0 commit comments