Skip to content

Commit 714722f

Browse files
committed
Windows 10 RTM updates
0 parents  commit 714722f

File tree

7,951 files changed

+759850
-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.

7,951 files changed

+759850
-0
lines changed

.gitattributes

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
###############################################################################
2+
# Set default behavior to automatically normalize line endings.
3+
###############################################################################
4+
* text=auto
5+
6+
# Declare files that will always have CRLF line endings on checkout.
7+
*.appxmanifest text eol=crlf
8+
*.c text eol=crlf
9+
*.cpp text eol=crlf
10+
*.cs text eol=crlf
11+
*.csproj text eol=crlf
12+
*.css text eol=crlf
13+
*.def text eol=crlf
14+
*.filters text eol=crlf
15+
*.h text eol=crlf
16+
*.htm text eol=crlf
17+
*.html text eol=crlf
18+
*.idl text eol=crlf
19+
*.inf text eol=crlf
20+
*.inx text eol=crlf
21+
*.js text eol=crlf
22+
*.jsproj text eol=crlf
23+
*.rc text eol=crlf
24+
*.rgs text eol=crlf
25+
*.sln text eol=crlf
26+
*.vcxproj text eol=crlf
27+
*.xaml text eol=crlf
28+
29+
###############################################################################
30+
# Set default behavior for command prompt diff.
31+
#
32+
# This is need for earlier builds of msysgit that does not have it on by
33+
# default for csharp files.
34+
# Note: This is only used by command line
35+
###############################################################################
36+
*.cs diff=csharp
37+

.gitignore

+201
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,201 @@
1+
## Ignore Visual Studio temporary files, build results, and
2+
## files generated by popular Visual Studio add-ons.
3+
4+
# User-specific files
5+
*.suo
6+
*.user
7+
*.userosscache
8+
*.sln.docstates
9+
10+
# User-specific files (MonoDevelop/Xamarin Studio)
11+
*.userprefs
12+
13+
# Build results
14+
[Dd]ebug/
15+
[Dd]ebugPublic/
16+
[Rr]elease/
17+
[Rr]eleases/
18+
[Gg]enerated Files/
19+
x64/
20+
x86/
21+
build/
22+
bld/
23+
[Bb]in/
24+
[Oo]bj/
25+
26+
# Visual Studo 2015 cache/options directory
27+
.vs/
28+
29+
# MSTest test Results
30+
[Tt]est[Rr]esult*/
31+
[Bb]uild[Ll]og.*
32+
33+
# NUNIT
34+
*.VisualState.xml
35+
TestResult.xml
36+
37+
# Build Results of an ATL Project
38+
[Dd]ebugPS/
39+
[Rr]eleasePS/
40+
dlldata.c
41+
42+
*_i.c
43+
*_p.c
44+
*_i.h
45+
*.ilk
46+
*.meta
47+
*.obj
48+
*.pch
49+
*.pdb
50+
*.pgc
51+
*.pgd
52+
*.rsp
53+
*.sbr
54+
*.tlb
55+
*.tli
56+
*.tlh
57+
*.tmp
58+
*.tmp_proj
59+
*.log
60+
*.vspscc
61+
*.vssscc
62+
.builds
63+
*.pidb
64+
*.svclog
65+
*.scc
66+
67+
# Chutzpah Test files
68+
_Chutzpah*
69+
70+
# Visual C++ cache files
71+
ipch/
72+
*.aps
73+
*.ncb
74+
*.opensdf
75+
*.sdf
76+
*.cachefile
77+
78+
# Visual Studio profiler
79+
*.psess
80+
*.vsp
81+
*.vspx
82+
83+
# TFS 2012 Local Workspace
84+
$tf/
85+
86+
# Guidance Automation Toolkit
87+
*.gpState
88+
89+
# ReSharper is a .NET coding add-in
90+
_ReSharper*/
91+
*.[Rr]e[Ss]harper
92+
*.DotSettings.user
93+
94+
# JustCode is a .NET coding addin-in
95+
.JustCode
96+
97+
# TeamCity is a build add-in
98+
_TeamCity*
99+
100+
# DotCover is a Code Coverage Tool
101+
*.dotCover
102+
103+
# NCrunch
104+
_NCrunch_*
105+
.*crunch*.local.xml
106+
107+
# MightyMoose
108+
*.mm.*
109+
AutoTest.Net/
110+
111+
# Web workbench (sass)
112+
.sass-cache/
113+
114+
# Installshield output folder
115+
[Ee]xpress/
116+
117+
# DocProject is a documentation generator add-in
118+
DocProject/buildhelp/
119+
DocProject/Help/*.HxT
120+
DocProject/Help/*.HxC
121+
DocProject/Help/*.hhc
122+
DocProject/Help/*.hhk
123+
DocProject/Help/*.hhp
124+
DocProject/Help/Html2
125+
DocProject/Help/html
126+
127+
# Click-Once directory
128+
publish/
129+
130+
# Publish Web Output
131+
*.[Pp]ublish.xml
132+
*.azurePubxml
133+
# TODO: Comment the next line if you want to checkin your web deploy settings
134+
# but database connection strings (with potential passwords) will be unencrypted
135+
*.pubxml
136+
*.publishproj
137+
138+
# NuGet Packages
139+
*.nupkg
140+
# The packages folder can be ignored because of Package Restore
141+
**/packages/*
142+
# except build/, which is used as an MSBuild target.
143+
!**/packages/build/
144+
# Uncomment if necessary however generally it will be regenerated when needed
145+
#!**/packages/repositories.config
146+
147+
# Windows Azure Build Output
148+
csx/
149+
*.build.csdef
150+
151+
# Windows Store app package directory
152+
AppPackages/
153+
154+
# Others
155+
*.[Cc]ache
156+
ClientBin/
157+
[Ss]tyle[Cc]op.*
158+
~$*
159+
*~
160+
*.dbmdl
161+
*.dbproj.schemaview
162+
*.pfx
163+
*.publishsettings
164+
node_modules/
165+
bower_components/
166+
167+
# RIA/Silverlight projects
168+
Generated_Code/
169+
170+
# Backup & report files from converting an old project file
171+
# to a newer Visual Studio version. Backup files are not needed,
172+
# because we have git ;-)
173+
_UpgradeReport_Files/
174+
Backup*/
175+
UpgradeLog*.XML
176+
UpgradeLog*.htm
177+
178+
# SQL Server files
179+
*.mdf
180+
*.ldf
181+
182+
# Business Intelligence projects
183+
*.rdl.data
184+
*.bim.layout
185+
*.bim_*.settings
186+
187+
# Microsoft Fakes
188+
FakesAssemblies/
189+
190+
# Node.js Tools for Visual Studio
191+
.ntvs_analysis.dat
192+
193+
# Visual Studio 6 build log
194+
*.plg
195+
196+
# Visual Studio 6 workspace options file
197+
*.opt
198+
199+
# Custom ignores
200+
gallery.xml
201+
project.lock.json

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) Microsoft Corporation
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

0 commit comments

Comments
 (0)