Skip to content

Commit 57fc9c5

Browse files
committed
Merge in 'release/5.0' changes
2 parents 88ca061 + 73320ae commit 57fc9c5

File tree

13 files changed

+68550
-30815
lines changed

13 files changed

+68550
-30815
lines changed

eng/Build.props

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,24 @@
1616
<!-- Exclude the websockets samples for now because they use classic .csproj, which is not yet supported in our build. -->
1717
<ProjectToExclude Include="$(RepoRoot)src\Middleware\WebSockets\samples\**\*.csproj" />
1818

19-
<!-- These projects are meant to be executed by tests. -->
19+
<!-- These projects are meant to be referenced only by tests. -->
20+
<ProjectToExclude Include="$(RepoRoot)src\**\testassets\**\*.*proj"
21+
Exclude="$(RepoRoot)src\Components\WebAssembly\testassets\WasmLinkerTest\*.*proj;
22+
$(RepoRoot)src\Components\WebView\Samples\PhotinoPlatform\testassets\PhotinoTestApp\*.*proj;
23+
$(RepoRoot)src\Http\Routing\test\testassets\RoutingSandbox\*.*proj;
24+
$(RepoRoot)src\Security\Authentication\Negotiate\test\testassets\Negotiate.Client\*.*proj;
25+
$(RepoRoot)src\Security\Authentication\Negotiate\test\testassets\Negotiate.Server\*.*proj;
26+
" />
27+
28+
<!-- These projects are not meant to be built in this repo. In the Installers case, must explicitly opt in. -->
2029
<ProjectToExclude Include="
21-
$(RepoRoot)src\Tools\dotnet-watch\test\TestProjects\**\*.csproj;
22-
$(RepoRoot)src\Tools\Tests.Common\TestProjects\**\*.csproj;
23-
$(RepoRoot)src\Razor\Razor.Design\test\testassets\**\*.*proj;
24-
$(RepoRoot)src\submodules\**\*.*proj;
30+
$(RepoRoot)src\submodules\googletest\**\*.*proj;
31+
$(RepoRoot)src\submodules\MessagePack-CSharp\**\*.*proj;
32+
$(RepoRoot)src\Components\Web.JS\node_modules\**\*.*proj;
2533
$(RepoRoot)src\Installers\**\*.*proj;
2634
$(RepoRoot)src\SignalR\clients\ts\**\node_modules\**\*.*proj;
27-
$(RepoRoot)src\Components\Web.JS\node_modules\**\*.*proj;
28-
$(RepoRoot)src\Components\WebAssembly\Sdk\testassets\**\*.csproj;
29-
$(RepoRoot)src\ProjectTemplates\Web.ProjectTemplates\content\**\*.csproj;
30-
$(RepoRoot)src\ProjectTemplates\Web.ProjectTemplates\content\**\*.fsproj;
31-
$(RepoRoot)src\ProjectTemplates\Web.Spa.ProjectTemplates\content\**\*.csproj;
35+
$(RepoRoot)src\ProjectTemplates\Web.ProjectTemplates\content\**\*.*proj;
36+
$(RepoRoot)src\ProjectTemplates\Web.Spa.ProjectTemplates\content\**\*.*proj;
3237
" />
3338

3439
<!-- Exclude the benchmarks because they use <PackageReference>. -->

eng/Versions.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
<PropertyGroup Label="Version settings">
99
<AspNetCoreMajorVersion>5</AspNetCoreMajorVersion>
1010
<AspNetCoreMinorVersion>0</AspNetCoreMinorVersion>
11-
<AspNetCorePatchVersion>14</AspNetCorePatchVersion>
12-
<ValidateBaseline>true</ValidateBaseline>
11+
<AspNetCorePatchVersion>15</AspNetCorePatchVersion>
12+
<ValidateBaseline>false</ValidateBaseline>
1313
<!--
1414
When StabilizePackageVersion is set to 'true', this branch will produce stable outputs for 'Shipping' packages
1515
-->

src/Hosting/test/FunctionalTests/Microsoft.AspNetCore.Hosting.FunctionalTests.csproj

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,18 @@
1717

1818
<ItemGroup>
1919
<ProjectReference Include="$(RepoRoot)src\Hosting\Server.IntegrationTesting\src\Microsoft.AspNetCore.Server.IntegrationTesting.csproj" />
20-
<ProjectReference Include="$(RepoRoot)src\Hosting\test\testassets\IStartupInjectionAssemblyName\IStartupInjectionAssemblyName.csproj" ReferenceOutputAssemblies="false" />
20+
<ProjectReference Include="$(RepoRoot)src\Hosting\test\testassets\BasicLinkedApp\BasicLinkedApp.csproj"
21+
Private="false"
22+
ReferenceOutputAssembly="false"
23+
SkipGetTargetFrameworkProperties="true" />
24+
<ProjectReference Include="$(RepoRoot)src\Hosting\test\testassets\IStartupInjectionAssemblyName\IStartupInjectionAssemblyName.csproj"
25+
Private="false"
26+
ReferenceOutputAssembly="false"
27+
SkipGetTargetFrameworkProperties="true" />
28+
<ProjectReference Include="$(RepoRoot)src\Hosting\test\testassets\Microsoft.AspNetCore.Hosting.TestSites\Microsoft.AspNetCore.Hosting.TestSites.csproj"
29+
Private="false"
30+
ReferenceOutputAssembly="false"
31+
SkipGetTargetFrameworkProperties="true" />
2132

2233
<Reference Include="Microsoft.AspNetCore.Hosting" />
2334
<Reference Include="Microsoft.Extensions.Logging.Console" />

0 commit comments

Comments
 (0)