Skip to content

Commit 8a068e8

Browse files
committed
NuGet.Server performance improvements
1 parent 11b1aae commit 8a068e8

73 files changed

Lines changed: 5199 additions & 0 deletions

File tree

Some content is hidden

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

.gitignore

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

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "xdt"]
2+
path = xdt
3+
url = https://git01.codeplex.com/xdt

COPYRIGHT.txt

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Copyright 2015 .NET Foundation
2+
3+
Licensed under the Apache License, Version 2.0 (the "License");
4+
you may not use this file except in compliance with the License.
5+
You may obtain a copy of the License at
6+
7+
http://www.apache.org/licenses/LICENSE-2.0
8+
9+
Unless required by applicable law or agreed to in writing, software
10+
distributed under the License is distributed on an "AS IS" BASIS,
11+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
See the License for the specific language governing permissions and
13+
limitations under the License.

CodeAnalysisDictionary.xml

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
<Dictionary>
2+
<Words>
3+
<Unrecognized>
4+
</Unrecognized>
5+
<Recognized>
6+
<Word>Nu</Word>
7+
<Word>NuGet</Word>
8+
<Word>nuget</Word>
9+
<Word>Nupkg</Word>
10+
<Word>Tokenizer</Word>
11+
<Word>Mirrorer</Word>
12+
<Word>Info</Word>
13+
<Word>dte</Word>
14+
<Word>param</Word>
15+
<Word>Infos</Word>
16+
<Word>nuspec</Word>
17+
<Word>tfs</Word>
18+
<Word>PowerShell</Word>
19+
<Word>fwlink</Word>
20+
<Word>Cpp</Word>
21+
<Word>Php</Word>
22+
<Word>Ashx</Word>
23+
<Word>Asax</Word>
24+
<Word>Plugin</Word>
25+
<Word>Plugins</Word>
26+
<Word>Notifier</Word>
27+
<Word>svn</Word>
28+
<Word>csproj</Word>
29+
<Word>vbproj</Word>
30+
<Word>fsproj</Word>
31+
<Word>semver</Word>
32+
<Word>Auth</Word>
33+
<Word>api</Word>
34+
<Word>Dir</Word>
35+
<Word>Mvc</Word>
36+
<Word>Vsix</Word>
37+
<Word>Prerelease</Word>
38+
<Word>Preprocessor</Word>
39+
<Word>Percent</Word>
40+
<Word>Callback</Word>
41+
<Word>Color</Word>
42+
<Word>Ld</Word>
43+
</Recognized>
44+
<Deprecated>
45+
<Term PreferredAlternate=""></Term>
46+
</Deprecated>
47+
<Compound>
48+
<Term CompoundAlternate="NuGet">NuGet</Term>
49+
<Term CompoundAlternate="nuget">nuget</Term>
50+
<Term CompoundAlternate="ConsoleDispatcher">ConsoleDispatcher</Term>
51+
<Term CompoundAlternate="PowerShell">PowerShell</Term>
52+
<Term CompoundAlternate="WebSite">WebSite</Term>
53+
</Compound>
54+
<DiscreteExceptions>
55+
<Term>nuget</Term>
56+
</DiscreteExceptions>
57+
</Words>
58+
<Acronyms>
59+
<CasingExceptions>
60+
<Acronym>Vs</Acronym>
61+
<Acronym>DTE</Acronym>
62+
<Acronym>TFS</Acronym>
63+
<Acronym>STS</Acronym>
64+
</CasingExceptions>
65+
</Acronyms>
66+
</Dictionary>

0 commit comments

Comments
 (0)