Skip to content

Commit e06a22c

Browse files
committed
initial commit
0 parents  commit e06a22c

File tree

3,180 files changed

+746869
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,180 files changed

+746869
-0
lines changed

.gitattributes

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Set default behaviour, in case users don't have core.autocrlf set.
2+
* text=auto
3+
4+
*.sln text eol=crlf
5+
*.cs text eol=crlf
6+
*.csproj text eol=crlf
7+
*.ps1 text eol=crlf
8+
build.proj text eol=crlf

.gitignore

Lines changed: 194 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,194 @@
1+
# Azure PowerShell specific
2+
src/Publish/
3+
src/Package/
4+
5+
obj
6+
TestResults
7+
*.orig
8+
*.ncrunchsolution
9+
*.patch
10+
msbuild.log
11+
12+
# app.config is not useful for PowerShell.
13+
# please do not commit any app.config files.
14+
app.config
15+
## Ignore Visual Studio temporary files, build results, and
16+
## files generated by popular Visual Studio add-ons.
17+
18+
# User-specific files
19+
*.suo
20+
*.user
21+
*.sln.docstates
22+
23+
# Build results
24+
[Dd]ebug/
25+
[Dd]ebugPublic/
26+
[Rr]elease/
27+
[Rr]eleases/
28+
x64/
29+
build/
30+
bld/
31+
src/*/[Bb]in/
32+
[Oo]bj/
33+
34+
# Roslyn cache directories
35+
*.ide/
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+
*_i.c
51+
*_p.c
52+
*_i.h
53+
*.ilk
54+
*.meta
55+
*.obj
56+
*.pch
57+
*.pdb
58+
*.pgc
59+
*.pgd
60+
*.rsp
61+
*.sbr
62+
*.tlb
63+
*.tli
64+
*.tlh
65+
*.tmp
66+
*.tmp_proj
67+
*.log
68+
*.vspscc
69+
*.vssscc
70+
.builds
71+
*.pidb
72+
*.svclog
73+
*.scc
74+
75+
# Chutzpah Test files
76+
_Chutzpah*
77+
78+
# Visual C++ cache files
79+
ipch/
80+
*.aps
81+
*.ncb
82+
*.opensdf
83+
*.sdf
84+
*.cachefile
85+
86+
# Visual Studio profiler
87+
*.psess
88+
*.vsp
89+
*.vspx
90+
91+
# TFS 2012 Local Workspace
92+
$tf/
93+
94+
# Guidance Automation Toolkit
95+
*.gpState
96+
97+
# ReSharper is a .NET coding add-in
98+
_ReSharper*/
99+
*.[Rr]e[Ss]harper
100+
*.DotSettings.user
101+
102+
# JustCode is a .NET coding addin-in
103+
.JustCode
104+
105+
# TeamCity is a build add-in
106+
_TeamCity*
107+
108+
# DotCover is a Code Coverage Tool
109+
*.dotCover
110+
111+
# NCrunch
112+
_NCrunch_*
113+
.*crunch*.local.xml
114+
115+
# MightyMoose
116+
*.mm.*
117+
AutoTest.Net/
118+
119+
# Web workbench (sass)
120+
.sass-cache/
121+
122+
# Installshield output folder
123+
[Ee]xpress/
124+
125+
# DocProject is a documentation generator add-in
126+
DocProject/buildhelp/
127+
DocProject/Help/*.HxT
128+
DocProject/Help/*.HxC
129+
DocProject/Help/*.hhc
130+
DocProject/Help/*.hhk
131+
DocProject/Help/*.hhp
132+
DocProject/Help/Html2
133+
DocProject/Help/html
134+
135+
# Publish Web Output
136+
*.[Pp]ublish.xml
137+
*.azurePubxml
138+
## TODO: Comment the next line if you want to checkin your
139+
## web deploy settings but do note that will include unencrypted
140+
## passwords
141+
*.pubxml
142+
143+
# NuGet Packages Directory
144+
packages/
145+
## TODO: If the tool you use requires repositories.config
146+
## uncomment the next line
147+
#!packages/repositories.config
148+
149+
# Enable "build/" folder in the NuGet Packages folder since
150+
# NuGet packages use it for MSBuild targets.
151+
# This line needs to be after the ignore of the build folder
152+
# (and the packages folder if the line above has been uncommented)
153+
!packages/build/
154+
155+
# Microsoft Azure Build Output
156+
csx/
157+
*.build.csdef
158+
159+
# Windows Store app package directory
160+
AppPackages/
161+
162+
# Others
163+
*.Cache
164+
ClientBin/
165+
[Ss]tyle[Cc]op.*
166+
~$*
167+
*~
168+
*.dbmdl
169+
*.dbproj.schemaview
170+
node_modules/
171+
.pshproj
172+
173+
# RIA/Silverlight projects
174+
Generated_Code/
175+
176+
# Backup & report files from converting an old project file
177+
# to a newer Visual Studio version. Backup files are not needed,
178+
# because we have git ;-)
179+
_UpgradeReport_Files/
180+
Backup*/
181+
UpgradeLog*.XML
182+
UpgradeLog*.htm
183+
184+
# SQL Server files
185+
*.mdf
186+
*.ldf
187+
188+
# Business Intelligence projects
189+
*.rdl.data
190+
*.bim.layout
191+
*.bim_*.settings
192+
193+
# Microsoft Fakes
194+
FakesAssemblies/

0 commit comments

Comments
 (0)