-
Notifications
You must be signed in to change notification settings - Fork 0
Clean up and update project templates #9
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
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
fdc1e5e
Update .gitignore
ChargedByte bcbf6da
Remove unused workflows
ChargedByte c6d30ea
Update .gitattributes
ChargedByte 955dea9
Update task template according to new guidelines
ChargedByte c8f66ab
Bump container version
ChargedByte 00ae371
Improve container project
ChargedByte 287aed1
Update documentations
ChargedByte c04ff82
Fix task documentation link
ChargedByte 896195b
Cleanup template projects and suppressions
ChargedByte c67df3c
Minor documentation improvements
ChargedByte 83ee07f
Update GitHub Actions versions
ChargedByte f00ad87
Add missing suppression to the template task
ChargedByte 61f8e6b
Fix incorrect error handling in the template task
ChargedByte 49dac9e
Revert incorrect change to the container's target framework
ChargedByte c55efaf
Fix project url
ChargedByte 9cbd9ed
Default to empty string instead of null for ErrorMessageOnFailure
ChargedByte 0e7e628
Add missing documentation examples
ChargedByte 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 |
|---|---|---|
| @@ -1,63 +1,89 @@ | ||
| ############################################################################### | ||
| # Set default behavior to automatically normalize line endings. | ||
| ############################################################################### | ||
| * text=auto | ||
| # Common settings that generally should always be used with your language specific settings | ||
|
|
||
| ############################################################################### | ||
| # Set default behavior for command prompt diff. | ||
| # Auto detect text files and perform LF normalization | ||
| # https://www.davidlaing.com/2012/09/19/customise-your-gitattributes-to-become-a-git-ninja/ | ||
| * text=auto eol=lf | ||
|
|
||
| # | ||
| # The above will handle all files NOT found below | ||
| # | ||
| # This is need for earlier builds of msysgit that does not have it on by | ||
| # default for csharp files. | ||
| # Note: This is only used by command line | ||
| ############################################################################### | ||
| #*.cs diff=csharp | ||
|
|
||
| ############################################################################### | ||
| # Set the merge driver for project and solution files | ||
|
|
||
| # Code files | ||
| *.cs text diff=csharp | ||
| *.cshtml text diff=html | ||
| *.csx text diff=csharp | ||
|
|
||
| # Project files | ||
| *.sln text eol=crlf | ||
| *.csproj text eol=crlf | ||
|
|
||
| # Documents | ||
| *.bibtex text diff=bibtex | ||
| *.doc diff=astextplain | ||
| *.DOC diff=astextplain | ||
| *.docx diff=astextplain | ||
| *.DOCX diff=astextplain | ||
| *.dot diff=astextplain | ||
| *.DOT diff=astextplain | ||
| *.pdf diff=astextplain | ||
| *.PDF diff=astextplain | ||
| *.rtf diff=astextplain | ||
| *.RTF diff=astextplain | ||
| *.md text | ||
| *.tex text diff=tex | ||
| *.adoc text | ||
| *.textile text | ||
| *.mustache text | ||
| *.csv text | ||
| *.tab text | ||
| *.tsv text | ||
| *.txt text | ||
| *.sql text | ||
|
|
||
| # Graphics | ||
| *.png binary | ||
| *.jpg binary | ||
| *.jpeg binary | ||
| *.gif binary | ||
| *.tif binary | ||
| *.tiff binary | ||
| *.ico binary | ||
| # SVG treated as an asset (binary) by default. | ||
| *.svg text | ||
| # If you want to treat it as binary, | ||
| # use the following line instead. | ||
| # *.svg binary | ||
| *.eps binary | ||
|
|
||
| # Scripts | ||
| *.bash text eol=lf | ||
| *.fish text eol=lf | ||
| *.sh text eol=lf | ||
| # These are explicitly windows files and should use crlf | ||
| *.bat text eol=crlf | ||
| *.cmd text eol=crlf | ||
| *.ps1 text eol=crlf | ||
|
|
||
| # Serialisation | ||
| *.json text | ||
| *.toml text | ||
| *.xml text | ||
| *.yaml text | ||
| *.yml text | ||
|
|
||
| # Archives | ||
| *.7z binary | ||
| *.gz binary | ||
| *.tar binary | ||
| *.tgz binary | ||
| *.zip binary | ||
|
|
||
| # Text files where line endings should be preserved | ||
| *.patch -text | ||
|
|
||
| # | ||
| # Merging from the command prompt will add diff markers to the files if there | ||
| # are conflicts (Merging from VS is not affected by the settings below, in VS | ||
| # the diff markers are never inserted). Diff markers may cause the following | ||
| # file extensions to fail to load in VS. An alternative would be to treat | ||
| # these files as binary and thus will always conflict and require user | ||
| # intervention with every merge. To do so, just uncomment the entries below | ||
| ############################################################################### | ||
| #*.sln merge=binary | ||
| #*.csproj merge=binary | ||
| #*.vbproj merge=binary | ||
| #*.vcxproj merge=binary | ||
| #*.vcproj merge=binary | ||
| #*.dbproj merge=binary | ||
| #*.fsproj merge=binary | ||
| #*.lsproj merge=binary | ||
| #*.wixproj merge=binary | ||
| #*.modelproj merge=binary | ||
| #*.sqlproj merge=binary | ||
| #*.wwaproj merge=binary | ||
|
|
||
| ############################################################################### | ||
| # behavior for image files | ||
| # Exclude files from exporting | ||
| # | ||
| # image files are treated as binary by default. | ||
| ############################################################################### | ||
| #*.jpg binary | ||
| #*.png binary | ||
| #*.gif binary | ||
|
|
||
| ############################################################################### | ||
| # diff behavior for common document formats | ||
| # | ||
| # Convert binary document formats to text before diffing them. This feature | ||
| # is only available from the command line. Turn it on by uncommenting the | ||
| # entries below. | ||
| ############################################################################### | ||
| #*.doc diff=astextplain | ||
| #*.DOC diff=astextplain | ||
| #*.docx diff=astextplain | ||
| #*.DOCX diff=astextplain | ||
| #*.dot diff=astextplain | ||
| #*.DOT diff=astextplain | ||
| #*.pdf diff=astextplain | ||
| #*.PDF diff=astextplain | ||
| #*.rtf diff=astextplain | ||
| #*.RTF diff=astextplain | ||
|
|
||
| .gitattributes export-ignore | ||
| .gitignore export-ignore |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.