We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add versioning to ReadTheDocs of Firely .NET Docs.
Also try to have the API documentation in ReadTheDocs.
Make sure you have .NET SDK installed, then open a terminal and enter the following command to install the latest docfx:
dotnet tool update -g docfx
Use the following docfx.json:
docfx.json
{ "metadata":[ { "src": [ { "files": ["**/Hl7.Fhir*.csproj"], "exclude": ["**/obj/**", "**/bin/**", "**/BenchMarks/**", "**/Hl7.Fhir*Tests/**"], "src": "../src" } ], "dest": "api", "properties": { "TargetFramework": "netstandard2.0" } } ], "build": { "content": [{ "files": [ "api/*.yml" ] }] } }
Place the above json in folder <SDK-repo>\docfx_project
<SDK-repo>\docfx_project
Then run the following command:
docfx docfx_project/docfx.json --serve
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Add versioning to ReadTheDocs of Firely .NET Docs.
Also try to have the API documentation in ReadTheDocs.
Already done
Make sure you have .NET SDK installed, then open a terminal and enter the following command to install the latest docfx:
Use the following
docfx.json
:Place the above json in folder
<SDK-repo>\docfx_project
Then run the following command:
The text was updated successfully, but these errors were encountered: