Skip to content
This repository was archived by the owner on Dec 18, 2018. It is now read-only.

Commit 6584a8b

Browse files
author
Nate McMaster
committed
Shorten folder names
Remove the Microsoft.AspNetCore.Server prefix from csproj and their folders. This is required to help us avoid max path issues on Windows.
1 parent fd6617d commit 6584a8b

File tree

288 files changed

+77
-46
lines changed

Some content is hidden

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

288 files changed

+77
-46
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ before_install:
2828
- if test "$TRAVIS_OS_NAME" == "osx"; then brew update; brew install openssl; ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/; ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/; fi
2929
script:
3030
- ./build.sh
31-
- if test "$TRAVIS_OS_NAME" != "osx"; then bash test/Microsoft.AspNetCore.Server.Kestrel.FunctionalTests/SystemdActivation/docker.sh; fi
31+
- if test "$TRAVIS_OS_NAME" != "osx"; then bash test/Kestrel.FunctionalTests/SystemdActivation/docker.sh; fi

.vscode/tasks.json

Lines changed: 20 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
},
88
// requires that you first run build.cmd or build.sh to install local builds of dotnet
99
"windows": {
10-
"command": "${env.LOCALAPPDATA}/Microsoft/dotnet/dotnet.exe"
10+
"command": "${env:USERPROFILE}/.dotnet/x64/dotnet.exe"
1111
},
1212
"osx": {
13-
"command": "${env.HOME}/.dotnet/dotnet"
13+
"command": "${env:HOME}/.dotnet/dotnet"
1414
},
1515
"linux": {
16-
"command": "${env.HOME}/.dotnet/dotnet"
16+
"command": "${env:HOME}/.dotnet/dotnet"
1717
},
1818
"suppressTaskName": true,
1919
"tasks": [
@@ -25,10 +25,17 @@
2525
},
2626
{
2727
"taskName": "Compile: solution",
28-
"isBuildCommand": true,
28+
"group": {
29+
"isDefault": true,
30+
"kind": "build"
31+
},
32+
"presentation": {
33+
"panel": "dedicated"
34+
},
2935
"args": [
3036
"build",
31-
"${workspaceRoot}/KestrelHttpServer.sln"
37+
"${workspaceRoot}/KestrelHttpServer.sln",
38+
"/p:GenerateFullPaths=true"
3239
],
3340
"problemMatcher": "$msCompile",
3441
// these have to defined here because of https://github.com/Microsoft/vscode/issues/20740
@@ -37,30 +44,32 @@
3744
"env": {
3845
// The location of .NET Framework reference assembiles.
3946
// These may not be installed yet if you have not run build.sh.
40-
"ReferenceAssemblyRoot": "${env.HOME}/.nuget/packages/netframeworkreferenceassemblies/4.6.1/content"
47+
"ReferenceAssemblyRoot": "${env:HOME}/.dotnet/buildtools/netfx/4.6.1/"
4148
}
4249
}
4350
},
4451
"linux": {
4552
"options": {
4653
"env": {
47-
"ReferenceAssemblyRoot": "${env.HOME}/.nuget/packages/netframeworkreferenceassemblies/4.6.1/content"
54+
"ReferenceAssemblyRoot": "${env:HOME}/.dotnet/buildtools/netfx/4.6.1/"
4855
}
4956
}
5057
}
5158
},
5259
{
5360
"taskName": "Test",
5461
"args": [
55-
"test"
62+
"test",
63+
"/p:GenerateFullPaths=true"
5664
],
5765
"problemMatcher": "$msCompile",
58-
"isTestCommand": true
66+
"group": "test"
5967
},
6068
{
6169
"taskName": "Compile: CodeGenerator",
6270
"args": [
63-
"build"
71+
"build",
72+
"/p:GenerateFullPaths=true"
6473
],
6574
"options": {
6675
"cwd": "${workspaceRoot}/tools/CodeGenerator/"
@@ -101,7 +110,7 @@
101110
"Release"
102111
],
103112
"options": {
104-
"cwd": "${workspaceRoot}/test/Microsoft.AspNetCore.Server.Kestrel.Performance/"
113+
"cwd": "${workspaceRoot}/test/Kestrel.Performance/"
105114
}
106115
}
107116
]

KestrelHttpServer.sln

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -36,21 +36,21 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "shared", "shared", "{0EF2AC
3636
test\shared\TestServiceContext.cs = test\shared\TestServiceContext.cs
3737
EndProjectSection
3838
EndProject
39-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.Server.Kestrel.Core", "src\Microsoft.AspNetCore.Server.Kestrel.Core\Microsoft.AspNetCore.Server.Kestrel.Core.csproj", "{F510611A-3BEE-4B88-A613-5F4A74ED82A1}"
39+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Kestrel.Core", "src\Kestrel.Core\Kestrel.Core.csproj", "{F510611A-3BEE-4B88-A613-5F4A74ED82A1}"
4040
EndProject
41-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.Server.Kestrel.Core.Tests", "test\Microsoft.AspNetCore.Server.Kestrel.Core.Tests\Microsoft.AspNetCore.Server.Kestrel.Core.Tests.csproj", "{37F3BFB2-6454-49E5-9D7F-581BF755CCFE}"
41+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Kestrel.Core.Tests", "test\Kestrel.Core.Tests\Kestrel.Core.Tests.csproj", "{37F3BFB2-6454-49E5-9D7F-581BF755CCFE}"
4242
EndProject
4343
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SampleApp", "samples\SampleApp\SampleApp.csproj", "{2C3CB3DC-EEBF-4F52-9E1C-4F2F972E76C3}"
4444
EndProject
4545
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LargeResponseApp", "samples\LargeResponseApp\LargeResponseApp.csproj", "{B35D4D31-E74C-4646-8A11-7A7A40F0021E}"
4646
EndProject
4747
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CodeGenerator", "tools\CodeGenerator\CodeGenerator.csproj", "{BD2D4D29-1BD9-40D0-BB31-337D5416B63C}"
4848
EndProject
49-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.Server.Kestrel.Https", "src\Microsoft.AspNetCore.Server.Kestrel.Https\Microsoft.AspNetCore.Server.Kestrel.Https.csproj", "{5F64B3C3-0C2E-431A-B820-A81BBFC863DA}"
49+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Kestrel.Https", "src\Kestrel.Https\Kestrel.Https.csproj", "{5F64B3C3-0C2E-431A-B820-A81BBFC863DA}"
5050
EndProject
51-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.Server.Kestrel.FunctionalTests", "test\Microsoft.AspNetCore.Server.Kestrel.FunctionalTests\Microsoft.AspNetCore.Server.Kestrel.FunctionalTests.csproj", "{9559A5F1-080C-4909-B6CF-7E4B3DC55748}"
51+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Kestrel.FunctionalTests", "test\Kestrel.FunctionalTests\Kestrel.FunctionalTests.csproj", "{9559A5F1-080C-4909-B6CF-7E4B3DC55748}"
5252
EndProject
53-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.Server.Kestrel.Performance", "test\Microsoft.AspNetCore.Server.Kestrel.Performance\Microsoft.AspNetCore.Server.Kestrel.Performance.csproj", "{EBFE9719-A44B-4978-A71F-D5C254E7F35A}"
53+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Kestrel.Performance", "test\Kestrel.Performance\Kestrel.Performance.csproj", "{EBFE9719-A44B-4978-A71F-D5C254E7F35A}"
5454
EndProject
5555
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "TestCertificates", "TestCertificates", "{2822C132-BFFB-4D53-AC5B-E7E47DD81A6E}"
5656
ProjectSection(SolutionItems) = preProject
@@ -68,17 +68,17 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "TestCertificates", "TestCer
6868
test\shared\TestCertificates\testCert.pfx = test\shared\TestCertificates\testCert.pfx
6969
EndProjectSection
7070
EndProject
71-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv", "src\Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv\Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.csproj", "{A76B8C8C-0DC5-4DD3-9B1F-02E51A0915F4}"
71+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Kestrel.Transport.Libuv", "src\Kestrel.Transport.Libuv\Kestrel.Transport.Libuv.csproj", "{A76B8C8C-0DC5-4DD3-9B1F-02E51A0915F4}"
7272
EndProject
73-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.Server.Kestrel", "src\Microsoft.AspNetCore.Server.Kestrel\Microsoft.AspNetCore.Server.Kestrel.csproj", "{56139957-5C29-4E7D-89BD-7D20598B4EAF}"
73+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Kestrel", "src\Kestrel\Kestrel.csproj", "{56139957-5C29-4E7D-89BD-7D20598B4EAF}"
7474
EndProject
75-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets", "src\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.csproj", "{6950B18F-A3D2-41A4-AFEC-8B7C49517611}"
75+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Kestrel.Transport.Sockets", "src\Kestrel.Transport.Sockets\Kestrel.Transport.Sockets.csproj", "{6950B18F-A3D2-41A4-AFEC-8B7C49517611}"
7676
EndProject
77-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions", "src\Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions\Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.csproj", "{2E9CB89D-EC8F-4DD9-A72B-08D5BABF752D}"
77+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Kestrel.Transport.Abstractions", "src\Kestrel.Transport.Abstractions\Kestrel.Transport.Abstractions.csproj", "{2E9CB89D-EC8F-4DD9-A72B-08D5BABF752D}"
7878
EndProject
79-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests", "test\Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests\Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests.csproj", "{D95A7EC3-48AC-4D03-B2E2-0DA3E13BD3A4}"
79+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Kestrel.Transport.Libuv.Tests", "test\Kestrel.Transport.Libuv.Tests\Kestrel.Transport.Libuv.Tests.csproj", "{D95A7EC3-48AC-4D03-B2E2-0DA3E13BD3A4}"
8080
EndProject
81-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.Server.Kestrel.Tests", "test\Microsoft.AspNetCore.Server.Kestrel.Tests\Microsoft.AspNetCore.Server.Kestrel.Tests.csproj", "{4F1C30F8-CCAA-48D7-9DF6-2A84021F5BCC}"
81+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Kestrel.Tests", "test\Kestrel.Tests\Kestrel.Tests.csproj", "{4F1C30F8-CCAA-48D7-9DF6-2A84021F5BCC}"
8282
EndProject
8383
Global
8484
GlobalSection(SolutionConfigurationPlatforms) = preSolution

