From 18a6f0c86b3fa50d8957301b9abcfd9def0815a2 Mon Sep 17 00:00:00 2001 From: Hao Kung Date: Tue, 4 May 2021 16:05:42 -0700 Subject: [PATCH] [3.1] Mark components assemblies as non shipping (#31758) * Update Microsoft.AspNetCore.Components.WebAssembly.csproj * Update Microsoft.AspNetCore.Components.WebAssembly.Build.csproj * Update Microsoft.AspNetCore.Components.WebAssembly.DebugProxy.csproj * Update Microsoft.AspNetCore.Components.WebAssembly.DevServer.csproj * Update Microsoft.JSInterop.WebAssembly.csproj * Update Microsoft.AspNetCore.Components.WebAssembly.Server.csproj * Update Microsoft.Authentication.WebAssembly.Msal.csproj * Update Microsoft.AspNetCore.Components.WebAssembly.HttpHandler.csproj * Update Directory.Build.props * Update Microsoft.AspNetCore.Components.WebAssembly.Authentication.csproj * Update Microsoft.JSInterop.WebAssembly.csproj * Update Microsoft.Authentication.WebAssembly.Msal.csproj * Update Microsoft.AspNetCore.Components.WebAssembly.Build.csproj * Update Microsoft.AspNetCore.Components.WebAssembly.DebugProxy.csproj * Update Microsoft.AspNetCore.Components.WebAssembly.DevServer.csproj * Update Directory.Build.props * Update Microsoft.AspNetCore.Components.WebAssembly.Server.csproj * Update Microsoft.AspNetCore.Components.WebAssembly.Authentication.csproj * Update Microsoft.AspNetCore.Components.WebAssembly.csproj * Update Microsoft.AspNetCore.Components.WebAssembly.HttpHandler.csproj --- .../src/Microsoft.Authentication.WebAssembly.Msal.csproj | 1 + .../Microsoft.AspNetCore.Components.WebAssembly.Build.csproj | 2 +- ...crosoft.AspNetCore.Components.WebAssembly.DebugProxy.csproj | 2 +- ...icrosoft.AspNetCore.Components.WebAssembly.DevServer.csproj | 2 +- src/Components/WebAssembly/Directory.Build.props | 2 +- .../JSInterop/src/Microsoft.JSInterop.WebAssembly.csproj | 3 +-- .../Microsoft.AspNetCore.Components.WebAssembly.Server.csproj | 2 +- ...oft.AspNetCore.Components.WebAssembly.Authentication.csproj | 2 +- .../src/Microsoft.AspNetCore.Components.WebAssembly.csproj | 2 +- ...rosoft.AspNetCore.Components.WebAssembly.HttpHandler.csproj | 1 + 10 files changed, 10 insertions(+), 9 deletions(-) diff --git a/src/Components/WebAssembly/Authentication.Msal/src/Microsoft.Authentication.WebAssembly.Msal.csproj b/src/Components/WebAssembly/Authentication.Msal/src/Microsoft.Authentication.WebAssembly.Msal.csproj index 36eec6b93a86..132816fbb0ab 100644 --- a/src/Components/WebAssembly/Authentication.Msal/src/Microsoft.Authentication.WebAssembly.Msal.csproj +++ b/src/Components/WebAssembly/Authentication.Msal/src/Microsoft.Authentication.WebAssembly.Msal.csproj @@ -6,6 +6,7 @@ netstandard2.1 Authenticate your Blazor webassembly applications with Azure Active Directory and Azure Active Directory B2C 3.0 + false diff --git a/src/Components/WebAssembly/Build/src/Microsoft.AspNetCore.Components.WebAssembly.Build.csproj b/src/Components/WebAssembly/Build/src/Microsoft.AspNetCore.Components.WebAssembly.Build.csproj index 42d0927184d3..7f06f33ae763 100644 --- a/src/Components/WebAssembly/Build/src/Microsoft.AspNetCore.Components.WebAssembly.Build.csproj +++ b/src/Components/WebAssembly/Build/src/Microsoft.AspNetCore.Components.WebAssembly.Build.csproj @@ -5,7 +5,7 @@ Microsoft.AspNetCore.Components.WebAssembly.Build.Tasks Microsoft.AspNetCore.Components.WebAssembly.Build Build mechanism for ASP.NET Core Blazor WebAssembly applications. - true + false false false diff --git a/src/Components/WebAssembly/DebugProxy/src/Microsoft.AspNetCore.Components.WebAssembly.DebugProxy.csproj b/src/Components/WebAssembly/DebugProxy/src/Microsoft.AspNetCore.Components.WebAssembly.DebugProxy.csproj index af1e79c007f6..18b9e9eb696f 100644 --- a/src/Components/WebAssembly/DebugProxy/src/Microsoft.AspNetCore.Components.WebAssembly.DebugProxy.csproj +++ b/src/Components/WebAssembly/DebugProxy/src/Microsoft.AspNetCore.Components.WebAssembly.DebugProxy.csproj @@ -4,7 +4,7 @@ $(DefaultNetCoreTargetFramework) Exe Microsoft.AspNetCore.Components.WebAssembly.DebugProxy - true + false false Debug proxy for use when building Blazor applications. diff --git a/src/Components/WebAssembly/DevServer/src/Microsoft.AspNetCore.Components.WebAssembly.DevServer.csproj b/src/Components/WebAssembly/DevServer/src/Microsoft.AspNetCore.Components.WebAssembly.DevServer.csproj index 6e8f84a388e4..1351694befb4 100644 --- a/src/Components/WebAssembly/DevServer/src/Microsoft.AspNetCore.Components.WebAssembly.DevServer.csproj +++ b/src/Components/WebAssembly/DevServer/src/Microsoft.AspNetCore.Components.WebAssembly.DevServer.csproj @@ -5,7 +5,7 @@ Exe blazor-devserver Microsoft.AspNetCore.Components.WebAssembly.DevServer - true + false false Microsoft.AspNetCore.Components.WebAssembly.DevServer.Program Development server for use when building Blazor applications. diff --git a/src/Components/WebAssembly/Directory.Build.props b/src/Components/WebAssembly/Directory.Build.props index 3d5413a1933c..ee5d03f797ed 100644 --- a/src/Components/WebAssembly/Directory.Build.props +++ b/src/Components/WebAssembly/Directory.Build.props @@ -7,4 +7,4 @@ true - \ No newline at end of file + diff --git a/src/Components/WebAssembly/JSInterop/src/Microsoft.JSInterop.WebAssembly.csproj b/src/Components/WebAssembly/JSInterop/src/Microsoft.JSInterop.WebAssembly.csproj index 5f291a8faf97..a322650b816f 100644 --- a/src/Components/WebAssembly/JSInterop/src/Microsoft.JSInterop.WebAssembly.csproj +++ b/src/Components/WebAssembly/JSInterop/src/Microsoft.JSInterop.WebAssembly.csproj @@ -5,8 +5,7 @@ Abstractions and features for interop between .NET WebAssembly and JavaScript code. wasm;javascript;interop true - true - true + false false true diff --git a/src/Components/WebAssembly/Server/src/Microsoft.AspNetCore.Components.WebAssembly.Server.csproj b/src/Components/WebAssembly/Server/src/Microsoft.AspNetCore.Components.WebAssembly.Server.csproj index 0432f421fe27..47fe1a77211e 100644 --- a/src/Components/WebAssembly/Server/src/Microsoft.AspNetCore.Components.WebAssembly.Server.csproj +++ b/src/Components/WebAssembly/Server/src/Microsoft.AspNetCore.Components.WebAssembly.Server.csproj @@ -3,7 +3,7 @@ $(DefaultNetCoreTargetFramework) Runtime server features for ASP.NET Core Blazor applications. - true + false false diff --git a/src/Components/WebAssembly/WebAssembly.Authentication/src/Microsoft.AspNetCore.Components.WebAssembly.Authentication.csproj b/src/Components/WebAssembly/WebAssembly.Authentication/src/Microsoft.AspNetCore.Components.WebAssembly.Authentication.csproj index 8514f8792dcf..139307f05225 100644 --- a/src/Components/WebAssembly/WebAssembly.Authentication/src/Microsoft.AspNetCore.Components.WebAssembly.Authentication.csproj +++ b/src/Components/WebAssembly/WebAssembly.Authentication/src/Microsoft.AspNetCore.Components.WebAssembly.Authentication.csproj @@ -5,7 +5,7 @@ netstandard2.1 Build client-side authentication for single-page applications (SPAs). - true + false false 3.0 true diff --git a/src/Components/WebAssembly/WebAssembly/src/Microsoft.AspNetCore.Components.WebAssembly.csproj b/src/Components/WebAssembly/WebAssembly/src/Microsoft.AspNetCore.Components.WebAssembly.csproj index 683cb2ff7140..b07d7e4d8175 100644 --- a/src/Components/WebAssembly/WebAssembly/src/Microsoft.AspNetCore.Components.WebAssembly.csproj +++ b/src/Components/WebAssembly/WebAssembly/src/Microsoft.AspNetCore.Components.WebAssembly.csproj @@ -3,7 +3,7 @@ netstandard2.1 Build client-side single-page applications (SPAs) with Blazor running under WebAssembly. - true + false $(NoWarn);BL0006 true diff --git a/src/Components/WebAssembly/WebAssemblyHttpHandler/src/Microsoft.AspNetCore.Components.WebAssembly.HttpHandler.csproj b/src/Components/WebAssembly/WebAssemblyHttpHandler/src/Microsoft.AspNetCore.Components.WebAssembly.HttpHandler.csproj index 95ca0b2f0482..fff22738e358 100644 --- a/src/Components/WebAssembly/WebAssemblyHttpHandler/src/Microsoft.AspNetCore.Components.WebAssembly.HttpHandler.csproj +++ b/src/Components/WebAssembly/WebAssemblyHttpHandler/src/Microsoft.AspNetCore.Components.WebAssembly.HttpHandler.csproj @@ -8,6 +8,7 @@ true Open false + false