Compare commits
12 Commits
main
...
annotating
Author | SHA1 | Date | |
---|---|---|---|
|
3d4c6f2148 | ||
|
765ecc398b | ||
|
eab8d4876d | ||
|
d983b4f5e2 | ||
|
0f61d7e240 | ||
|
f515ae6c5c | ||
|
237c94586f | ||
|
8803192fd3 | ||
|
f2c0e3cc5a | ||
|
7d209f8aac | ||
|
a5b891d9d2 | ||
|
69fef749cb |
@ -28,6 +28,11 @@ high quality, we request that contributions adhere to the following guidelines.
|
|||||||
In general, the more you can do to help us understand the change you’re making,
|
In general, the more you can do to help us understand the change you’re making,
|
||||||
the more likely we’ll be to accept your contribution quickly.
|
the more likely we’ll be to accept your contribution quickly.
|
||||||
|
|
||||||
|
If a template is mostly a list of files installed by a particular version of
|
||||||
|
some software (e.g. a PHP framework) then it's brittle and probably no more
|
||||||
|
helpful than a simple `ls`. If it's not possible to curate a small set of
|
||||||
|
useful rules, then the template might not be a good fit for this collection.
|
||||||
|
|
||||||
Please also understand that we can’t list every tool that ever existed.
|
Please also understand that we can’t list every tool that ever existed.
|
||||||
Our aim is to curate a collection of the *most common and helpful* templates,
|
Our aim is to curate a collection of the *most common and helpful* templates,
|
||||||
not to make sure we cover every project possible. If we choose not to
|
not to make sure we cover every project possible. If we choose not to
|
||||||
|
@ -53,6 +53,11 @@ high quality, we request that contributions adhere to the following guidelines.
|
|||||||
In general, the more you can do to help us understand the change you’re making,
|
In general, the more you can do to help us understand the change you’re making,
|
||||||
the more likely we’ll be to accept your contribution quickly.
|
the more likely we’ll be to accept your contribution quickly.
|
||||||
|
|
||||||
|
If a template is mostly a list of files installed by a particular version of
|
||||||
|
some software (e.g. a PHP framework) then it's brittle and probably no more
|
||||||
|
helpful than a simple `ls`. If it's not possible to curate a small set of
|
||||||
|
useful rules, then the template might not be a good fit for this collection.
|
||||||
|
|
||||||
Please also understand that we can’t list every tool that ever existed.
|
Please also understand that we can’t list every tool that ever existed.
|
||||||
Our aim is to curate a collection of the *most common and helpful* templates,
|
Our aim is to curate a collection of the *most common and helpful* templates,
|
||||||
not to make sure we cover every project possible. If we choose not to
|
not to make sure we cover every project possible. If we choose not to
|
||||||
|
@ -1,16 +1,22 @@
|
|||||||
## Ignore Visual Studio temporary files, build results, and
|
# temporary files generated by Visual Studio specific to the local user
|
||||||
## files generated by popular Visual Studio add-ons.
|
# contains profile information and other metadata
|
||||||
|
# remove: if no longer targeting Visual Studio 2013 or earlier
|
||||||
# User-specific files
|
|
||||||
*.suo
|
*.suo
|
||||||
*.user
|
*.user
|
||||||
*.userosscache
|
*.userosscache
|
||||||
*.sln.docstates
|
*.sln.docstates
|
||||||
|
#
|
||||||
# User-specific files (MonoDevelop/Xamarin Studio)
|
# new location for Visual Studio 2015
|
||||||
|
.vs/
|
||||||
|
#
|
||||||
|
# specific to MonoDevelop and Xamarin Studio
|
||||||
*.userprefs
|
*.userprefs
|
||||||
|
#
|
||||||
|
# workspace options file
|
||||||
|
# remove: if no longer targeting Visual Studio 6
|
||||||
|
*.opt
|
||||||
|
|
||||||
# Build results
|
# build output folders generated by Visual Studio
|
||||||
[Dd]ebug/
|
[Dd]ebug/
|
||||||
[Dd]ebugPublic/
|
[Dd]ebugPublic/
|
||||||
[Rr]elease/
|
[Rr]elease/
|
||||||
@ -21,27 +27,57 @@ build/
|
|||||||
bld/
|
bld/
|
||||||
[Bb]in/
|
[Bb]in/
|
||||||
[Oo]bj/
|
[Oo]bj/
|
||||||
|
#
|
||||||
|
# default build log file
|
||||||
|
# remove: if no longer targeting Visual Studio 6
|
||||||
|
*.plg
|
||||||
|
|
||||||
# Visual Studio 2015 cache/options directory
|
# MSTest
|
||||||
.vs/
|
# a test framework from Microsoft
|
||||||
|
# remove: if you are not using the MSTest runner to run your tests
|
||||||
# MSTest test Results
|
|
||||||
[Tt]est[Rr]esult*/
|
[Tt]est[Rr]esult*/
|
||||||
[Bb]uild[Ll]og.*
|
[Bb]uild[Ll]og.*
|
||||||
|
|
||||||
# NUNIT
|
# NUnit
|
||||||
|
# an open source test framework for .NET
|
||||||
|
# url: http://www.nunit.org/
|
||||||
|
# remove: if you are not using the NUnit test runner to run your tests
|
||||||
*.VisualState.xml
|
*.VisualState.xml
|
||||||
TestResult.xml
|
TestResult.xml
|
||||||
|
|
||||||
# Build Results of an ATL Project
|
# ATL (Active Template Library) Project
|
||||||
|
# remove: if you do not have an ATL project in your solution
|
||||||
[Dd]ebugPS/
|
[Dd]ebugPS/
|
||||||
[Rr]eleasePS/
|
[Rr]eleasePS/
|
||||||
dlldata.c
|
dlldata.c
|
||||||
|
|
||||||
# DNX
|
# DNX
|
||||||
|
# summary: the environment for cross-platform .NET development
|
||||||
|
# url: https://github.com/aspnet/dnx
|
||||||
|
#
|
||||||
|
# locks the package references for a project to specific versions
|
||||||
|
# url: https://github.com/aspnet/Home/wiki/Lock-file
|
||||||
|
# remove: if you would like to lock your dependencies to a specific version
|
||||||
|
# when committing and prevent package restore from selecting a
|
||||||
|
# more recent version
|
||||||
project.lock.json
|
project.lock.json
|
||||||
|
#
|
||||||
|
# build output
|
||||||
artifacts/
|
artifacts/
|
||||||
|
|
||||||
|
# Program Database files created by various compilers
|
||||||
|
# used when debugging compiled code - the file essentially represents a lookup
|
||||||
|
# so that symbols can be resolved to the relevant source code
|
||||||
|
# url: https://en.wikipedia.org/wiki/Program_database
|
||||||
|
*.pdb
|
||||||
|
|
||||||
|
# Visual SourceSafe hint files to keep the projects and solutions in sync
|
||||||
|
# with source control - these are no longer necessary once you've moved away
|
||||||
|
# from Visual SourceSafe
|
||||||
|
*.vspscc
|
||||||
|
*.vssscc
|
||||||
|
|
||||||
|
|
||||||
*_i.c
|
*_i.c
|
||||||
*_p.c
|
*_p.c
|
||||||
*_i.h
|
*_i.h
|
||||||
@ -49,7 +85,6 @@ artifacts/
|
|||||||
*.meta
|
*.meta
|
||||||
*.obj
|
*.obj
|
||||||
*.pch
|
*.pch
|
||||||
*.pdb
|
|
||||||
*.pgc
|
*.pgc
|
||||||
*.pgd
|
*.pgd
|
||||||
*.rsp
|
*.rsp
|
||||||
@ -60,14 +95,15 @@ artifacts/
|
|||||||
*.tmp
|
*.tmp
|
||||||
*.tmp_proj
|
*.tmp_proj
|
||||||
*.log
|
*.log
|
||||||
*.vspscc
|
|
||||||
*.vssscc
|
|
||||||
.builds
|
.builds
|
||||||
*.pidb
|
*.pidb
|
||||||
*.svclog
|
*.svclog
|
||||||
*.scc
|
*.scc
|
||||||
|
|
||||||
# Chutzpah Test files
|
# Chutzpah
|
||||||
|
# a JS unit testing framework for commit
|
||||||
|
# url: https://github.com/mmanela/chutzpah
|
||||||
|
# remove: if you do not use the Chutzpah test runner in your project
|
||||||
_Chutzpah*
|
_Chutzpah*
|
||||||
|
|
||||||
# Visual C++ cache files
|
# Visual C++ cache files
|
||||||
@ -78,47 +114,70 @@ ipch/
|
|||||||
*.sdf
|
*.sdf
|
||||||
*.cachefile
|
*.cachefile
|
||||||
|
|
||||||
# Visual Studio profiler
|
# temporary files generated by the Visual Studio profiling tools
|
||||||
|
# remove: if you are not using these features of Visual Studio
|
||||||
*.psess
|
*.psess
|
||||||
*.vsp
|
*.vsp
|
||||||
*.vspx
|
*.vspx
|
||||||
|
|
||||||
# TFS 2012 Local Workspace
|
# TFS 2012 Local Workspace
|
||||||
|
# remove: if you are not using TFVC in this repository
|
||||||
$tf/
|
$tf/
|
||||||
|
|
||||||
# Guidance Automation Toolkit
|
# Guidance Automation Toolkit
|
||||||
*.gpState
|
*.gpState
|
||||||
|
|
||||||
# ReSharper is a .NET coding add-in
|
# ReSharper
|
||||||
|
# a Visual Studio extension which supports various project types
|
||||||
|
# url: https://www.jetbrains.com/resharper/
|
||||||
_ReSharper*/
|
_ReSharper*/
|
||||||
*.[Rr]e[Ss]harper
|
*.[Rr]e[Ss]harper
|
||||||
*.DotSettings.user
|
*.DotSettings.user
|
||||||
|
|
||||||
# JustCode is a .NET coding add-in
|
# JustCode
|
||||||
|
# a Visual Studio extension for various project types
|
||||||
|
# url: https://www.jetbrains.com/resharper/
|
||||||
.JustCode
|
.JustCode
|
||||||
|
|
||||||
# TeamCity is a build add-in
|
# TeamCity
|
||||||
|
# a Visual Studio extension you can download from your TeamCity server
|
||||||
|
# url: https://confluence.jetbrains.com/display/TCD9/Visual+Studio+Addin
|
||||||
_TeamCity*
|
_TeamCity*
|
||||||
|
|
||||||
# DotCover is a Code Coverage Tool
|
# DotCover
|
||||||
|
# a code coverage plugin for Visual Studio
|
||||||
|
# url: https://www.jetbrains.com/dotcover/
|
||||||
*.dotCover
|
*.dotCover
|
||||||
|
|
||||||
# NCrunch
|
# NCrunch
|
||||||
|
# a continuous test runner for Visual Studio
|
||||||
|
# url: http://www.ncrunch.net
|
||||||
_NCrunch_*
|
_NCrunch_*
|
||||||
.*crunch*.local.xml
|
.*crunch*.local.xml
|
||||||
nCrunchTemp_*
|
nCrunchTemp_*
|
||||||
|
|
||||||
# MightyMoose
|
# MightyMoose
|
||||||
|
# a continuous test runner for Visual Studio
|
||||||
|
# url: http://www.continuoustests.com/
|
||||||
*.mm.*
|
*.mm.*
|
||||||
AutoTest.Net/
|
AutoTest.Net/
|
||||||
|
|
||||||
# Web workbench (sass)
|
# Web Workbench
|
||||||
|
# SASS, LESS and Coffeescript integration for Visual Studio
|
||||||
|
# url: http://www.mindscapehq.com/products/web-workbench
|
||||||
.sass-cache/
|
.sass-cache/
|
||||||
|
|
||||||
# Installshield output folder
|
# InstallShield
|
||||||
|
# installer framework for Windows machines
|
||||||
|
# url: http://www.flexerasoftware.com/producer/products/software-installation/installshield-software-installer/
|
||||||
|
#
|
||||||
|
# output folder
|
||||||
[Ee]xpress/
|
[Ee]xpress/
|
||||||
|
|
||||||
# DocProject is a documentation generator add-in
|
# DocProject
|
||||||
|
# a document generation add-in for Visual Studio based on Sandcastle
|
||||||
|
# url: http://docproject.codeplex.com/
|
||||||
|
# remove: if you are using Visual Studio 2010 or later (which are not supported)
|
||||||
DocProject/buildhelp/
|
DocProject/buildhelp/
|
||||||
DocProject/Help/*.HxT
|
DocProject/Help/*.HxT
|
||||||
DocProject/Help/*.HxC
|
DocProject/Help/*.HxC
|
||||||
@ -128,24 +187,42 @@ DocProject/Help/*.hhp
|
|||||||
DocProject/Help/Html2
|
DocProject/Help/Html2
|
||||||
DocProject/Help/html
|
DocProject/Help/html
|
||||||
|
|
||||||
# Click-Once directory
|
# ClickOnce installer and deployment
|
||||||
|
# url: https://msdn.microsoft.com/en-us/library/142dbbz4(v=vs.90).aspx
|
||||||
|
# remove: if you do not have ClickOnce publishing enabled for your projects
|
||||||
publish/
|
publish/
|
||||||
|
|
||||||
# Publish Web Output
|
# Publish Web Output
|
||||||
*.[Pp]ublish.xml
|
*.[Pp]ublish.xml
|
||||||
*.azurePubxml
|
*.azurePubxml
|
||||||
# TODO: Comment the next line if you want to checkin your web deploy settings
|
#
|
||||||
# but database connection strings (with potential passwords) will be unencrypted
|
# remove: if you have sensitive details in your database connection strings
|
||||||
|
(such as passwords) committing this settings file will mean
|
||||||
|
that they are stored in an unencrypted state in your repository
|
||||||
*.pubxml
|
*.pubxml
|
||||||
*.publishproj
|
*.publishproj
|
||||||
|
|
||||||
# NuGet Packages
|
# NuGet
|
||||||
|
# summary: the package manager tool used in Visual Studio
|
||||||
|
# url: https://nuget.org
|
||||||
|
#
|
||||||
|
# output packages created by NuGet
|
||||||
*.nupkg
|
*.nupkg
|
||||||
# The packages folder can be ignored because of Package Restore
|
#
|
||||||
|
# Since NuGet 2.7, package restore is now a first class feature of Visual Studio
|
||||||
|
# so you do not need to check in your packages
|
||||||
|
# url: https://docs.nuget.org/consume/package-restore
|
||||||
|
# remove: if you do not wish to restore packages in this way, or have
|
||||||
|
package restore disabled
|
||||||
**/packages/*
|
**/packages/*
|
||||||
# except build/, which is used as an MSBuild target.
|
#
|
||||||
|
# some packages include MSBuild targets files, which are stored in this
|
||||||
|
# location and should be kept in version control
|
||||||
!**/packages/build/
|
!**/packages/build/
|
||||||
# Uncomment if necessary however generally it will be regenerated when needed
|
#
|
||||||
|
# this file is a local listing of where to find your packages.config files, and
|
||||||
|
# is regenerated by Visual Studio during a build
|
||||||
|
# include: if you wish to version this file
|
||||||
#!**/packages/repositories.config
|
#!**/packages/repositories.config
|
||||||
|
|
||||||
# Windows Azure Build Output
|
# Windows Azure Build Output
|
||||||
@ -161,24 +238,47 @@ AppPackages/
|
|||||||
# but keep track of directories ending in .cache
|
# but keep track of directories ending in .cache
|
||||||
!*.[Cc]ache/
|
!*.[Cc]ache/
|
||||||
|
|
||||||
# Others
|
# StyleCop
|
||||||
ClientBin/
|
# an extension for enforcing coding style in C#
|
||||||
|
# url: https://stylecop.codeplex.com/
|
||||||
|
#
|
||||||
|
# temporary files created by the tool
|
||||||
[Ss]tyle[Cc]op.*
|
[Ss]tyle[Cc]op.*
|
||||||
|
|
||||||
|
# Others
|
||||||
~$*
|
~$*
|
||||||
*~
|
*~
|
||||||
*.dbmdl
|
*.dbmdl
|
||||||
*.dbproj.schemaview
|
*.dbproj.schemaview
|
||||||
|
#
|
||||||
|
#
|
||||||
*.pfx
|
*.pfx
|
||||||
*.publishsettings
|
*.publishsettings
|
||||||
|
#
|
||||||
|
# the local cache of node module installed by NPM
|
||||||
|
# remove: if you are not using nodejs in your solution
|
||||||
|
OR if you wish to keep this cache under version control
|
||||||
node_modules/
|
node_modules/
|
||||||
|
|
||||||
|
# Orleans
|
||||||
|
# a Distributed Actor Model framework for .NET
|
||||||
|
# url: https://github.com/dotnet/Orleans
|
||||||
|
#
|
||||||
|
# code generated as part of compilation
|
||||||
orleans.codegen.cs
|
orleans.codegen.cs
|
||||||
|
|
||||||
# RIA/Silverlight projects
|
# RIA/Silverlight projects
|
||||||
|
# url: https://www.microsoft.com/silverlight/
|
||||||
|
# output directory for *.xap artifacts
|
||||||
|
ClientBin/
|
||||||
|
# temporary directory used by compiler
|
||||||
Generated_Code/
|
Generated_Code/
|
||||||
|
|
||||||
# Backup & report files from converting an old project file
|
# Migrating Projects
|
||||||
# to a newer Visual Studio version. Backup files are not needed,
|
# When upgrading a solution to a newer version of Visual Studio, there are a
|
||||||
# because we have git ;-)
|
# number of output files created so you can view the log, troubleshoot issues
|
||||||
|
# and potentially revert to a backup. These can be safely ignored, because
|
||||||
|
# you're already using version control.
|
||||||
_UpgradeReport_Files/
|
_UpgradeReport_Files/
|
||||||
Backup*/
|
Backup*/
|
||||||
UpgradeLog*.XML
|
UpgradeLog*.XML
|
||||||
@ -189,18 +289,18 @@ UpgradeLog*.htm
|
|||||||
*.ldf
|
*.ldf
|
||||||
|
|
||||||
# Business Intelligence projects
|
# Business Intelligence projects
|
||||||
|
# remove: if you do not have Business Intelligence projects in your solution
|
||||||
*.rdl.data
|
*.rdl.data
|
||||||
*.bim.layout
|
*.bim.layout
|
||||||
*.bim_*.settings
|
*.bim_*.settings
|
||||||
|
|
||||||
# Microsoft Fakes
|
# Microsoft Fakes
|
||||||
|
# a local cache of assemblies
|
||||||
|
# url: https://msdn.microsoft.com/en-us/library/hh549175.aspx
|
||||||
|
# remove: if you are not using Microsoft Fakes in your projects
|
||||||
FakesAssemblies/
|
FakesAssemblies/
|
||||||
|
|
||||||
# Node.js Tools for Visual Studio
|
# Node.js Tools for Visual Studio
|
||||||
|
# url: https://github.com/Microsoft/nodejstools
|
||||||
|
# remove: if you do not have this extension installed
|
||||||
.ntvs_analysis.dat
|
.ntvs_analysis.dat
|
||||||
|
|
||||||
# Visual Studio 6 build log
|
|
||||||
*.plg
|
|
||||||
|
|
||||||
# Visual Studio 6 workspace options file
|
|
||||||
*.opt
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user