build/repo.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<Project>
22
<ItemGroup>
3-
<ExcludeFromTest Include="$(RepositoryRoot)test\Microsoft.AspNetCore.Server.Kestrel.Performance\Microsoft.AspNetCore.Server.Kestrel.Performance.csproj" />
3+
<ExcludeFromTest Include="$(RepositoryRoot)test\Kestrel.Performance\Kestrel.Performance.csproj" />
44
</ItemGroup>
55
</Project>

samples/LargeResponseApp/LargeResponseApp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<ProjectReference Include="..\..\src\Microsoft.AspNetCore.Server.Kestrel\Microsoft.AspNetCore.Server.Kestrel.csproj" />
11+
<ProjectReference Include="..\..\src\Kestrel\Kestrel.csproj" />
1212
</ItemGroup>
1313

1414
</Project>

samples/SampleApp/SampleApp.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
</ItemGroup>
1313

1414
<ItemGroup>
15-
<ProjectReference Include="..\..\src\Microsoft.AspNetCore.Server.Kestrel\Microsoft.AspNetCore.Server.Kestrel.csproj" />
16-
<ProjectReference Include="..\..\src\Microsoft.AspNetCore.Server.Kestrel.Https\Microsoft.AspNetCore.Server.Kestrel.Https.csproj" />
15+
<ProjectReference Include="..\..\src\Kestrel\Kestrel.csproj" />
16+
<ProjectReference Include="..\..\src\Kestrel.Https\Kestrel.Https.csproj" />
1717
</ItemGroup>
1818

