Skip to content

Commit 4f1895c

Browse files
committedOct 19, 2016
Initial Source Code Commits (-:
1 parent 49334fd commit 4f1895c

File tree

591 files changed

+34476
-54
lines changed

Some content is hidden

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

591 files changed

+34476
-54
lines changed
 

‎.gitattributes

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
###############################################################################
2+
# Set default behavior to automatically normalize line endings.
3+
###############################################################################
4+
* text=auto
5+
6+
###############################################################################
7+
# Set default behavior for command prompt diff.
8+
#
9+
# This is need for earlier builds of msysgit that does not have it on by
10+
# default for csharp files.
11+
# Note: This is only used by command line
12+
###############################################################################
13+
#*.cs diff=csharp
14+
15+
###############################################################################
16+
# Set the merge driver for project and solution files
17+
#
18+
# Merging from the command prompt will add diff markers to the files if there
19+
# are conflicts (Merging from VS is not affected by the settings below, in VS
20+
# the diff markers are never inserted). Diff markers may cause the following
21+
# file extensions to fail to load in VS. An alternative would be to treat
22+
# these files as binary and thus will always conflict and require user
23+
# intervention with every merge. To do so, just uncomment the entries below
24+
###############################################################################
25+
#*.sln merge=binary
26+
#*.csproj merge=binary
27+
#*.vbproj merge=binary
28+
#*.vcxproj merge=binary
29+
#*.vcproj merge=binary
30+
#*.dbproj merge=binary
31+
#*.fsproj merge=binary
32+
#*.lsproj merge=binary
33+
#*.wixproj merge=binary
34+
#*.modelproj merge=binary
35+
#*.sqlproj merge=binary
36+
#*.wwaproj merge=binary
37+
38+
###############################################################################
39+
# behavior for image files
40+
#
41+
# image files are treated as binary by default.
42+
###############################################################################
43+
#*.jpg binary
44+
#*.png binary
45+
#*.gif binary
46+
47+
###############################################################################
48+
# diff behavior for common document formats
49+
#
50+
# Convert binary document formats to text before diffing them. This feature
51+
# is only available from the command line. Turn it on by uncommenting the
52+
# entries below.
53+
###############################################################################
54+
#*.doc diff=astextplain
55+
#*.DOC diff=astextplain
56+
#*.docx diff=astextplain
57+
#*.DOCX diff=astextplain
58+
#*.dot diff=astextplain
59+
#*.DOT diff=astextplain
60+
#*.pdf diff=astextplain
61+
#*.PDF diff=astextplain
62+
#*.rtf diff=astextplain
63+
#*.RTF diff=astextplain

‎.gitignore

+44-54
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,13 @@
1717
[Rr]eleases/
1818
x64/
1919
x86/
20+
build/
2021
bld/
2122
[Bb]in/
2223
[Oo]bj/
23-
[Ll]og/
2424

2525
# Visual Studio 2015 cache/options directory
2626
.vs/
27-
# Uncomment if you have tasks that create the project's static files in wwwroot
28-
#wwwroot/
2927

3028
# MSTest test Results
3129
[Tt]est[Rr]esult*/
@@ -76,18 +74,14 @@ _Chutzpah*
7674
ipch/
7775
*.aps
7876
*.ncb
79-
*.opendb
8077
*.opensdf
8178
*.sdf
8279
*.cachefile
83-
*.VC.db
84-
*.VC.VC.opendb
8580

8681
# Visual Studio profiler
8782
*.psess
8883
*.vsp
8984
*.vspx
90-
*.sap
9185

9286
# TFS 2012 Local Workspace
9387
$tf/
@@ -112,7 +106,6 @@ _TeamCity*
112106
# NCrunch
113107
_NCrunch_*
114108
.*crunch*.local.xml
115-
nCrunchTemp_*
116109

117110
# MightyMoose
118111
*.mm.*
@@ -140,15 +133,12 @@ publish/
140133
# Publish Web Output
141134
*.[Pp]ublish.xml
142135
*.azurePubxml
143-
# TODO: Comment the next line if you want to checkin your web deploy settings
144-
# but database connection strings (with potential passwords) will be unencrypted
145-
*.pubxml
146-
*.publishproj
136+
## TODO: Comment the next line if you want to checkin your
137+
## web deploy settings but do note that will include unencrypted
138+
## passwords
139+
#*.pubxml
147140

148-
# Microsoft Azure Web App publish settings. Comment the next line if you want to
149-
# checkin your Azure Web App publish settings, but sensitive information contained
150-
# in these scripts will be unencrypted
151-
PublishScripts/
141+
*.publishproj
152142

153143
# NuGet Packages
154144
*.nupkg
@@ -158,23 +148,13 @@ PublishScripts/
158148
!**/packages/build/
159149
# Uncomment if necessary however generally it will be regenerated when needed
160150
#!**/packages/repositories.config
161-
# NuGet v3's project.json files produces more ignoreable files
162-
*.nuget.props
163-
*.nuget.targets
164151

165-
# Microsoft Azure Build Output
152+
# Windows Azure Build Output
166153
csx/
167154
*.build.csdef
168155

169-
# Microsoft Azure Emulator
170-
ecf/
171-
rcf/
172-
173-
# Windows Store app package directories and files
156+
# Windows Store app package directory
174157
AppPackages/
175-
BundleArtifacts/
176-
Package.StoreAssociation.xml
177-
_pkginfo.txt
178158

179159
# Visual Studio cache files
180160
# files ending in .cache can be ignored
@@ -184,19 +164,15 @@ _pkginfo.txt
184164

185165
# Others
186166
ClientBin/
167+
[Ss]tyle[Cc]op.*
187168
~$*
188169
*~
189170
*.dbmdl
190171
*.dbproj.schemaview
191-
*.pfx
192172
*.publishsettings
193173
node_modules/
194174
orleans.codegen.cs
195175

196-
# Since there are multiple workflows, uncomment next line to ignore bower_components
197-
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
198-
#bower_components/
199-
200176
# RIA/Silverlight projects
201177
Generated_Code/
202178

@@ -220,9 +196,6 @@ UpgradeLog*.htm
220196
# Microsoft Fakes
221197
FakesAssemblies/
222198

223-
# GhostDoc plugin setting file
224-
*.GhostDoc.xml
225-
226199
# Node.js Tools for Visual Studio
227200
.ntvs_analysis.dat
228201

@@ -232,21 +205,38 @@ FakesAssemblies/
232205
# Visual Studio 6 workspace options file
233206
*.opt
234207

235-
# Visual Studio LightSwitch build output
236-
**/*.HTMLClient/GeneratedArtifacts
237-
**/*.DesktopClient/GeneratedArtifacts
238-
**/*.DesktopClient/ModelManifest.xml
239-
**/*.Server/GeneratedArtifacts
240-
**/*.Server/ModelManifest.xml
241-
_Pvt_Extensions
242-
243-
# Paket dependency manager
244-
.paket/paket.exe
245-
paket-files/
246-
247-
# FAKE - F# Make
248-
.fake/
249-
250-
# JetBrains Rider
251-
.idea/
252-
*.sln.iml
208+
# LightSwitch generated files
209+
GeneratedArtifacts/
210+
_Pvt_Extensions/
211+
ModelManifest.xml
212+
213+
# Bit Foundation
214+
**/bower_components/*
215+
*.map
216+
**/typings/*
217+
/Foundation/Server/Foundation.Test/Test.Model.Context.js
218+
/Foundation/Server/Foundation.Test/Test.Model.Context.d.ts
219+
/Foundation/HtmlClient/Foundation.ViewModel.HtmlClient/foundation.viewmodel.js
220+
/Foundation/HtmlClient/Foundation.ViewModel.HtmlClient/foundation.viewmodel.d.ts
221+
/Foundation/HtmlClient/Foundation.View.HtmlClient/foundation.view.d.ts
222+
/Foundation/HtmlClient/Foundation.View.HtmlClient/contents/styles/loader.css
223+
/Foundation/HtmlClient/Foundation.Test.HtmlClient/foundation.test.js
224+
/Foundation/HtmlClient/Foundation.Test.HtmlClient/foundation.test.d.ts
225+
/Foundation/HtmlClient/Foundation.Test.Core.HtmlClient/foundation.test.d.ts
226+
/Foundation/HtmlClient/Foundation.Test.Core.HtmlClient/foundation.test.core.js
227+
/Foundation/HtmlClient/Foundation.Test.Core.HtmlClient/foundation.test.core.d.ts
228+
/Foundation/HtmlClient/Foundation.Core.HtmlClient/foundation.core.js
229+
/Foundation/HtmlClient/Foundation.Core.HtmlClient/foundation.core.d.ts
230+
/Foundation/HtmlClient/Foundation.View.HtmlClient/foundation.view.js
231+
/Foundation/HtmlClient/Foundation.Test.HtmlClient/Test.Model.Context.js
232+
/Foundation/HtmlClient/Foundation.Test.HtmlClient/Test.Model.Context.d.ts
233+
/Foundation/HtmlClient/Foundation.View.HtmlClient/contents/styles/theme.light.green.css
234+
/Foundation/HtmlClient/Foundation.View.HtmlClient/contents/styles/theme.light.blue.css
235+
/Foundation/HtmlClient/Foundation.View.HtmlClient/contents/styles/theme.dark.amber.css
236+
/Foundation/HtmlClient/Foundation.View.HtmlClient/contents/styles/theme.common.css
237+
/Foundation/HtmlClient/Foundation.View.HtmlClient/contents/styles/fa-IR.css
238+
/Foundation/HtmlClient/Foundation.View.HtmlClient/contents/styles/en-US.css
239+
/Foundation/HtmlClient/Foundation.View.HtmlClient/contents/styles/controls.css
240+
/Foundation/HtmlClient/Foundation.ViewModel.HtmlClient/Foundation.Model.Context.js
241+
/Foundation/HtmlClient/Foundation.ViewModel.HtmlClient/Foundation.Model.Context.d.ts
242+
/Foundation/Utilities/Foundation.CodeGenerators/Foundation.CodeGenerators/Implementations/HtmlClientProxyGenerator/Templates/*.cs

0 commit comments

Comments
 (0)
Please sign in to comment.