-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,27 @@ | ||
# FsOboParser | ||
|
||
An OBO file format parser, written in F#. | ||
|
||
## Usage | ||
|
||
|
||
|
||
## Develop | ||
|
||
### Build (QuickStart) | ||
|
||
If not already done, install .NET SDK. | ||
|
||
In any shell, run `build.cmd <target>` where `<target>` may be | ||
- if `<target>` is empty, it just runs dotnet build after cleaning everything | ||
- `RunTests` to run unit tests | ||
- `RunTestsWithCodeCov` to run unit tests with code coverage | ||
- `ReleaseNotes semver:<version>` where `<version>` may be `major`, `minor`, or `patch` to update RELEASE_NOTES.md | ||
- `Pack` to create a NuGet release | ||
- `PackPrelease` to create a NuGet prerelease | ||
- `BuildDocs` to create docs | ||
- `BuildDocsPrerelease` to create prerelease docs | ||
- `WatchDocs` to create docs and run them locally | ||
- `WatchDocsPrelease` to create prerelease docs and run them locally | ||
- `PublishNuget` to create a NuGet release and publish it | ||
- `PublishNugetPrelease` to create a NuGet prerelease and publish it |