-
Notifications
You must be signed in to change notification settings - Fork 101
Naming fixes #114
New issue
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
Merged
Merged
Naming fixes #114
Changes from all commits
Commits
Show all changes
40 commits
Select commit
Hold shift + click to select a range
842e932
First batch of fixes
WhiteBlackGoose edeac3e
C# Extensions reverted
WhiteBlackGoose c180198
Working on chart extesions
WhiteBlackGoose acf2492
Chart extension case unification finished
WhiteBlackGoose 1d90f4a
Docs library added
WhiteBlackGoose 739ab30
Verification
WhiteBlackGoose a66f5ab
Project removed
WhiteBlackGoose 5deef60
Create verify-docs.yml
WhiteBlackGoose 26be7b5
Update build.fsx
WhiteBlackGoose 8bd761d
Update build.fsx
WhiteBlackGoose 445af46
Update build.fsx
WhiteBlackGoose d916014
Update build.fsx
WhiteBlackGoose 364b8cd
Update build.fsx
WhiteBlackGoose 7d79490
Update build.fsx
WhiteBlackGoose 87cb0c7
Update build.fsx
WhiteBlackGoose 8e97d0a
Update build.fsx
WhiteBlackGoose 305fa20
Update verify-docs.yml
WhiteBlackGoose 0410c0b
Update build.fsx
WhiteBlackGoose f81aa26
Update build.fsx
WhiteBlackGoose 0dec087
Update build.fsx
WhiteBlackGoose 7aef727
Update build.fsx
WhiteBlackGoose da8a975
More advanced verification algorithm
WhiteBlackGoose 4b2902c
Trying to fix verification script
WhiteBlackGoose 22b6394
Trying to fix..
WhiteBlackGoose 9416b76
Update build.fsx
WhiteBlackGoose 21850be
Update build.fsx
WhiteBlackGoose a5847fa
Update build.fsx
WhiteBlackGoose 8d02d34
Warning also prohibited
WhiteBlackGoose 8bb9362
Sorting
WhiteBlackGoose b25d636
Only counting the numeric part when sorting
WhiteBlackGoose 8eb0e30
with*_ -> with*
WhiteBlackGoose 8ad1bb0
Many fixes ; ignore unused variable wanring
WhiteBlackGoose 9196922
Combine -> combine
WhiteBlackGoose 67cac09
Generic chart extensions underscores and a few warnings fixed
WhiteBlackGoose 1360462
Playground revert ; more underscores removed
WhiteBlackGoose 2335931
VS Version revert
WhiteBlackGoose d8b4383
Merged
WhiteBlackGoose 223270d
Remaining errors fixed
WhiteBlackGoose c1aab1b
Docs fixed
WhiteBlackGoose 726d9dc
One arg reverted
WhiteBlackGoose File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| name: Verify docs | ||
|
|
||
| on: | ||
| push: | ||
| branches: [ dev ] | ||
| pull_request: | ||
| branches: [ dev ] | ||
|
|
||
| jobs: | ||
| verify-docs: | ||
|
|
||
| runs-on: windows-latest | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@v2 | ||
|
|
||
| - name: Setup .NET 5 | ||
| uses: actions/setup-dotnet@v1 | ||
| with: | ||
| dotnet-version: '5.0.302' | ||
|
|
||
| - name: Run verification script | ||
| run: | | ||
| dotnet tool restore | ||
| dotnet fake build -t verifydocs |
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what's that for?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It yielded a warning that there are types which do not override Equals. So it suggested me adding this attribute.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think here we can safely ignore that, because this is just a showcase of how the type looks like internally. But ill rework this page anyways so it can stay as it is