2 changed files
.gitattributes + | ||
.gitignore + | ||
Add comment 1 Plus ###############################################################################
Add comment 2 Plus # Set default behavior to automatically normalize line endings.
Add comment 3 Plus ###############################################################################
Add comment 4 Plus * text=auto
Add comment 5 Plus
Add comment 6 Plus ###############################################################################
Add comment 7 Plus # Set default behavior for command prompt diff.
Add comment 8 Plus #
Add comment 9 Plus # This is need for earlier builds of msysgit that does not have it on by
Add comment 10 Plus # default for csharp files.
Add comment 11 Plus # Note: This is only used by command line
Add comment 12 Plus ###############################################################################
Add comment 13 Plus #*.cs diff=csharp
Add comment 14 Plus
Add comment 15 Plus ###############################################################################
Add comment 16 Plus # Set the merge driver for project and solution files
Add comment 17 Plus #
Add comment 18 Plus # Merging from the command prompt will add diff markers to the files if there
Add comment 19 Plus # are conflicts (Merging from VS is not affected by the settings below, in VS
Add comment 20 Plus # the diff markers are never inserted). Diff markers may cause the following
Add comment 21 Plus # file extensions to fail to load in VS. An alternative would be to treat
Add comment 22 Plus # these files as binary and thus will always conflict and require user
Add comment 23 Plus # intervention with every merge. To do so, just uncomment the entries below
Add comment 24 Plus ###############################################################################
Add comment 25 Plus #*.sln merge=binary
Add comment 26 Plus #*.csproj merge=binary
Add comment 27 Plus #*.vbproj merge=binary
Add comment 28 Plus #*.vcxproj merge=binary
Add comment 29 Plus #*.vcproj merge=binary
Add comment 30 Plus #*.dbproj merge=binary
Add comment 31 Plus #*.fsproj merge=binary
Add comment 32 Plus #*.lsproj merge=binary
Add comment 33 Plus #*.wixproj merge=binary
Add comment 34 Plus #*.modelproj merge=binary
Add comment 35 Plus #*.sqlproj merge=binary
Add comment 36 Plus #*.wwaproj merge=binary
Add comment 37 Plus
Add comment 38 Plus ###############################################################################
Add comment 39 Plus # behavior for image files
Add comment 40 Plus #
Add comment 41 Plus # image files are treated as binary by default.
Add comment 42 Plus ###############################################################################
Add comment 43 Plus #*.jpg binary
Add comment 44 Plus #*.png binary
Add comment 45 Plus #*.gif binary
Add comment 46 Plus
Add comment 47 Plus ###############################################################################
Add comment 48 Plus # diff behavior for common document formats
Add comment 49 Plus #
Add comment 50 Plus # Convert binary document formats to text before diffing them. This feature
Add comment 51 Plus # is only available from the command line. Turn it on by uncommenting the
Add comment 52 Plus # entries below.
Add comment 53 Plus ###############################################################################
Add comment 54 Plus #*.doc diff=astextplain
Add comment 55 Plus #*.DOC diff=astextplain
Add comment 56 Plus #*.docx diff=astextplain
Add comment 57 Plus #*.DOCX diff=astextplain
Add comment 58 Plus #*.dot diff=astextplain
Add comment 59 Plus #*.DOT diff=astextplain
Add comment 60 Plus #*.pdf diff=astextplain
Add comment 61 Plus #*.PDF diff=astextplain
Add comment 62 Plus #*.rtf diff=astextplain
Add comment 63 Plus #*.RTF diff=astextplain
Add comment 64 Plus
Add comment 1 Plus ## Ignore Visual Studio temporary files, build results, and
Add comment 2 Plus ## files generated by popular Visual Studio add-ons.
Add comment 3 Plus ##
Add comment 4 Plus ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
Add comment 5 Plus
Add comment 6 Plus # User-specific files
Add comment 7 Plus *.rsuser
Add comment 8 Plus *.suo
Add comment 9 Plus *.user
Add comment 10 Plus *.userosscache
Add comment 11 Plus *.sln.docstates
Add comment 12 Plus
Add comment 13 Plus # User-specific files (MonoDevelop/Xamarin Studio)
Add comment 14 Plus *.userprefs
Add comment 15 Plus
Add comment 16 Plus # Build results
Add comment 17 Plus [Dd]ebug/
Add comment 18 Plus [Dd]ebugPublic/
Add comment 19 Plus [Rr]elease/
Add comment 20 Plus [Rr]eleases/
Add comment 21 Plus x64/
Add comment 22 Plus x86/
Add comment 23 Plus [Aa][Rr][Mm]/
Add comment 24 Plus [Aa][Rr][Mm]64/
Add comment 25 Plus bld/
Add comment 26 Plus [Bb]in/
Add comment 27 Plus [Oo]bj/
Add comment 28 Plus [Ll]og/
Add comment 29 Plus
Add comment 30 Plus # Visual Studio 2015/2017 cache/options directory
Add comment 31 Plus .vs/
Add comment 32 Plus # Uncomment if you have tasks that create the project's static files in wwwroot
Add comment 33 Plus #wwwroot/
Add comment 34 Plus
Add comment 35 Plus # Visual Studio 2017 auto generated files
Add comment 36 Plus Generated\ Files/
Add comment 37 Plus
Add comment 38 Plus # MSTest test Results
Add comment 39 Plus [Tt]est[Rr]esult*/
Add comment 40 Plus [Bb]uild[Ll]og.*
Add comment 41 Plus
Add comment 42 Plus # NUNIT
Add comment 43 Plus *.VisualState.xml
Add comment 44 Plus TestResult.xml
Add comment 45 Plus
Add comment 46 Plus # Build Results of an ATL Project
Add comment 47 Plus [Dd]ebugPS/
Add comment 48 Plus [Rr]eleasePS/
Add comment 49 Plus dlldata.c
Add comment 50 Plus
Add comment 51 Plus # Benchmark Results
Add comment 52 Plus BenchmarkDotNet.Artifacts/
Add comment 53 Plus
Add comment 54 Plus # .NET Core
Add comment 55 Plus project.lock.json
Add comment 56 Plus project.fragment.lock.json
Add comment 57 Plus artifacts/
Add comment 58 Plus
Add comment 59 Plus # StyleCop
Add comment 60 Plus StyleCopReport.xml
Add comment 61 Plus
Add comment 62 Plus # Files built by Visual Studio
Add comment 63 Plus *_i.c
Add comment 64 Plus *_p.c
Add comment 65 Plus *_h.h
Add comment 66 Plus *.ilk
Add comment 67 Plus *.meta
Add comment 68 Plus *.obj
Add comment 69 Plus *.iobj
Add comment 70 Plus *.pch
Add comment 71 Plus *.pdb
Add comment 72 Plus *.ipdb
Add comment 73 Plus *.pgc
Add comment 74 Plus *.pgd
Add comment 75 Plus *.rsp
Add comment 76 Plus *.sbr
Add comment 77 Plus *.tlb
Add comment 78 Plus *.tli
Add comment 79 Plus *.tlh
Add comment 80 Plus *.tmp
Add comment 81 Plus *.tmp_proj
Add comment 82 Plus *_wpftmp.csproj
Add comment 83 Plus *.log
Add comment 84 Plus *.vspscc
Add comment 85 Plus *.vssscc
Add comment 86 Plus .builds
Add comment 87 Plus *.pidb
Add comment 88 Plus *.svclog
Add comment 89 Plus *.scc
Add comment 90 Plus
Add comment 91 Plus # Chutzpah Test files
Add comment 92 Plus _Chutzpah*
Add comment 93 Plus
Add comment 94 Plus # Visual C++ cache files
Add comment 95 Plus ipch/
Add comment 96 Plus *.aps
Add comment 97 Plus *.ncb
Add comment 98 Plus *.opendb
Add comment 99 Plus *.opensdf
Add comment 100 Plus *.sdf
Add comment 101 Plus *.cachefile
Add comment 102 Plus *.VC.db
Add comment 103 Plus *.VC.VC.opendb
Add comment 104 Plus
Add comment 105 Plus # Visual Studio profiler
Add comment 106 Plus *.psess
Add comment 107 Plus *.vsp
Add comment 108 Plus *.vspx
Add comment 109 Plus *.sap
Add comment 110 Plus
Add comment 111 Plus # Visual Studio Trace Files
Add comment 112 Plus *.e2e
Add comment 113 Plus
Add comment 114 Plus # TFS 2012 Local Workspace
Add comment 115 Plus $tf/
Add comment 116 Plus
Add comment 117 Plus # Guidance Automation Toolkit
Add comment 118 Plus *.gpState
Add comment 119 Plus
Add comment 120 Plus # ReSharper is a .NET coding add-in
Add comment 121 Plus _ReSharper*/
Add comment 122 Plus *.[Rr]e[Ss]harper
Add comment 123 Plus *.DotSettings.user
Add comment 124 Plus
Add comment 125 Plus # JustCode is a .NET coding add-in
Add comment 126 Plus .JustCode
Add comment 127 Plus
Add comment 128 Plus # TeamCity is a build add-in
Add comment 129 Plus _TeamCity*
Add comment 130 Plus
Add comment 131 Plus # DotCover is a Code Coverage Tool
Add comment 132 Plus *.dotCover
Add comment 133 Plus
Add comment 134 Plus # AxoCover is a Code Coverage Tool
Add comment 135 Plus .axoCover/*
Add comment 136 Plus !.axoCover/settings.json
Add comment 137 Plus
Add comment 138 Plus # Visual Studio code coverage results
Add comment 139 Plus *.coverage
Add comment 140 Plus *.coveragexml
Add comment 141 Plus
Add comment 142 Plus # NCrunch
Add comment 143 Plus _NCrunch_*
Add comment 144 Plus .*crunch*.local.xml
Add comment 145 Plus nCrunchTemp_*
Add comment 146 Plus
Add comment 147 Plus # MightyMoose
Add comment 148 Plus *.mm.*
Add comment 149 Plus AutoTest.Net/
Add comment 150 Plus
Add comment 151 Plus # Web workbench (sass)
Add comment 152 Plus .sass-cache/
Add comment 153 Plus
Add comment 154 Plus # Installshield output folder
Add comment 155 Plus [Ee]xpress/
Add comment 156 Plus
Add comment 157 Plus # DocProject is a documentation generator add-in
Add comment 158 Plus DocProject/buildhelp/
Add comment 159 Plus DocProject/Help/*.HxT
Add comment 160 Plus DocProject/Help/*.HxC
Add comment 161 Plus DocProject/Help/*.hhc
Add comment 162 Plus DocProject/Help/*.hhk
Add comment 163 Plus DocProject/Help/*.hhp
Add comment 164 Plus DocProject/Help/Html2
Add comment 165 Plus DocProject/Help/html
Add comment 166 Plus
Add comment 167 Plus # Click-Once directory
Add comment 168 Plus publish/
Add comment 169 Plus
Add comment 170 Plus # Publish Web Output
Add comment 171 Plus *.[Pp]ublish.xml
Add comment 172 Plus *.azurePubxml
Add comment 173 Plus # Note: Comment the next line if you want to checkin your web deploy settings,
Add comment 174 Plus # but database connection strings (with potential passwords) will be unencrypted
Add comment 175 Plus *.pubxml
Add comment 176 Plus *.publishproj
Add comment 177 Plus
Add comment 178 Plus # Microsoft Azure Web App publish settings. Comment the next line if you want to
Add comment 179 Plus # checkin your Azure Web App publish settings, but sensitive information contained
Add comment 180 Plus # in these scripts will be unencrypted
Add comment 181 Plus PublishScripts/
Add comment 182 Plus
Add comment 183 Plus # NuGet Packages
Add comment 184 Plus *.nupkg
Add comment 185 Plus # The packages folder can be ignored because of Package Restore
Add comment 186 Plus **/[Pp]ackages/*
Add comment 187 Plus # except build/, which is used as an MSBuild target.
Add comment 188 Plus !**/[Pp]ackages/build/
Add comment 189 Plus # Uncomment if necessary however generally it will be regenerated when needed
Add comment 190 Plus #!**/[Pp]ackages/repositories.config
Add comment 191 Plus # NuGet v3's project.json files produces more ignorable files
Add comment 192 Plus *.nuget.props
Add comment 193 Plus *.nuget.targets
Add comment 194 Plus
Add comment 195 Plus # Microsoft Azure Build Output
Add comment 196 Plus csx/
Add comment 197 Plus *.build.csdef
Add comment 198 Plus
Add comment 199 Plus # Microsoft Azure Emulator
Add comment 200 Plus ecf/
Add comment 201 Plus rcf/
Add comment 202 Plus
Add comment 203 Plus # Windows Store app package directories and files
Add comment 204 Plus AppPackages/
Add comment 205 Plus BundleArtifacts/
Add comment 206 Plus Package.StoreAssociation.xml
Add comment 207 Plus _pkginfo.txt
Add comment 208 Plus *.appx
Add comment 209 Plus
Add comment 210 Plus # Visual Studio cache files
Add comment 211 Plus # files ending in .cache can be ignored
Add comment 212 Plus *.[Cc]ache
Add comment 213 Plus # but keep track of directories ending in .cache
Add comment 214 Plus !?*.[Cc]ache/
Add comment 215 Plus
Add comment 216 Plus # Others
Add comment 217 Plus ClientBin/
Add comment 218 Plus ~$*
Add comment 219 Plus *~
Add comment 220 Plus *.dbmdl
Add comment 221 Plus *.dbproj.schemaview
Add comment 222 Plus *.jfm
Add comment 223 Plus *.pfx
Add comment 224 Plus *.publishsettings
Add comment 225 Plus orleans.codegen.cs
Add comment 226 Plus
Add comment 227 Plus # Including strong name files can present a security risk
Add comment 228 Plus # (https://github.com/github/gitignore/pull/2483#issue-259490424)
Add comment 229 Plus #*.snk
Add comment 230 Plus
Add comment 231 Plus # Since there are multiple workflows, uncomment next line to ignore bower_components
Add comment 232 Plus # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
Add comment 233 Plus #bower_components/
Add comment 234 Plus
Add comment 235 Plus # RIA/Silverlight projects
Add comment 236 Plus Generated_Code/
Add comment 237 Plus
Add comment 238 Plus # Backup & report files from converting an old project file
Add comment 239 Plus # to a newer Visual Studio version. Backup files are not needed,
Add comment 240 Plus # because we have git ;-)
Add comment 241 Plus _UpgradeReport_Files/
Add comment 242 Plus Backup*/
Add comment 243 Plus UpgradeLog*.XML
Add comment 244 Plus UpgradeLog*.htm
Add comment 245 Plus ServiceFabricBackup/
Add comment 246 Plus *.rptproj.bak
Add comment 247 Plus
Add comment 248 Plus # SQL Server files
Add comment 249 Plus *.mdf
Add comment 250 Plus *.ldf
Add comment 251 Plus *.ndf
Add comment 252 Plus
Add comment 253 Plus # Business Intelligence projects
Add comment 254 Plus *.rdl.data
Add comment 255 Plus *.bim.layout
Add comment 256 Plus *.bim_*.settings
Add comment 257 Plus *.rptproj.rsuser
Add comment 258 Plus *- Backup*.rdl
Add comment 259 Plus
Add comment 260 Plus # Microsoft Fakes
Add comment 261 Plus FakesAssemblies/
Add comment 262 Plus
Add comment 263 Plus # GhostDoc plugin setting file
Add comment 264 Plus *.GhostDoc.xml
Add comment 265 Plus
Add comment 266 Plus # Node.js Tools for Visual Studio
Add comment 267 Plus .ntvs_analysis.dat
Add comment 268 Plus node_modules/
Add comment 269 Plus
Add comment 270 Plus # Visual Studio 6 build log
Add comment 271 Plus *.plg
Add comment 272 Plus
Add comment 273 Plus # Visual Studio 6 workspace options file
Add comment 274 Plus *.opt
Add comment 275 Plus
Add comment 276 Plus # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
Add comment 277 Plus *.vbw
Add comment 278 Plus
Add comment 279 Plus # Visual Studio LightSwitch build output
Add comment 280 Plus **/*.HTMLClient/GeneratedArtifacts
Add comment 281 Plus **/*.DesktopClient/GeneratedArtifacts
Add comment 282 Plus **/*.DesktopClient/ModelManifest.xml
Add comment 283 Plus **/*.Server/GeneratedArtifacts
Add comment 284 Plus **/*.Server/ModelManifest.xml
Add comment 285 Plus _Pvt_Extensions
Add comment 286 Plus
Add comment 287 Plus # Paket dependency manager
Add comment 288 Plus .paket/paket.exe
Add comment 289 Plus paket-files/
Add comment 290 Plus
Add comment 291 Plus # FAKE - F# Make
Add comment 292 Plus .fake/
Add comment 293 Plus
Add comment 294 Plus # JetBrains Rider
Add comment 295 Plus .idea/
Add comment 296 Plus *.sln.iml
Add comment 297 Plus
Add comment 298 Plus # CodeRush personal settings
Add comment 299 Plus .cr/personal
Add comment 300 Plus
Add comment 301 Plus # Python Tools for Visual Studio (PTVS)
Add comment 302 Plus __pycache__/
Add comment 303 Plus *.pyc
Add comment 304 Plus
Add comment 305 Plus # Cake - Uncomment if you are using it
Add comment 306 Plus # tools/**
Add comment 307 Plus # !tools/packages.config
Add comment 308 Plus
Add comment 309 Plus # Tabs Studio
Add comment 310 Plus *.tss
Add comment 311 Plus
Add comment 312 Plus # Telerik's JustMock configuration file
Add comment 313 Plus *.jmconfig
Add comment 314 Plus
Add comment 315 Plus # BizTalk build output
Add comment 316 Plus *.btp.cs
Add comment 317 Plus *.btm.cs
Add comment 318 Plus *.odx.cs
Add comment 319 Plus *.xsd.cs
Add comment 320 Plus
Add comment 321 Plus # OpenCover UI analysis results
Add comment 322 Plus OpenCover/
Add comment 323 Plus
Add comment 324 Plus # Azure Stream Analytics local run output
Add comment 325 Plus ASALocalRun/
Add comment 326 Plus
Add comment 327 Plus # MSBuild Binary and Structured Log
Add comment 328 Plus *.binlog
Add comment 329 Plus
Add comment 330 Plus # NVidia Nsight GPU debugger configuration file
Add comment 331 Plus *.nvuser
Add comment 332 Plus
Add comment 333 Plus # MFractors (Xamarin productivity tool) working folder
Add comment 334 Plus .mfractor/
Add comment 335 Plus
Add comment 336 Plus # Local History for Visual Studio
Add comment 337 Plus .localhistory/
Add comment 338 Plus
Add comment 339 Plus # BeatPulse healthcheck temp database
Add comment 340 Plus healthchecksdb