Skip to content

Commit 2d061ce

Browse files
committed
Add .git* files.
1 parent cb8b895 commit 2d061ce

File tree

2 files changed

+306
-0
lines changed

2 files changed

+306
-0
lines changed

.gitattributes

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
###############################################################################
2+
# Set default behavior to automatically normalize line endings.
3+
###############################################################################
4+
* text=auto
5+
*.cfg text eol=crlf
6+
*.version text eol=crlf
7+
*.txt text eol=crlf
8+
9+
###############################################################################
10+
# These files are text and should be normalized (convert crlf => lf)
11+
###############################################################################
12+
*.cs text=auto diff=csharp
13+
14+
###############################################################################
15+
# Images should be treated as binary
16+
# (binary is a macro for -text -diff)
17+
###############################################################################
18+
*.mu binary
19+
*.dds binary
20+
*.png binary
21+
*.jepg binary
22+
23+
###############################################################################
24+
# Visual Studio
25+
###############################################################################
26+
*.csproj text=auto merge=union
27+
*.sln -text merge=union

.gitignore

Lines changed: 279 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,279 @@
1+
# RemoteTech specific
2+
3+
4+
###############################################################################
5+
## Ignore Visual Studio temporary files, build results, and
6+
## files generated by popular Visual Studio add-ons.
7+
##
8+
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
9+
################################################################################
10+
# User-specific files
11+
*.suo
12+
*.user
13+
*.userosscache
14+
*.sln.docstates
15+
*.vcxproj.filters
16+
17+
# User-specific files (MonoDevelop/Xamarin Studio)
18+
*.userprefs
19+
20+
# Build results
21+
[Dd]ebug/
22+
[Dd]ebugPublic/
23+
[Rr]elease/
24+
[Rr]eleases/
25+
x64/
26+
x86/
27+
bld/
28+
[Bb]in/
29+
[Oo]bj/
30+
[Ll]og/
31+
32+
# Visual Studio 2015 cache/options directory
33+
.vs/
34+
# Uncomment if you have tasks that create the project's static files in wwwroot
35+
#wwwroot/
36+
37+
# MSTest test Results
38+
[Tt]est[Rr]esult*/
39+
[Bb]uild[Ll]og.*
40+
41+
# NUNIT
42+
*.VisualState.xml
43+
TestResult.xml
44+
45+
# Build Results of an ATL Project
46+
[Dd]ebugPS/
47+
[Rr]eleasePS/
48+
dlldata.c
49+
50+
# .NET Core
51+
project.lock.json
52+
project.fragment.lock.json
53+
artifacts/
54+
**/Properties/launchSettings.json
55+
56+
*_i.c
57+
*_p.c
58+
*_i.h
59+
*.ilk
60+
*.meta
61+
*.obj
62+
*.pch
63+
*.pdb
64+
*.pgc
65+
*.pgd
66+
*.rsp
67+
*.sbr
68+
*.tlb
69+
*.tli
70+
*.tlh
71+
*.tmp
72+
*.tmp_proj
73+
*.log
74+
*.vspscc
75+
*.vssscc
76+
.builds
77+
*.pidb
78+
*.svclog
79+
*.scc
80+
81+
# Chutzpah Test files
82+
_Chutzpah*
83+
84+
# Visual C++ cache files
85+
ipch/
86+
*.aps
87+
*.ncb
88+
*.opendb
89+
*.opensdf
90+
*.sdf
91+
*.cachefile
92+
*.VC.db
93+
*.VC.VC.opendb
94+
95+
# Visual Studio profiler
96+
*.psess
97+
*.vsp
98+
*.vspx
99+
*.sap
100+
101+
# TFS 2012 Local Workspace
102+
$tf/
103+
104+
# Guidance Automation Toolkit
105+
*.gpState
106+
107+
# ReSharper is a .NET coding add-in
108+
_ReSharper*/
109+
*.[Rr]e[Ss]harper
110+
*.DotSettings.user
111+
112+
# JustCode is a .NET coding add-in
113+
.JustCode
114+
115+
# TeamCity is a build add-in
116+
_TeamCity*
117+
118+
# DotCover is a Code Coverage Tool
119+
*.dotCover
120+
121+
# Visual Studio code coverage results
122+
*.coverage
123+
*.coveragexml
124+
125+
# NCrunch
126+
_NCrunch_*
127+
.*crunch*.local.xml
128+
nCrunchTemp_*
129+
130+
# MightyMoose
131+
*.mm.*
132+
AutoTest.Net/
133+
134+
# Web workbench (sass)
135+
.sass-cache/
136+
137+
# Installshield output folder
138+
[Ee]xpress/
139+
140+
# DocProject is a documentation generator add-in
141+
DocProject/buildhelp/
142+
DocProject/Help/*.HxT
143+
DocProject/Help/*.HxC
144+
DocProject/Help/*.hhc
145+
DocProject/Help/*.hhk
146+
DocProject/Help/*.hhp
147+
DocProject/Help/Html2
148+
DocProject/Help/html
149+
150+
# Click-Once directory
151+
publish/
152+
153+
# Publish Web Output
154+
*.[Pp]ublish.xml
155+
*.azurePubxml
156+
# TODO: Comment the next line if you want to checkin your web deploy settings
157+
# but database connection strings (with potential passwords) will be unencrypted
158+
*.pubxml
159+
*.publishproj
160+
161+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
162+
# checkin your Azure Web App publish settings, but sensitive information contained
163+
# in these scripts will be unencrypted
164+
PublishScripts/
165+
166+
# NuGet Packages
167+
*.nupkg
168+
# The packages folder can be ignored because of Package Restore
169+
**/packages/*
170+
# except build/, which is used as an MSBuild target.
171+
!**/packages/build/
172+
# Uncomment if necessary however generally it will be regenerated when needed
173+
#!**/packages/repositories.config
174+
# NuGet v3's project.json files produces more ignoreable files
175+
*.nuget.props
176+
*.nuget.targets
177+
178+
# Microsoft Azure Build Output
179+
csx/
180+
*.build.csdef
181+
182+
# Microsoft Azure Emulator
183+
ecf/
184+
rcf/
185+
186+
# Windows Store app package directories and files
187+
AppPackages/
188+
BundleArtifacts/
189+
Package.StoreAssociation.xml
190+
_pkginfo.txt
191+
192+
# Visual Studio cache files
193+
# files ending in .cache can be ignored
194+
*.[Cc]ache
195+
# but keep track of directories ending in .cache
196+
!*.[Cc]ache/
197+
198+
# Others
199+
ClientBin/
200+
~$*
201+
*~
202+
*.dbmdl
203+
*.dbproj.schemaview
204+
*.jfm
205+
*.pfx
206+
*.publishsettings
207+
node_modules/
208+
orleans.codegen.cs
209+
210+
# Since there are multiple workflows, uncomment next line to ignore bower_components
211+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
212+
#bower_components/
213+
214+
# RIA/Silverlight projects
215+
Generated_Code/
216+
217+
# Backup & report files from converting an old project file
218+
# to a newer Visual Studio version. Backup files are not needed,
219+
# because we have git ;-)
220+
_UpgradeReport_Files/
221+
Backup*/
222+
UpgradeLog*.XML
223+
UpgradeLog*.htm
224+
225+
# SQL Server files
226+
*.mdf
227+
*.ldf
228+
229+
# Business Intelligence projects
230+
*.rdl.data
231+
*.bim.layout
232+
*.bim_*.settings
233+
234+
# Microsoft Fakes
235+
FakesAssemblies/
236+
237+
# GhostDoc plugin setting file
238+
*.GhostDoc.xml
239+
240+
# Node.js Tools for Visual Studio
241+
.ntvs_analysis.dat
242+
243+
# Visual Studio 6 build log
244+
*.plg
245+
246+
# Visual Studio 6 workspace options file
247+
*.opt
248+
249+
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
250+
*.vbw
251+
252+
# Visual Studio LightSwitch build output
253+
**/*.HTMLClient/GeneratedArtifacts
254+
**/*.DesktopClient/GeneratedArtifacts
255+
**/*.DesktopClient/ModelManifest.xml
256+
**/*.Server/GeneratedArtifacts
257+
**/*.Server/ModelManifest.xml
258+
_Pvt_Extensions
259+
260+
# Paket dependency manager
261+
.paket/paket.exe
262+
paket-files/
263+
264+
# FAKE - F# Make
265+
.fake/
266+
267+
# JetBrains Rider
268+
.idea/
269+
*.sln.iml
270+
271+
# CodeRush
272+
.cr/
273+
274+
# Python Tools for Visual Studio (PTVS)
275+
__pycache__/
276+
*.pyc
277+
278+
# Cake - Uncomment if you are using it
279+
# tools/

0 commit comments

Comments
 (0)