Skip to content

Commit e1a213b

Browse files
andulvmaartenba
authored andcommitted
Split into NuGet.Server and NuGet.Server.Core (#11)
Split NuGet.Server into multiple projects/packages
1 parent 0291033 commit e1a213b

42 files changed

Lines changed: 293 additions & 74 deletions

Some content is hidden

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

NuGet.Server.sln

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 14
4-
VisualStudioVersion = 14.0.24720.0
4+
VisualStudioVersion = 14.0.25123.0
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{E7B39EAD-EA32-4011-845A-C949A336389A}"
77
EndProject
@@ -16,6 +16,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NuGet.Server", "src\NuGet.S
1616
EndProject
1717
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NuGet.Server.Tests", "test\NuGet.Server.Tests\NuGet.Server.Tests.csproj", "{92D18050-3867-4E39-B305-9F9870F66F5E}"
1818
EndProject
19+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NuGet.Server.Core", "src\NuGet.Server.Core\NuGet.Server.Core.csproj", "{1FE62F82-927A-4437-91F1-1A965E51682B}"
20+
EndProject
1921
Global
2022
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2123
Coverage|Any CPU = Coverage|Any CPU
@@ -70,6 +72,26 @@ Global
7072
{92D18050-3867-4E39-B305-9F9870F66F5E}.Release|Any CPU.Build.0 = Release|Any CPU
7173
{92D18050-3867-4E39-B305-9F9870F66F5E}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
7274
{92D18050-3867-4E39-B305-9F9870F66F5E}.Release|Mixed Platforms.Build.0 = Release|Any CPU
75+
{1FE62F82-927A-4437-91F1-1A965E51682B}.Coverage|Any CPU.ActiveCfg = Release|Any CPU
76+
{1FE62F82-927A-4437-91F1-1A965E51682B}.Coverage|Any CPU.Build.0 = Release|Any CPU
77+
{1FE62F82-927A-4437-91F1-1A965E51682B}.Coverage|Mixed Platforms.ActiveCfg = Release|Any CPU
78+
{1FE62F82-927A-4437-91F1-1A965E51682B}.Coverage|Mixed Platforms.Build.0 = Release|Any CPU
79+
{1FE62F82-927A-4437-91F1-1A965E51682B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
80+
{1FE62F82-927A-4437-91F1-1A965E51682B}.Debug|Any CPU.Build.0 = Debug|Any CPU
81+
{1FE62F82-927A-4437-91F1-1A965E51682B}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
82+
{1FE62F82-927A-4437-91F1-1A965E51682B}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
83+
{1FE62F82-927A-4437-91F1-1A965E51682B}.Mono Debug|Any CPU.ActiveCfg = Debug|Any CPU
84+
{1FE62F82-927A-4437-91F1-1A965E51682B}.Mono Debug|Any CPU.Build.0 = Debug|Any CPU
85+
{1FE62F82-927A-4437-91F1-1A965E51682B}.Mono Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
86+
{1FE62F82-927A-4437-91F1-1A965E51682B}.Mono Debug|Mixed Platforms.Build.0 = Debug|Any CPU
87+
{1FE62F82-927A-4437-91F1-1A965E51682B}.Mono Release|Any CPU.ActiveCfg = Release|Any CPU
88+
{1FE62F82-927A-4437-91F1-1A965E51682B}.Mono Release|Any CPU.Build.0 = Release|Any CPU
89+
{1FE62F82-927A-4437-91F1-1A965E51682B}.Mono Release|Mixed Platforms.ActiveCfg = Release|Any CPU
90+
{1FE62F82-927A-4437-91F1-1A965E51682B}.Mono Release|Mixed Platforms.Build.0 = Release|Any CPU
91+
{1FE62F82-927A-4437-91F1-1A965E51682B}.Release|Any CPU.ActiveCfg = Release|Any CPU
92+
{1FE62F82-927A-4437-91F1-1A965E51682B}.Release|Any CPU.Build.0 = Release|Any CPU
93+
{1FE62F82-927A-4437-91F1-1A965E51682B}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
94+
{1FE62F82-927A-4437-91F1-1A965E51682B}.Release|Mixed Platforms.Build.0 = Release|Any CPU
7395
EndGlobalSection
7496
GlobalSection(SolutionProperties) = preSolution
7597
HideSolutionNode = FALSE

build.cmd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ IF %ERRORLEVEL% NEQ 0 goto error
3737
REM Package
3838
mkdir artifacts
3939
mkdir artifacts\packages
40+
call :ExecuteCmd tools\nuget.exe pack "src\NuGet.Server.Core\NuGet.Server.Core.csproj" -symbols -o artifacts\packages -p Configuration=%config% %version%
4041
call :ExecuteCmd tools\nuget.exe pack "src\NuGet.Server\NuGet.Server.csproj" -symbols -o artifacts\packages -p Configuration=%config% %version%
4142
IF %ERRORLEVEL% NEQ 0 goto error
4243

File renamed without changes.
File renamed without changes.

src/NuGet.Server/DataServices/IgnoreCaseForPackageIdInterceptor.cs renamed to src/NuGet.Server.Core/DataServices/IgnoreCaseForPackageIdInterceptor.cs

File renamed without changes.

src/NuGet.Server/DataServices/NormalizeVersionInterceptor.cs renamed to src/NuGet.Server.Core/DataServices/NormalizeVersionInterceptor.cs

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)