1919
<ItemGroup>
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
<Import Project="..\..\build\common.props" />
44

55
<PropertyGroup>
6+
<AssemblyName>Microsoft.AspNetCore.Server.Kestrel.Core</AssemblyName>
7+
<RootNamespace>Microsoft.AspNetCore.Server.Kestrel.Core</RootNamespace>
68
<Description>Core components of ASP.NET Core Kestrel cross-platform web server.</Description>
79
<TargetFramework>netstandard2.0</TargetFramework>
810
<GenerateDocumentationFile>true</GenerateDocumentationFile>
@@ -24,7 +26,7 @@
2426
</ItemGroup>
2527

2628
<ItemGroup>
27-
<ProjectReference Include="..\Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions\Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.csproj" />
29+
<ProjectReference Include="..\Kestrel.Transport.Abstractions\Kestrel.Transport.Abstractions.csproj" />
2830
</ItemGroup>
2931

3032
<ItemGroup>
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
<Import Project="..\..\build\common.props" />
44

55
<PropertyGroup>
6+
<AssemblyName>Microsoft.AspNetCore.Server.Kestrel.Https</AssemblyName>
7+
<RootNamespace>Microsoft.AspNetCore.Server.Kestrel.Https</RootNamespace>
68
<Description>HTTPS support for the ASP.NET Core Kestrel cross-platform web server.</Description>
79
<TargetFramework>netstandard2.0</TargetFramework>
810
<GenerateDocumentationFile>true</GenerateDocumentationFile>
@@ -14,7 +16,7 @@
1416
</PropertyGroup>
1517

1618
<ItemGroup>
17-
<ProjectReference Include="..\Microsoft.AspNetCore.Server.Kestrel.Core\Microsoft.AspNetCore.Server.Kestrel.Core.csproj" />
19+
<ProjectReference Include="..\Kestrel.Core\Kestrel.Core.csproj" />
1820
</ItemGroup>
1921

2022
<ItemGroup>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
<Import Project="..\..\build\common.props" />
44

55
<PropertyGroup>
6+
<AssemblyName>Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions</AssemblyName>
7+
<RootNamespace>Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions</RootNamespace>
68
<Description>Transport abstractions for the ASP.NET Core Kestrel cross-platform web server.</Description>
79
<TargetFramework>netstandard2.0</TargetFramework>
810
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
<Import Project="..\..\build\common.props" />
44

55
<PropertyGroup>
6+
<AssemblyName>Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv</AssemblyName>
7+
<RootNamespace>Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv</RootNamespace>
68
<Description>Libuv transport for the ASP.NET Core Kestrel cross-platform web server.</Description>
79
<TargetFramework>netstandard2.0</TargetFramework>
810
<GenerateDocumentationFile>true</GenerateDocumentationFile>
@@ -20,7 +22,7 @@
2022
</ItemGroup>
2123

2224
<ItemGroup>
23-
<ProjectReference Include="..\Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions\Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.csproj" />
25+
<ProjectReference Include="..\Kestrel.Transport.Abstractions\Kestrel.Transport.Abstractions.csproj" />
2426
</ItemGroup>
2527

2628
</Project>
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
<Import Project="..\..\build\common.props" />
44

55
<PropertyGroup>
6+
<AssemblyName>Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets</AssemblyName>
7+
<RootNamespace>Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets</RootNamespace>
68
<Description>Managed socket transport for the ASP.NET Core Kestrel cross-platform web server.</Description>
79
<TargetFramework>netstandard2.0</TargetFramework>
810
<GenerateDocumentationFile>true</GenerateDocumentationFile>
@@ -20,7 +22,7 @@
2022
</ItemGroup>
2123

2224
<ItemGroup>
23-
<ProjectReference Include="..\Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions\Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.csproj" />
25+
<ProjectReference Include="..\Kestrel.Transport.Abstractions\Kestrel.Transport.Abstractions.csproj" />
2426
</ItemGroup>
2527

2628
<ItemGroup>
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
<Import Project="..\..\build\common.props" />
44

