forked from DotNetAnalyzers/AsyncUsageAnalyzers
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial commit to add .gitignore and .gitattributes files.
- Loading branch information
0 parents
commit ac46425
Showing
2 changed files
with
34 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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Source code files | ||
*.cs text | ||
*.vsixmanifest text | ||
*.config text | ||
*.resx text | ||
*.vstemplate text | ||
*.nuspec text | ||
*.md text | ||
*.txt text | ||
*.ps1 text | ||
LICENSE text | ||
|
||
# Projects and solutions | ||
*.sln text | ||
*.csproj text | ||
|
||
# Certainly binary files | ||
*.png binary | ||
*.ico binary | ||
*.snk binary |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Build output | ||
bin/ | ||
obj/ | ||
|
||
# Artifacts of the IDE and build | ||
*.sln.ide/ | ||
.vs/ | ||
packages/ | ||
*.suo | ||
*.user | ||
TestResults/ | ||
.nuget/NuGet.exe | ||
build/nuget/ | ||
*.log |