Skip to content

Commit cb70828

Browse files
add .gitignore
1 parent 7542e18 commit cb70828

File tree

5 files changed

+362
-1
lines changed

5 files changed

+362
-1
lines changed

.gitignore

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

0 commit comments

Comments
 (0)