diff options
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 58 |
1 files changed, 48 insertions, 10 deletions
@@ -19,16 +19,20 @@ | |||
19 | [Rr]eleases/ | 19 | [Rr]eleases/ |
20 | x64/ | 20 | x64/ |
21 | x86/ | 21 | x86/ |
22 | [Ww]in32/ | ||
22 | bld/ | 23 | bld/ |
23 | [Bb]in/ | 24 | [Bb]in/ |
24 | [Oo]bj/ | 25 | [Oo]bj/ |
25 | [Ll]og/ | 26 | [Ll]og/ |
26 | 27 | ||
27 | # Visual Studio 2015 cache/options directory | 28 | # Visual Studio 2015/2017 cache/options directory |
28 | .vs/ | 29 | .vs/ |
29 | # Uncomment if you have tasks that create the project's static files in wwwroot | 30 | # Uncomment if you have tasks that create the project's static files in wwwroot |
30 | #wwwroot/ | 31 | #wwwroot/ |
31 | 32 | ||
33 | # Visual Studio 2017 auto generated files | ||
34 | Generated\ Files/ | ||
35 | |||
32 | # MSTest test Results | 36 | # MSTest test Results |
33 | [Tt]est[Rr]esult*/ | 37 | [Tt]est[Rr]esult*/ |
34 | [Bb]uild[Ll]og.* | 38 | [Bb]uild[Ll]og.* |
@@ -49,16 +53,21 @@ BenchmarkDotNet.Artifacts/ | |||
49 | project.lock.json | 53 | project.lock.json |
50 | project.fragment.lock.json | 54 | project.fragment.lock.json |
51 | artifacts/ | 55 | artifacts/ |
52 | **/Properties/launchSettings.json | ||
53 | 56 | ||
57 | # StyleCop | ||
58 | StyleCopReport.xml | ||
59 | |||
60 | # Files built by Visual Studio | ||
54 | *_i.c | 61 | *_i.c |
55 | *_p.c | 62 | *_p.c |
56 | *_i.h | 63 | *_h.h |
57 | *.ilk | 64 | *.ilk |
58 | *.meta | 65 | *.meta |
59 | *.obj | 66 | *.obj |
67 | *.iobj | ||
60 | *.pch | 68 | *.pch |
61 | *.pdb | 69 | *.pdb |
70 | *.ipdb | ||
62 | *.pgc | 71 | *.pgc |
63 | *.pgd | 72 | *.pgd |
64 | *.rsp | 73 | *.rsp |
@@ -96,6 +105,9 @@ ipch/ | |||
96 | *.vspx | 105 | *.vspx |
97 | *.sap | 106 | *.sap |
98 | 107 | ||
108 | # Visual Studio Trace Files | ||
109 | *.e2e | ||
110 | |||
99 | # TFS 2012 Local Workspace | 111 | # TFS 2012 Local Workspace |
100 | $tf/ | 112 | $tf/ |
101 | 113 | ||
@@ -116,6 +128,10 @@ _TeamCity* | |||
116 | # DotCover is a Code Coverage Tool | 128 | # DotCover is a Code Coverage Tool |
117 | *.dotCover | 129 | *.dotCover |
118 | 130 | ||
131 | # AxoCover is a Code Coverage Tool | ||
132 | .axoCover/* | ||
133 | !.axoCover/settings.json | ||
134 | |||
119 | # Visual Studio code coverage results | 135 | # Visual Studio code coverage results |
120 | *.coverage | 136 | *.coverage |
121 | *.coveragexml | 137 | *.coveragexml |
@@ -164,11 +180,11 @@ PublishScripts/ | |||
164 | # NuGet Packages | 180 | # NuGet Packages |
165 | *.nupkg | 181 | *.nupkg |
166 | # The packages folder can be ignored because of Package Restore | 182 | # The packages folder can be ignored because of Package Restore |
167 | **/packages/* | 183 | **/[Pp]ackages/* |
168 | # except build/, which is used as an MSBuild target. | 184 | # except build/, which is used as an MSBuild target. |
169 | !**/packages/build/ | 185 | !**/[Pp]ackages/build/ |
170 | # Uncomment if necessary however generally it will be regenerated when needed | 186 | # Uncomment if necessary however generally it will be regenerated when needed |
171 | #!**/packages/repositories.config | 187 | #!**/[Pp]ackages/repositories.config |
172 | # NuGet v3's project.json files produces more ignorable files | 188 | # NuGet v3's project.json files produces more ignorable files |
173 | *.nuget.props | 189 | *.nuget.props |
174 | *.nuget.targets | 190 | *.nuget.targets |
@@ -205,6 +221,10 @@ ClientBin/ | |||
205 | *.publishsettings | 221 | *.publishsettings |
206 | orleans.codegen.cs | 222 | orleans.codegen.cs |
207 | 223 | ||
224 | # Including strong name files can present a security risk | ||
225 | # (https://github.com/github/gitignore/pull/2483#issue-259490424) | ||
226 | #*.snk | ||
227 | |||
208 | # Since there are multiple workflows, uncomment next line to ignore bower_components | 228 | # Since there are multiple workflows, uncomment next line to ignore bower_components |
209 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) | 229 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) |
210 | #bower_components/ | 230 | #bower_components/ |
@@ -219,6 +239,8 @@ _UpgradeReport_Files/ | |||
219 | Backup*/ | 239 | Backup*/ |
220 | UpgradeLog*.XML | 240 | UpgradeLog*.XML |
221 | UpgradeLog*.htm | 241 | UpgradeLog*.htm |
242 | ServiceFabricBackup/ | ||
243 | *.rptproj.bak | ||
222 | 244 | ||
223 | # SQL Server files | 245 | # SQL Server files |
224 | *.mdf | 246 | *.mdf |
@@ -229,6 +251,7 @@ UpgradeLog*.htm | |||
229 | *.rdl.data | 251 | *.rdl.data |
230 | *.bim.layout | 252 | *.bim.layout |
231 | *.bim_*.settings | 253 | *.bim_*.settings |
254 | *.rptproj.rsuser | ||
232 | 255 | ||
233 | # Microsoft Fakes | 256 | # Microsoft Fakes |
234 | FakesAssemblies/ | 257 | FakesAssemblies/ |
@@ -240,9 +263,6 @@ FakesAssemblies/ | |||
240 | .ntvs_analysis.dat | 263 | .ntvs_analysis.dat |
241 | node_modules/ | 264 | node_modules/ |
242 | 265 | ||
243 | # Typescript v1 declaration files | ||
244 | typings/ | ||
245 | |||
246 | # Visual Studio 6 build log | 266 | # Visual Studio 6 build log |
247 | *.plg | 267 | *.plg |
248 | 268 | ||
@@ -292,4 +312,22 @@ __pycache__/ | |||
292 | *.btp.cs | 312 | *.btp.cs |
293 | *.btm.cs | 313 | *.btm.cs |
294 | *.odx.cs | 314 | *.odx.cs |
295 | *.xsd.cs \ No newline at end of file | 315 | *.xsd.cs |
316 | |||
317 | # OpenCover UI analysis results | ||
318 | OpenCover/ | ||
319 | |||
320 | # Azure Stream Analytics local run output | ||
321 | ASALocalRun/ | ||
322 | |||
323 | # MSBuild Binary and Structured Log | ||
324 | *.binlog | ||
325 | |||
326 | # NVidia Nsight GPU debugger configuration file | ||
327 | *.nvuser | ||
328 | |||
329 | # MFractors (Xamarin productivity tool) working folder | ||
330 | .mfractor/ | ||
331 | |||
332 | # Local History for Visual Studio | ||
333 | .localhistory/ | ||