55
<PropertyGroup>
6+
<AssemblyName>Microsoft.AspNetCore.Server.Kestrel</AssemblyName>
7+
<RootNamespace>Microsoft.AspNetCore.Server.Kestrel</RootNamespace>
68
<Description>ASP.NET Core Kestrel cross-platform web server.</Description>
79
<TargetFramework>netstandard2.0</TargetFramework>
810
<GenerateDocumentationFile>true</GenerateDocumentationFile>
@@ -16,8 +18,8 @@
1618
</ItemGroup>
1719

1820
<ItemGroup>
19-
<ProjectReference Include="..\Microsoft.AspNetCore.Server.Kestrel.Core\Microsoft.AspNetCore.Server.Kestrel.Core.csproj" />
20-
<ProjectReference Include="..\Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv\Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.csproj" />
21+
<ProjectReference Include="..\Kestrel.Core\Kestrel.Core.csproj" />
22+
<ProjectReference Include="..\Kestrel.Transport.Libuv\Kestrel.Transport.Libuv.csproj" />
2123
</ItemGroup>
2224

2325
</Project>
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
<Import Project="..\..\build\common.props" />
44

55
<PropertyGroup>
6+
<AssemblyName>Microsoft.AspNetCore.Server.Kestrel.Core.Tests</AssemblyName>
7+
<RootNamespace>Microsoft.AspNetCore.Server.Kestrel.Core.Tests</RootNamespace>
68
<TargetFrameworks>netcoreapp2.0;net461</TargetFrameworks>
79
<TargetFrameworks Condition=" '$(OS)' != 'Windows_NT' ">netcoreapp2.0</TargetFrameworks>
810
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
@@ -21,7 +23,7 @@
2123
</ItemGroup>
2224

2325
<ItemGroup>
24-
<ProjectReference Include="..\..\src\Microsoft.AspNetCore.Server.Kestrel.Core\Microsoft.AspNetCore.Server.Kestrel.Core.csproj" />
26+
<ProjectReference Include="..\..\src\Kestrel.Core\Kestrel.Core.csproj" />
2527
</ItemGroup>
2628

