Skip to content

Commit fe24d85

Browse files
authored
Merge pull request #22790 from dotnet-maestro-bot/merge/release/3.1-to-master
[automated] Merge branch 'release/3.1' => 'master'
2 parents 6c31da5 + 948c62e commit fe24d85

25 files changed

+69
-106
lines changed

.azure/pipelines/blazor-daily-tests.yml

Lines changed: 0 additions & 59 deletions
This file was deleted.

eng/Baseline.Designer.props

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,13 @@
1818
<PropertyGroup Condition=" '$(PackageId)' == 'dotnet-sql-cache' ">
1919
<BaselinePackageVersion>3.1.5</BaselinePackageVersion>
2020
</PropertyGroup>
21+
<!-- Package: Microsoft.Authentication.WebAssembly.Msal-->
22+
<PropertyGroup Condition=" '$(PackageId)' == 'Microsoft.Authentication.WebAssembly.Msal' ">
23+
<BaselinePackageVersion>3.2.0</BaselinePackageVersion>
24+
</PropertyGroup>
25+
<ItemGroup Condition=" '$(PackageId)' == 'Microsoft.Authentication.WebAssembly.Msal' AND '$(TargetFramework)' == 'netstandard2.1' ">
26+
<BaselinePackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="[3.2.0, )" />
27+
</ItemGroup>
2128
<!-- Package: Microsoft.AspNetCore.ApiAuthorization.IdentityServer-->
2229
<PropertyGroup Condition=" '$(PackageId)' == 'Microsoft.AspNetCore.ApiAuthorization.IdentityServer' ">
2330
<BaselinePackageVersion>3.1.5</BaselinePackageVersion>

eng/Baseline.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Update this list when preparing for a new patch.
88
<Package Id="AspNetCoreRuntime.3.0.x64" Version="3.0.3" />
99
<Package Id="AspNetCoreRuntime.3.0.x86" Version="3.0.3" />
1010
<Package Id="dotnet-sql-cache" Version="3.1.5" />
11+
<Package Id="Microsoft.Authentication.WebAssembly.Msal" Version="3.2.0" />
1112
<Package Id="Microsoft.AspNetCore.ApiAuthorization.IdentityServer" Version="3.1.5" />
1213
<Package Id="Microsoft.AspNetCore.App.Runtime.win-x64" Version="3.1.5" />
1314
<Package Id="Microsoft.AspNetCore.Authentication.AzureAD.UI" Version="3.1.5" />

eng/Build.props

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,9 @@
123123
the entire pattern will silently fail to evaluate correctly.
124124
-->
125125
<DotNetProjects Include="
126-
$(RepoRoot)src\Framework\ref\Microsoft.AspNetCore.App.Ref.csproj;
127-
$(RepoRoot)src\Framework\src\Microsoft.AspNetCore.App.Runtime.csproj;
126+
$(RepoRoot)src\Framework\App.Ref\src\Microsoft.AspNetCore.App.Ref.csproj;
127+
$(RepoRoot)src\Framework\App.Runtime\src\Microsoft.AspNetCore.App.Runtime.csproj;
128+
$(RepoRoot)src\Framework\App.Ref.Internal\src\Microsoft.AspNetCore.App.Ref.Internal.csproj;
128129
$(RepoRoot)src\Framework\test\Microsoft.AspNetCore.App.UnitTests.csproj;
129130
$(RepoRoot)src\DefaultBuilder\**\*.*proj;
130131
$(RepoRoot)src\Features\JsonPatch\**\*.*proj;

src/Components/WebAssembly/Authentication.Msal/src/Microsoft.Authentication.WebAssembly.Msal.csproj

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,7 @@
55
<PropertyGroup>
66
<TargetFramework>netstandard2.1</TargetFramework>
77
<Description>Authenticate your Blazor webassembly applications with Azure Active Directory and Azure Active Directory B2C</Description>
8-
<IsShippingPackage>true</IsShippingPackage>
9-
<HasReferenceAssembly>false</HasReferenceAssembly>
108
<RazorLangVersion>3.0</RazorLangVersion>
11-
<GenerateDocumentationFile>true</GenerateDocumentationFile>
129
</PropertyGroup>
1310

1411
<ItemGroup>

src/Components/WebAssembly/testassets/Directory.Build.props

Lines changed: 0 additions & 6 deletions
This file was deleted.

src/Components/benchmarkapps/Wasm.Performance/Driver/Wasm.Performance.Driver.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111

1212
<!-- WebDriver is not strong-named, so this test project cannot be strong named either. -->
1313
<SignAssembly>false</SignAssembly>
14+
<IsTestAssetProject>true</IsTestAssetProject>
15+
<IsPackable>false</IsPackable>
1416
</PropertyGroup>
1517

1618
<ItemGroup>

src/Components/benchmarkapps/Wasm.Performance/TestApp/Wasm.Performance.TestApp.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
<HasReferenceAssembly>false</HasReferenceAssembly>
88
<IsProjectReferenceProvider>false</IsProjectReferenceProvider>
99
<ReferenceBlazorBuildLocally>true</ReferenceBlazorBuildLocally>
10+
<IsTestAssetProject>true</IsTestAssetProject>
1011
</PropertyGroup>
1112

1213
<ItemGroup>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"DefaultWaitTimeoutInSeconds": 20,
3-
"ScreenShotsPath": "../../screenshots",
3+
"ScreenShotsPath": "../../screenshots"
44
}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>$(DefaultNetCoreTargetFramework)</TargetFramework>
5+
<IsShippingPackage>false</IsShippingPackage>
6+
<IsPackable>true</IsPackable>
7+
<IsPackable Condition="'$(IsTargetingPackBuilding)' == 'false'">false</IsPackable>
8+
<PackageId>$(TargetingPackName).Internal</PackageId>
9+
<VersionPrefix>$(TargetingPackVersionPrefix)</VersionPrefix>
10+
<CopyBuildOutputToOutputDirectory>false</CopyBuildOutputToOutputDirectory>
11+
<GenerateDocumentationFile>false</GenerateDocumentationFile>
12+
<IncludeBuildOutput>false</IncludeBuildOutput>
13+
<IncludeSymbols>false</IncludeSymbols>
14+
<NoPackageAnalysis>true</NoPackageAnalysis>
15+
</PropertyGroup>
16+
17+
</Project>

0 commit comments

Comments
 (0)