2729
<ItemGroup>
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ public class GeneratedCodeTests
1212
[Fact]
1313
public void GeneratedCodeIsUpToDate()
1414
{
15-
const string frameHeadersGeneratedPath = "../../../../../src/Microsoft.AspNetCore.Server.Kestrel.Core/Internal/Http/FrameHeaders.Generated.cs";
16-
const string frameGeneratedPath = "../../../../../src/Microsoft.AspNetCore.Server.Kestrel.Core/Internal/Http/Frame.Generated.cs";
17-
const string httpUtilitiesGeneratedPath = "../../../../../src/Microsoft.AspNetCore.Server.Kestrel.Core/Internal/Infrastructure/HttpUtilities.Generated.cs";
15+
const string frameHeadersGeneratedPath = "../../../../../src/Kestrel.Core/Internal/Http/FrameHeaders.Generated.cs";
16+
const string frameGeneratedPath = "../../../../../src/Kestrel.Core/Internal/Http/Frame.Generated.cs";
17+
const string httpUtilitiesGeneratedPath = "../../../../../src/Kestrel.Core/Internal/Infrastructure/HttpUtilities.Generated.cs";
1818

1919
var testFrameHeadersGeneratedPath = Path.GetTempFileName();
2020
var testFrameGeneratedPath = Path.GetTempFileName();
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
<Import Project="..\..\build\common.props" />
44

55
<PropertyGroup>
6+
<AssemblyName>Microsoft.AspNetCore.Server.Kestrel.FunctionalTests</AssemblyName>
7+
<RootNamespace>Microsoft.AspNetCore.Server.Kestrel.FunctionalTests</RootNamespace>
68
<TargetFrameworks>netcoreapp2.0;net461</TargetFrameworks>
79
<TargetFrameworks Condition=" '$(OS)' != 'Windows_NT' ">netcoreapp2.0</TargetFrameworks>
810
<ServerGarbageCollection>true</ServerGarbageCollection>
@@ -25,8 +27,8 @@
2527
</ItemGroup>
2628

2729
<ItemGroup>
28-
<ProjectReference Include="..\..\src\Microsoft.AspNetCore.Server.Kestrel\Microsoft.AspNetCore.Server.Kestrel.csproj" />
29-
<ProjectReference Include="..\..\src\Microsoft.AspNetCore.Server.Kestrel.Https\Microsoft.AspNetCore.Server.Kestrel.Https.csproj" />
30+
<ProjectReference Include="..\..\src\Kestrel\Kestrel.csproj" />
31+
<ProjectReference Include="..\..\src\Kestrel.Https\Kestrel.Https.csproj" />
3032
</ItemGroup>
3133

3234
<ItemGroup>
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
<Import Project="..\..\build\common.props" />
44

55
<PropertyGroup>
6+
<AssemblyName>Microsoft.AspNetCore.Server.Kestrel.Performance</AssemblyName>
7+
<RootNamespace>Microsoft.AspNetCore.Server.Kestrel.Performance</RootNamespace>
68
<TargetFrameworks>netcoreapp2.0;net461</TargetFrameworks>
79
<TargetFrameworks Condition=" '$(OS)' != 'Windows_NT' ">netcoreapp2.0</TargetFrameworks>
810
<OutputType>Exe</OutputType>
@@ -18,7 +20,7 @@
1820
</ItemGroup>
1921

2022
<ItemGroup>
21-
<ProjectReference Include="..\..\src\Microsoft.AspNetCore.Server.Kestrel\Microsoft.AspNetCore.Server.Kestrel.csproj" />
23+
<ProjectReference Include="..\..\src\Kestrel\Kestrel.csproj" />
2224
</ItemGroup>
2325

2426
<ItemGroup>
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
<Import Project="..\..\build\common.props" />
44

55
<PropertyGroup>
6+
<AssemblyName>Microsoft.AspNetCore.Server.Kestrel.Tests</AssemblyName>
7+
<RootNamespace>Microsoft.AspNetCore.Server.Kestrel.Tests</RootNamespace>
68
<TargetFrameworks>netcoreapp2.0;net461</TargetFrameworks>
79
<TargetFrameworks Condition=" '$(OS)' != 'Windows_NT' ">netcoreapp2.0</TargetFrameworks>
810
</PropertyGroup>
@@ -12,7 +14,7 @@
1214
</ItemGroup>
1315

1416
<ItemGroup>
15-
<ProjectReference Include="..\..\src\Microsoft.AspNetCore.Server.Kestrel\Microsoft.AspNetCore.Server.Kestrel.csproj" />
17+
<ProjectReference Include="..\..\src\Kestrel\Kestrel.csproj" />
1618
</ItemGroup>
1719

1820
<ItemGroup>
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
<Import Project="..\..\build\common.props" />
44

55
<PropertyGroup>
6+
<AssemblyName>Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests</AssemblyName>
7+
<RootNamespace>Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Tests</RootNamespace>
68
<TargetFrameworks>netcoreapp2.0;net461</TargetFrameworks>
79
<TargetFrameworks Condition=" '$(OS)' != 'Windows_NT' ">netcoreapp2.0</TargetFrameworks>
810
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
@@ -21,8 +23,8 @@
2123
</ItemGroup>
2224

2325
<ItemGroup>
24-
<ProjectReference Include="..\..\src\Microsoft.AspNetCore.Server.Kestrel.Core\Microsoft.AspNetCore.Server.Kestrel.Core.csproj" />
25-
<ProjectReference Include="..\..\src\Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv\Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.csproj" />
26+
<ProjectReference Include="..\..\src\Kestrel.Core\Kestrel.Core.csproj" />
27+
<ProjectReference Include="..\..\src\Kestrel.Transport.Libuv\Kestrel.Transport.Libuv.csproj" />
2628
</ItemGroup>
2729

2830
<ItemGroup>

0 commit comments

Comments
 (0)