From 29cf7ecb80b118a3ea0fd3d9bdca5cf2d0eb96b0 Mon Sep 17 00:00:00 2001 From: Ryan Nowak Date: Mon, 12 Aug 2019 13:38:44 -0700 Subject: [PATCH] Remove Blazor VSIX This is no longer shipped, because the templates installed by `dotnet new -i` show up in VS now. Removing it now so we don't have to keep it around in servicing forever. --- eng/Build.props | 1 - .../src/AboutDialogInfoAttribute.cs | 56 ------ .../src/AutoRebuild/AutoRebuildService.cs | 147 -------------- .../src/AutoRebuild/BuildEventsWatcher.cs | 184 ------------------ .../AutoRebuild/StreamProtocolExtensions.cs | 49 ----- .../BlazorExtension/src/BlazorPackage.cs | 44 ----- .../BlazorExtension/src/CodeSnippets.pkgdef | 2 - .../src/CodeSnippets/Blazor/para.snippet | 31 --- .../src/Content/WebConfiguration.png | Bin 3965 -> 0 bytes ...rosoft.VisualStudio.BlazorExtension.csproj | 148 -------------- .../Blazor/BlazorExtension/src/Resources.resx | 132 ------------- .../src/Resources/BlazorPackage.ico | Bin 428446 -> 0 bytes .../BlazorExtension/src/Templates.pkgdef | 2 - .../src/source.extension.vsixmanifest | 25 --- src/Components/Components.sln | 15 -- src/Components/ComponentsNoDeps.slnf | 1 - 16 files changed, 837 deletions(-) delete mode 100644 src/Components/Blazor/BlazorExtension/src/AboutDialogInfoAttribute.cs delete mode 100644 src/Components/Blazor/BlazorExtension/src/AutoRebuild/AutoRebuildService.cs delete mode 100644 src/Components/Blazor/BlazorExtension/src/AutoRebuild/BuildEventsWatcher.cs delete mode 100644 src/Components/Blazor/BlazorExtension/src/AutoRebuild/StreamProtocolExtensions.cs delete mode 100644 src/Components/Blazor/BlazorExtension/src/BlazorPackage.cs delete mode 100644 src/Components/Blazor/BlazorExtension/src/CodeSnippets.pkgdef delete mode 100644 src/Components/Blazor/BlazorExtension/src/CodeSnippets/Blazor/para.snippet delete mode 100644 src/Components/Blazor/BlazorExtension/src/Content/WebConfiguration.png delete mode 100644 src/Components/Blazor/BlazorExtension/src/Microsoft.VisualStudio.BlazorExtension.csproj delete mode 100644 src/Components/Blazor/BlazorExtension/src/Resources.resx delete mode 100644 src/Components/Blazor/BlazorExtension/src/Resources/BlazorPackage.ico delete mode 100644 src/Components/Blazor/BlazorExtension/src/Templates.pkgdef delete mode 100644 src/Components/Blazor/BlazorExtension/src/source.extension.vsixmanifest diff --git a/eng/Build.props b/eng/Build.props index ef1a7776b6..e47402faf8 100644 --- a/eng/Build.props +++ b/eng/Build.props @@ -17,7 +17,6 @@ ()?.InformationalVersion; - - using (var key = context.CreateKey(GetKeyName())) - { - key.SetValue(null, _nameId); - key.SetValue("Package", Guid.Parse(_packageGuid).ToString("B")); - key.SetValue("ProductDetails", _detailsId); - key.SetValue("UseInterface", false); - key.SetValue("UseVSProductID", false); - - if (version != null) - { - key.SetValue("PID", version); - } - } - } - - public override void Unregister(RegistrationContext context) - { - context.RemoveKey(GetKeyName()); - } - } -} diff --git a/src/Components/Blazor/BlazorExtension/src/AutoRebuild/AutoRebuildService.cs b/src/Components/Blazor/BlazorExtension/src/AutoRebuild/AutoRebuildService.cs deleted file mode 100644 index f3aa9b195b..0000000000 --- a/src/Components/Blazor/BlazorExtension/src/AutoRebuild/AutoRebuildService.cs +++ /dev/null @@ -1,147 +0,0 @@ -// Copyright (c) .NET Foundation. All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. - -using Microsoft.VisualStudio.Shell.Interop; -using System; -using System.Diagnostics; -using System.IO; -using System.IO.Pipes; -using System.Security.AccessControl; -using System.Security.Principal; -using System.Threading; -using System.Threading.Tasks; -using Package = Microsoft.VisualStudio.Shell.Package; -using ThreadHelper = Microsoft.VisualStudio.Shell.ThreadHelper; - -namespace Microsoft.VisualStudio.BlazorExtension -{ - /// - /// The counterpart to VSForWindowsRebuildService.cs in the Blazor.Server project. - /// Listens for named pipe connections and rebuilds projects on request. - /// - internal class AutoRebuildService - { - private const int _protocolVersion = 1; - private readonly BuildEventsWatcher _buildEventsWatcher; - private readonly string _pipeName; - - public AutoRebuildService(BuildEventsWatcher buildEventsWatcher) - { - _buildEventsWatcher = buildEventsWatcher ?? throw new ArgumentNullException(nameof(buildEventsWatcher)); - _pipeName = $"BlazorAutoRebuild\\{Process.GetCurrentProcess().Id}"; - } - - public void Listen() - { - _ = AddBuildServiceNamedPipeServerAsync(); - } - - private Task AddBuildServiceNamedPipeServerAsync() - { - return Task.Factory.StartNew(async () => - { - try - { - var identity = WindowsIdentity.GetCurrent(); - var identifier = identity.Owner; - var security = new PipeSecurity(); - - // Restrict access to just this account. - var rule = new PipeAccessRule(identifier, PipeAccessRights.ReadWrite | PipeAccessRights.CreateNewInstance, AccessControlType.Allow); - security.AddAccessRule(rule); - security.SetOwner(identifier); - - // And our current elevation level - var principal = new WindowsPrincipal(identity); - var isServerElevated = principal.IsInRole(WindowsBuiltInRole.Administrator); - - using (var serverPipe = new NamedPipeServerStream( - _pipeName, - PipeDirection.InOut, - NamedPipeServerStream.MaxAllowedServerInstances, - PipeTransmissionMode.Byte, - PipeOptions.Asynchronous | PipeOptions.WriteThrough, - 0x10000, // 64k input buffer - 0x10000, // 64k output buffer - security, - HandleInheritability.None)) - { - // As soon as we receive a connection, spin up another background - // listener to wait for the next connection - await serverPipe.WaitForConnectionAsync(); - _ = AddBuildServiceNamedPipeServerAsync(); - - await HandleRequestAsync(serverPipe, isServerElevated); - } - } - catch (Exception ex) - { - await AttemptLogErrorAsync( - $"Error in Blazor AutoRebuildService:\n{ex.Message}\n{ex.StackTrace}"); - } - }, CancellationToken.None, TaskCreationOptions.LongRunning, TaskScheduler.Default); - } - - private async Task HandleRequestAsync(NamedPipeServerStream stream, bool isServerElevated) - { - // Protocol: - // 1. Send a "protocol version" number to the client - // 2. Receive the project path from the client - // If it is the special string "abort", gracefully disconnect and end - // This is to allow for mismatches between server and client protocol version - // 3. Receive the "if not built since" timestamp from the client - // 4. Perform the build, then send back the success/failure result flag - // Keep in sync with VSForWindowsRebuildService.cs in the Blazor.Server project - // In the future we may extend this to getting back build error details - await stream.WriteIntAsync(_protocolVersion); - var projectPath = await stream.ReadStringAsync(); - - // We can't do the security check for elevation until we read from the stream. - if (isServerElevated != IsClientElevated(stream)) - { - return; - } - - if (projectPath.Equals("abort", StringComparison.Ordinal)) - { - return; - } - - var allowExistingBuildsSince = await stream.ReadDateTimeAsync(); - var buildResult = await _buildEventsWatcher.PerformBuildAsync(projectPath, allowExistingBuildsSince); - await stream.WriteBoolAsync(buildResult); - } - - private async Task AttemptLogErrorAsync(string message) - { - if (!ThreadHelper.CheckAccess()) - { - await ThreadHelper.JoinableTaskFactory.SwitchToMainThreadAsync(); - } - - var outputWindow = (IVsOutputWindow)Package.GetGlobalService(typeof(SVsOutputWindow)); - if (outputWindow != null) - { - outputWindow.GetPane(VSConstants.OutputWindowPaneGuid.BuildOutputPane_guid, out var pane); - if (pane != null) - { - pane.OutputString(message); - pane.Activate(); - } - } - } - - private bool? IsClientElevated(NamedPipeServerStream stream) - { - bool? isClientElevated = null; - stream.RunAsClient(() => - { - var identity = WindowsIdentity.GetCurrent(ifImpersonating: true); - var principal = new WindowsPrincipal(identity); - isClientElevated = principal.IsInRole(WindowsBuiltInRole.Administrator); - }); - - return isClientElevated; - } - } -} diff --git a/src/Components/Blazor/BlazorExtension/src/AutoRebuild/BuildEventsWatcher.cs b/src/Components/Blazor/BlazorExtension/src/AutoRebuild/BuildEventsWatcher.cs deleted file mode 100644 index e05f05f28f..0000000000 --- a/src/Components/Blazor/BlazorExtension/src/AutoRebuild/BuildEventsWatcher.cs +++ /dev/null @@ -1,184 +0,0 @@ -// Copyright (c) .NET Foundation. All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. - -using System; -using System.Collections.Generic; -using System.Threading.Tasks; -using Microsoft.VisualStudio.Shell; -using Microsoft.VisualStudio.Shell.Interop; - -namespace Microsoft.VisualStudio.BlazorExtension -{ - /// - /// Watches for Blazor project build events, starts new builds, and tracks builds in progress. - /// - internal class BuildEventsWatcher : IVsUpdateSolutionEvents2 - { - private const string BlazorProjectCapability = "Blazor"; - private readonly IVsSolution _vsSolution; - private readonly IVsSolutionBuildManager _vsBuildManager; - private readonly object mostRecentBuildInfosLock = new object(); - private readonly Dictionary mostRecentBuildInfos - = new Dictionary(StringComparer.OrdinalIgnoreCase); - - public BuildEventsWatcher(IVsSolution vsSolution, IVsSolutionBuildManager vsBuildManager) - { - _vsSolution = vsSolution ?? throw new ArgumentNullException(nameof(vsSolution)); - _vsBuildManager = vsBuildManager ?? throw new ArgumentNullException(nameof(vsBuildManager)); - } - - public Task PerformBuildAsync(string projectPath, DateTime allowExistingBuildsSince) - { - BuildInfo newBuildInfo; - - lock (mostRecentBuildInfosLock) - { - if (mostRecentBuildInfos.TryGetValue(projectPath, out var existingInfo)) - { - // If there's a build in progress, we'll join that even if it was started - // before allowExistingBuildsSince, because it's too messy to cancel - // in-progress builds. On rare occasions if the user is editing files while - // a build is in progress they *might* see a not-latest build when they - // reload, but then they just have to reload again. - var acceptBuild = !existingInfo.TaskCompletionSource.Task.IsCompleted - || existingInfo.StartTime > allowExistingBuildsSince; - if (acceptBuild) - { - return existingInfo.TaskCompletionSource.Task; - } - } - - // We're going to start a new build now. Track the BuildInfo for it even - // before it starts so other incoming build requests can join it. - mostRecentBuildInfos[projectPath] = newBuildInfo = new BuildInfo(); - } - - return PerformNewBuildAsync(projectPath, newBuildInfo); - } - - public int UpdateSolution_Begin(ref int pfCancelUpdate) - => VSConstants.S_OK; - - public int UpdateSolution_Done(int fSucceeded, int fModified, int fCancelCommand) - => VSConstants.S_OK; - - public int UpdateSolution_StartUpdate(ref int pfCancelUpdate) - => VSConstants.S_OK; - - public int UpdateSolution_Cancel() - => VSConstants.S_OK; - - public int OnActiveProjectCfgChange(IVsHierarchy pIVsHierarchy) - => VSConstants.S_OK; - - public int UpdateProjectCfg_Begin(IVsHierarchy pHierProj, IVsCfg pCfgProj, IVsCfg pCfgSln, uint dwAction, ref int pfCancel) - { - ThreadHelper.ThrowIfNotOnUIThread(); - - if (IsBlazorProject(pHierProj)) - { - // This method runs both for manually-invoked builds and for builds triggered automatically - // by PerformNewBuildAsync(). In the case where it's a manually-invoked build, make sure - // there's an in-progress BuildInfo so that if there are further builds requests while the - // build is still in progress we can join them onto this existing build. - - var projectPath = GetProjectPath(pHierProj); - lock (mostRecentBuildInfosLock) - { - var hasBuildInProgress = - mostRecentBuildInfos.TryGetValue(projectPath, out var existingInfo) - && !existingInfo.TaskCompletionSource.Task.IsCompleted; - if (!hasBuildInProgress) - { - mostRecentBuildInfos[projectPath] = new BuildInfo(); - } - } - } - - return VSConstants.S_OK; - } - - public int UpdateProjectCfg_Done(IVsHierarchy pHierProj, IVsCfg pCfgProj, IVsCfg pCfgSln, uint dwAction, int fSuccess, int fCancel) - { - ThreadHelper.ThrowIfNotOnUIThread(); - - if (IsBlazorProject(pHierProj)) - { - var buildResult = fSuccess == 1; - var projectPath = GetProjectPath(pHierProj); - - // Mark pending build info as completed - BuildInfo foundInfo = null; - lock (mostRecentBuildInfosLock) - { - mostRecentBuildInfos.TryGetValue(projectPath, out foundInfo); - } - if (foundInfo != null) - { - foundInfo.TaskCompletionSource.TrySetResult(buildResult); - } - } - - return VSConstants.S_OK; - } - - private async Task PerformNewBuildAsync(string projectPath, BuildInfo buildInfo) - { - // Switch to the UI thread and request the build - var didStartBuild = await ThreadHelper.JoinableTaskFactory.RunAsync(async delegate - { - await ThreadHelper.JoinableTaskFactory.SwitchToMainThreadAsync(); - - var hr = _vsSolution.GetProjectOfUniqueName(projectPath, out var hierarchy); - if (hr != VSConstants.S_OK) - { - return false; - } - - hr = _vsBuildManager.StartSimpleUpdateProjectConfiguration( - hierarchy, - /* not used */ null, - /* not used */ null, - (uint)VSSOLNBUILDUPDATEFLAGS.SBF_OPERATION_BUILD, - /* other flags */ 0, - /* suppress dialogs */ 1); - if (hr != VSConstants.S_OK) - { - return false; - } - - return true; - }); - - if (!didStartBuild) - { - // Since the build didn't start, make sure nobody's waiting for it - buildInfo.TaskCompletionSource.TrySetResult(false); - } - - return await buildInfo.TaskCompletionSource.Task; - } - - private static bool IsBlazorProject(IVsHierarchy pHierProj) - => pHierProj.IsCapabilityMatch(BlazorProjectCapability); - - private static string GetProjectPath(IVsHierarchy pHierProj) - { - ThreadHelper.ThrowIfNotOnUIThread(); - ErrorHandler.ThrowOnFailure(((IVsProject)pHierProj).GetMkDocument((uint)VSConstants.VSITEMID.Root, out var projectPath), VSConstants.E_NOTIMPL); - return projectPath; - } - - class BuildInfo - { - public DateTime StartTime { get; } - public TaskCompletionSource TaskCompletionSource { get; } - - public BuildInfo() - { - StartTime = DateTime.Now; - TaskCompletionSource = new TaskCompletionSource(); - } - } - } -} diff --git a/src/Components/Blazor/BlazorExtension/src/AutoRebuild/StreamProtocolExtensions.cs b/src/Components/Blazor/BlazorExtension/src/AutoRebuild/StreamProtocolExtensions.cs deleted file mode 100644 index 4c13dc9588..0000000000 --- a/src/Components/Blazor/BlazorExtension/src/AutoRebuild/StreamProtocolExtensions.cs +++ /dev/null @@ -1,49 +0,0 @@ -// Copyright (c) .NET Foundation. All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. - -using System; -using System.IO; -using System.Text; -using System.Threading.Tasks; - -namespace Microsoft.VisualStudio.BlazorExtension -{ - internal static class StreamProtocolExtensions - { - public static async Task ReadStringAsync(this Stream stream) - { - var length = BitConverter.ToInt32(await ReadBytesAsync(stream, 4), 0); - var utf8Bytes = await ReadBytesAsync(stream, length); - return Encoding.UTF8.GetString(utf8Bytes); - } - - public static async Task ReadDateTimeAsync(this Stream stream) - { - var ticksBytes = await ReadBytesAsync(stream, 8); - var ticks = BitConverter.ToInt64(ticksBytes, 0); - return new DateTime(ticks); - } - - public static async Task WriteBoolAsync(this Stream stream, bool value) - { - var byteVal = value ? (byte)1 : (byte)0; - await stream.WriteAsync(new[] { byteVal }, 0, 1); - } - - public static async Task WriteIntAsync(this Stream stream, int value) - { - await stream.WriteAsync(BitConverter.GetBytes(value), 0, 4); - } - - private static async Task ReadBytesAsync(Stream stream, int exactLength) - { - var buf = new byte[exactLength]; - var bytesRead = 0; - while (bytesRead < exactLength) - { - bytesRead += await stream.ReadAsync(buf, bytesRead, exactLength - bytesRead); - } - return buf; - } - } -} diff --git a/src/Components/Blazor/BlazorExtension/src/BlazorPackage.cs b/src/Components/Blazor/BlazorExtension/src/BlazorPackage.cs deleted file mode 100644 index fd956856ac..0000000000 --- a/src/Components/Blazor/BlazorExtension/src/BlazorPackage.cs +++ /dev/null @@ -1,44 +0,0 @@ -// Copyright (c) .NET Foundation. All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. - -using System; -using System.Runtime.InteropServices; -using System.Threading; -using System.Threading.Tasks; -using Microsoft.VisualStudio.Shell; -using Microsoft.VisualStudio.Shell.Interop; -using Task = System.Threading.Tasks.Task; - -namespace Microsoft.VisualStudio.BlazorExtension -{ - // We mainly have a package so we can have an "About" dialog entry. - [PackageRegistration(UseManagedResourcesOnly = true, AllowsBackgroundLoading = true)] - [AboutDialogInfo(PackageGuidString, "ASP.NET Core Blazor Language Services", "#110", "112")] - [Guid(BlazorPackage.PackageGuidString)] - [ProvideAutoLoad(UIContextGuids80.SolutionExists, PackageAutoLoadFlags.BackgroundLoad)] - public sealed class BlazorPackage : AsyncPackage - { - public const string PackageGuidString = "d9fe04bc-57a7-4107-915e-3a5c2f9e19fb"; - - protected async override Task InitializeAsync(CancellationToken cancellationToken, IProgress progress) - { - await base.InitializeAsync(cancellationToken, progress); - - await JoinableTaskFactory.SwitchToMainThreadAsync(); - - // Create build watcher. No need to unadvise, as this only happens once anyway. - var solution = (IVsSolution)await GetServiceAsync(typeof(IVsSolution)); - var buildManager = (IVsSolutionBuildManager)await GetServiceAsync(typeof(SVsSolutionBuildManager)); - - // According to the docs, this can happen if VS shuts down while our package is loading. - if (solution == null || buildManager == null) - { - var buildWatcher = new BuildEventsWatcher(solution, buildManager); - var hr = buildManager.AdviseUpdateSolutionEvents(buildWatcher, out var cookie); - Marshal.ThrowExceptionForHR(hr); - - new AutoRebuildService(buildWatcher).Listen(); - } - } - } -} diff --git a/src/Components/Blazor/BlazorExtension/src/CodeSnippets.pkgdef b/src/Components/Blazor/BlazorExtension/src/CodeSnippets.pkgdef deleted file mode 100644 index 53ad976e64..0000000000 --- a/src/Components/Blazor/BlazorExtension/src/CodeSnippets.pkgdef +++ /dev/null @@ -1,2 +0,0 @@ -[$RootKey$\Languages\CodeExpansions\CSharp\Paths] -"Blazor"="$PackageFolder$\CodeSnippets\Blazor" \ No newline at end of file diff --git a/src/Components/Blazor/BlazorExtension/src/CodeSnippets/Blazor/para.snippet b/src/Components/Blazor/BlazorExtension/src/CodeSnippets/Blazor/para.snippet deleted file mode 100644 index 25959d17f0..0000000000 --- a/src/Components/Blazor/BlazorExtension/src/CodeSnippets/Blazor/para.snippet +++ /dev/null @@ -1,31 +0,0 @@ - - - -
- para - para - Code snippet for an automatically implemented parameter for Blazor - Microsoft - - Expansion - -
- - - - type - Parameter type - int - - - property - Parameter name - MyParameter - - - - - - -
-
\ No newline at end of file diff --git a/src/Components/Blazor/BlazorExtension/src/Content/WebConfiguration.png b/src/Components/Blazor/BlazorExtension/src/Content/WebConfiguration.png deleted file mode 100644 index 87f68b072610b246940638d47934fcbd90220efc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3965 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 XasjZ};3mj$00000NkvXXu0mjf# - - - net472 - - - RoslynDev - - - CommonExtensions - Microsoft\Blazor - - - false - - - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - false - - false - true - true - false - true - - - false - - - - - - - true - false - true - - true - true - - - - - <_TemplatePackage Include="$(ArtifactsShippingPackagesDir)Microsoft.AspNetCore.Blazor.Templates.*.nupkg" /> - - - - - - - ProjectTemplates\ - - - - - - - - - - - - - - - - - Content\THIRD-PARTY-NOTICES.txt - - - Content\LICENSE.txt - - - - - - - - - - - - - - - - - false - - - - - true - VSPackage - - - - - - - - - - - - - - - - - - 16.0.$(VersionSuffixDateStamp).$(VersionSuffixBuildOfTheDay) - - 42.42.42.4242424 - $(VsixVersion) - - diff --git a/src/Components/Blazor/BlazorExtension/src/Resources.resx b/src/Components/Blazor/BlazorExtension/src/Resources.resx deleted file mode 100644 index d0fc1b1a60..0000000000 --- a/src/Components/Blazor/BlazorExtension/src/Resources.resx +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ASP.NET Core Blazor Language Services - About dialog title - - - Provides Visual Studio support for ASP.NET Core Blazor - About dialog description - - - - Resources\BlazorPackage.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - \ No newline at end of file diff --git a/src/Components/Blazor/BlazorExtension/src/Resources/BlazorPackage.ico b/src/Components/Blazor/BlazorExtension/src/Resources/BlazorPackage.ico deleted file mode 100644 index d323b07fb8d8b417bfc12e7c46dea88bee17760c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 428446 zcmeHwzmFYBl3qPFmz*Euki&m~ZRmipgt26b1bqtY(xX9RJvsvBK&Ri~Ag*@=9a#iM za>RpVtU*8~r_ZFd4k7cV&(R$~0mE^Iv%p}VGO8-7vf^b_R#j%ytLpdl?(59T$c&8m z;`{Q|D|Yu3#iqDf6vb`VUM>Fc--_b@xT|l!t*@^Y#ee+oMR9ssUH{vaqWB-L-R#@d z^*5WM_=o@L7PzlX@mcZBzuOf5`+w2;>iQqQDvE#p^Tw^OuRkk_=l{HM>#OTO{H`ee z{l7XV<@(d&o71bsfBk=(;{JWIyXyx<@%F~G+TUsMkAG7X|Mx##tNpoa=jR{(^R?RF zY4L}vMe!g0%eCU0%3)Escqy;)Yg;w@-<^SM+ilgj@2=}!+v5EE+!=P||BKy@dhX@^ zM?>_@`*PQ_e0}ux^t-cc?l!^xKI&~B_|Jm?_}6mI@6Cfg^bh{|tZVz=UxmPTMqi9? zjDJSke~0}m1b~05dB4Z}0RLI$w$J#4Fk>6H{v7J_xNQA-Yy(8M+kIUAd$2Q>KV(#}CpAcqj~A*v73thx$A&TYnzg zfPag*-(!42n6Zspe-8C|T(S-Mz(SfY3FNy9*<%Fw&s41 z@d;tZHg5en)aP;8`t#TZ{C(8hKI0R@jBVWdbEwbbvi0Y&4fwa1`#r`dgc;ko_2*EZ z$7So!V;k`IQE&Thrj4{dsHy{w?NykMRj%#x`#KIn?KI+4}R?2K;^0+dktH!i;U)`g5qyxb^2ypT}kE&tn_#_fc>Aj86zNwsGsvp+1kx)}O~V;NN2I_ZXiLW^Ciu zpF@2fm#sgKZNT40z3nqTAX^?6*j{yeq; ze;@U>&-nP5j>fKMmdfyYJ5Aj@|1?`~Nz8`|rMc(cMs7P1=9V_WH-+GLk9#4=#Qc zXDSE2S$VEq1Lv#0rjbl&CY{YMtRidLt<*!@3M4#$2!^HT0~ zNA5qN_*JMH1xD^aHt%+RC+qfN-2Rh_U&WwMVATGf+H}VE&f28C-kAL-7rzQNNP#i? zkI%Wg!b`j9YWvfj$gO5p*-0pV6^Ece-`3@gPIIL-IHw{bNf(BIE?e}ug5kM587yKBFHC$=9@{OUgY)BbjQBSR?A zjd6(A;rq)^1c3^4w;xhfzQx+hHZ<^}>whl*fquxv-dK(5kVksH z?FAMZ=%)b3HO6Ceha1{%f2@v{cj{Dt2dj2i@momu_X>{a6cFeKSMLut34PkP1xLDB zwiFQC?}k;sePbJlmta8qYrx&O+|{sz+GW9P<)DDyt*$B1`e}MYGCFH!4~lnx`#J!L ze&se^gHiiS?5j;m3WWEM=hUVje-8>J@77loR04?9pp#Jqt={b&3;a~Pey`UvZ(=`K zok+b^-U*~Y(5C~>k?Tsbd)Kk#%P^DxdTKCq|3TZ2ufbV&e+{Vt*mD^a2o%pEEd?ks zi(_t&Uf!HqC4jJNcEzn%@U}Z@dlvya6Ky~TXJSf70VA+y7!(NhYcOE{vB{S)C;{x% zK&HR1z)9N=tw8|VZjk~L%8(i8o>qaNQ-eMD#e4SD+T(uB4L!tc>u;*CXteTyu!! z>aMr&Xm?KVN))m?=d5(w9rLeXCxCoJx_#gSe87*cCj2Yt1NwkId_{Eo&7Kp$OA_*c-!WzffN>({jHZzwtX zYKOYL%DVflJKA2|t0w%~j&yr>EBi%vw7t4s+0WaNZttYBcL)8e(*9R}q}xBE32Jyn zahL2p|Dsj?YuI_$r+-xjxb;W6eL}b=yrMYU>FAQHd%fY6|73d6-LiY-5Z-o2x>qj1 z?tr}N56=bIgD&~H8?*PqLjax2ko;>`fZh%6#_{jlpsa7t2F`u&24`f~H>mloZg96; zt~2PYvTGaE?p26t_nizj+ZJAS?`PoI8~6SOC+E%j#=XCRXK&qm8(hEO^`3iggIkSS zJ@?)Qt=)IuZqV?t7eaNlgecHzF+fb}Td^9Hqj&wagt z)AN=9+;d-V;MSd!ecyd$sOxa;bxBR<43O&w=DK=#Wt z?xX4Fm1`V$(!EF*&FMHhG@BnqFMr^<(b1=Ni!(Qi$2-5i@S+`WXH%~lcXF(qpM9$A zZVTtgojld$cQ2Zb(>1BLzUJS7a2r$$DuY{II;3HDHk8K!jhvM~OI^la4p%?m_G|fD zo#hWwm(f=yx77Khy=ouz3OZV<1EzA#!=*3UsqsoM6=C;rv%N*_Zzt#XsNMbjKT(P3edg4??z?A0%^RDZYQjLwhp^r+677tVpJms?NYs&j`1{z%vLrQ-t?mdfh7)z>Y$ zcD~)$g=6a+uXCq{t)nvSRo;?qw!7WG{BcJ-zwKV9?!`Rcx_Q(Xj_3Przn>WSVw{MGg@7@*f-@h*|E-s1>A3hX6|Mao=<(FUBGg=@31Xh4R zdA=!e-nndFN}k&AWlR5#mZ&n0{4W^-N}aXgOP2i|@L#KRcpUY=WC(=Itd3r??4f_P z(qRMYf5{LCmsuUXWZ6UiYNf*l)c=wp5H7PiDzo3L>`TU%*D4(zm-umgWSgsA>^GM`89(YD zuCq2O@#Ff)HdnpaZ!Ui_e$-#9ba-6i$MunIu6nWGT>fPIsDHT5+Ni{j>m%D-^GJe!wt8{o=;>Y!oZLWH;-(3D={HTAp&f2KNkLx4bT=inVx%|oa zQGcz{;ccxI@`IGUZ{^2@nqY^)^k8E?*i~Z*EC*w!`wMvJ_C4O8V+2*Pj z`_1J~#*g}k>#U7R{J1`{%~dbUl>L0GNHY)Ms z`p7m{z1VLqe=>g5U#oO@T;j*|k!`MevEN+&Wc;XqxX#+B#E2bflMQk@2JcN}-iuiQh7-tVbo|NBxyTE5i~$4e4C}Uc>%# z`IGTm)jwCf$iG4$7oMoUKtR#CHY`@F|NfDyUf@6YPYC4VljJYXe@*G(afu)6Q?|M4 z#eQ@7lkube;W}%h5GJe!w zt8{o=;>Y!oZLWH;-(3D={HTAp&f2KNkLx4bT=inVx%|oaQGcz{;ccxI@ z`IGUZ{^2@nqY^)^k8E?*i~Z*EC*w!`wMvJ_C4O8V+2*Pj`_1J~#*g}k>#U7R{J1`{ z%~dbUl>L0GNHY)Ms`p7m{z1VLqe=>g5U#oO@ zT;j*|k!`MevEN+&Wc;XqxX#+B#EhwH43O8mG!vdvX5 z_M6L}j34#aDjgn|_;G#K(#rU)>c3PxkiS46OmlTqtX6;i9ra%(0LE^W} zD(g|n_)-60nbkpwpN{l0Ei!)8UoCaeAn{vfmG!7({HTAh%<7=TPe*#078yV4ua-J! zkoYaL%6e2Xe$+o$W_3{Frz5>gi;N%jS4$lK+QC47?5*2W!~aXqd+)Kb+k<`-kZDllPI8O8aBkU z<{5`5{sany(^N+}yJ&lu;*Y0*nrYY&&AXa#xZ;ncKse3#XfF`S#Xm`XP!Rc07|$;< zqc8mo#lLx@s$;_U{ttzb^djcI?C&HOf3vxE=g#jEQm>ZUQJ^pV48`AExpn8xt>pYS z8ygDrWuK$?b=;q40KkF*ed*^Y{$_JhZgD&H2rTi-O@Y4b^Avxxxmj(JegqN%c`4AB zexBl&hhMc#`Vp9!0)5%%Dt>wRRU73v0&`NJFa2D_?;P4Wj=*db=*vD^@%iwpHp_Da z=Al4e`uU3A9Ddbyd5*vg6zI!7WAVMiui7!w5tvGWzVvez-#h%OEpr`#NfhYIK5Owi zhhMd8wj*#l1^Uv@TKw+eS8bc`2%JcPzU=SZx&38Eg^I(k+BxG9=uVd}`_tL~X^_Z# zXTJ4$mK${{kNeoW|CJ5klP}!I%Gg);gMVyxZNGW_O3ALoZ}hQu|0~ZCc;))g9~AKr z*bhb<$)W@0vs#8DFv@#BuNDA*G}=$rLG`hBf1lJNa1igkZQJ~d!W$mYP18aBv3Gx; zlp}CB@9Ta2?92XsJUt@`ItU(q)mD>_z)`$+d+jA(4fG_uZ;TO*Tj&}qep7%)*v^oeKewAy# z^mU()z=iNW34%%o;lob@pgaPX#QP)!NC)A=Ps{(#=gZ@L5(KvcBySz=8$n6TvXFuTRl4ipG+U1Ni zLH2h-0r#(Htf8fg8fzl$>4XCAnckQ}>lQfH#H)0|AuE%c;qamvQ=7r? zngx$Gk?(c1p!X&=1KNs(k2mpmI(pEZY0ZT`fBBXs39q9^?M-UB`s|fhnoR0WU)W>j z_W2oZ+wFGxQ$A7bajZX2GlA@a~y*jyBqb@!WQzgJE8RkPo%>=&B- zdSyS?>?f67GuHwBRkxp!12w#&xJ&kr`ubaBKiBPLfLq;82=|0n9^fjv3GdqNP!*c=lpi7?b#_YZD5J2aB0lEV8Zg4k_f8PdWeS0==?t3>l zBfGvq&2M#syXA77L1&d++n{!@LR7o&WU$$`aI7F;J?R)O)4V<301mK?gdIPuaob3DVD?@D$xUV*F=gEaz9&lf6P}@W9%MILl zK73d_dGe%q`t)h>?Af#8`Sa(+%a<>U*RNj}Z{EBq-oAZXynFYqc>n%=adB}`eE9I8 z`1z-g#V^17QvCX>D&=YedPpFY1seDLkEFXy{!_x0J{ z-zB{AS!HqGJLf-*-n=Tk()HDw^$IzE-+8s1x9HCAI=_C+->TYz=YLK6b)8@N>Z?vB z)fQiuE6V7;@ZGsTqv{-VN4_Yhxdo;7+qb{^%=@dASIOvIpM3UJIsJCEL%rli^H&~k zkoC)YgDcm|%iHzjGNyXP?Jvq-SifF5D^vbm6-Z~czr@9L#clqz^YGOb5l1=C`^Kp_ z_eJ5p)rG2p_U5%+j*CXBp!}%Yd0vl}lpdRoXDo{HlgnMSV{y136t5S>IkhK6v8C31 zp8QDdt)eKO7u<6X(zb5cJ#5>3+-z@A``gL+J!*G<|4(%LNuN_s-Rr)4HJ?+jx(oga zd`^Az=+WM1)mN`xsh?HxIhDag3k24OK>azjKJWugl~TY^53#-bmdaOrCvp2Wk96Bn z_Uf*f95lVo`et;Y_HOFsRVV&b`_l7|#h03Y?|P!Ef1k;>uFPL&7Pp1f-Ed=X7B~O> zwbDgt?<~H-cYm7=xo{KQ_xg6vg?R1u?dDGvl{b9kfo`Cx+fKT}`-(C-`J8Svn;W+B z_RQU8mQj6n<$8HT*I3Ia$|FKB@P5LhV!)qTnh?~4-g z{^;F}>iWws-RVo;23|Ms8TEX5o#^kz4SJT~9s}H{{L_d2YwpAT@4l$6Z@B*F?r%3< zt*(n3H?Cc~dGp$}YPw75CiQOIxJlWayU&7CUKj4Ocj)>b z2&*CM@9y6{Kx%2_`hcUAA9W3KkomJT?5CQKlBg%A2a`tJ$L9I`agCJ9CQBAKlFdh z{6F^Gp?~QA*fns>`9uHE|1tCb*mH;eq5osoz%l0!{X_r9%>QH09r}m|JZYf{-OV4*T6C7 z5B)>`$ISm@&mH=Q{*PS)$DBX(5B(oA|BpR)=zrPz|M{nnyEVTKt*

N3mPu2mM3; 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 - - - - Blazor - Provides Visual Studio support for Blazor - Content\LICENSE.txt - Microsoft.VisualStudio.BlazorExtension - https://go.microsoft.com/fwlink/?linkid=870449 - https://go.microsoft.com/fwlink/?linkid=870448 - Content\WebConfiguration.png - Content\WebConfiguration.png - - - - - - - - - - - - - diff --git a/src/Components/Components.sln b/src/Components/Components.sln index 3c448f8604..f00b28bd36 100644 --- a/src/Components/Components.sln +++ b/src/Components/Components.sln @@ -201,8 +201,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.Mvc.Ne EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.JsonPatch", "..\Features\JsonPatch\src\Microsoft.AspNetCore.JsonPatch.csproj", "{DC47C40A-FC38-44E4-94A4-ADE794E76309}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.VisualStudio.BlazorExtension", "blazor\BlazorExtension\src\Microsoft.VisualStudio.BlazorExtension.csproj", "{9088E4E4-B855-457F-AE9E-D86709A5E1F4}" -EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{BB236B66-28C0-49DD-9CD4-C4673CD4E7B4}" ProjectSection(SolutionItems) = preProject ..\..\.editorconfig = ..\..\.editorconfig @@ -1328,18 +1326,6 @@ Global {DC47C40A-FC38-44E4-94A4-ADE794E76309}.Release|x64.Build.0 = Release|Any CPU {DC47C40A-FC38-44E4-94A4-ADE794E76309}.Release|x86.ActiveCfg = Release|Any CPU {DC47C40A-FC38-44E4-94A4-ADE794E76309}.Release|x86.Build.0 = Release|Any CPU - {9088E4E4-B855-457F-AE9E-D86709A5E1F4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {9088E4E4-B855-457F-AE9E-D86709A5E1F4}.Debug|Any CPU.Build.0 = Debug|Any CPU - {9088E4E4-B855-457F-AE9E-D86709A5E1F4}.Debug|x64.ActiveCfg = Debug|Any CPU - {9088E4E4-B855-457F-AE9E-D86709A5E1F4}.Debug|x64.Build.0 = Debug|Any CPU - {9088E4E4-B855-457F-AE9E-D86709A5E1F4}.Debug|x86.ActiveCfg = Debug|Any CPU - {9088E4E4-B855-457F-AE9E-D86709A5E1F4}.Debug|x86.Build.0 = Debug|Any CPU - {9088E4E4-B855-457F-AE9E-D86709A5E1F4}.Release|Any CPU.ActiveCfg = Debug|Any CPU - {9088E4E4-B855-457F-AE9E-D86709A5E1F4}.Release|Any CPU.Build.0 = Debug|Any CPU - {9088E4E4-B855-457F-AE9E-D86709A5E1F4}.Release|x64.ActiveCfg = Debug|Any CPU - {9088E4E4-B855-457F-AE9E-D86709A5E1F4}.Release|x64.Build.0 = Debug|Any CPU - {9088E4E4-B855-457F-AE9E-D86709A5E1F4}.Release|x86.ActiveCfg = Debug|Any CPU - {9088E4E4-B855-457F-AE9E-D86709A5E1F4}.Release|x86.Build.0 = Debug|Any CPU {ED210157-461B-45BB-9D86-B81A62792C30}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {ED210157-461B-45BB-9D86-B81A62792C30}.Debug|Any CPU.Build.0 = Debug|Any CPU {ED210157-461B-45BB-9D86-B81A62792C30}.Debug|x64.ActiveCfg = Debug|Any CPU @@ -1593,7 +1579,6 @@ Global {3FAF725B-A628-4531-9F61-499660CD4347} = {2FC10057-7A0A-4E34-8302-879925BC0102} {04262990-929C-42BF-85A9-21C25FA95617} = {2FC10057-7A0A-4E34-8302-879925BC0102} {DC47C40A-FC38-44E4-94A4-ADE794E76309} = {2FC10057-7A0A-4E34-8302-879925BC0102} - {9088E4E4-B855-457F-AE9E-D86709A5E1F4} = {7260DED9-22A9-4E9D-92F4-5E8A4404DEAF} {ED210157-461B-45BB-9D86-B81A62792C30} = {2FC10057-7A0A-4E34-8302-879925BC0102} {DA137BD4-F7F1-4D53-855F-5EC40CEA36B0} = {2FC10057-7A0A-4E34-8302-879925BC0102} {0CDAB70B-71DC-43BE-ACB7-AD2EE3541FFB} = {2FC10057-7A0A-4E34-8302-879925BC0102} diff --git a/src/Components/ComponentsNoDeps.slnf b/src/Components/ComponentsNoDeps.slnf index 497332bacd..f41ac99b30 100644 --- a/src/Components/ComponentsNoDeps.slnf +++ b/src/Components/ComponentsNoDeps.slnf @@ -30,7 +30,6 @@ "Components\\test\\Microsoft.AspNetCore.Components.Tests.csproj", "Server\\src\\Microsoft.AspNetCore.Components.Server.csproj", "Server\\test\\Microsoft.AspNetCore.Components.Server.Tests.csproj", - "blazor\\BlazorExtension\\src\\Microsoft.VisualStudio.BlazorExtension.csproj", "test\\E2ETest\\Microsoft.AspNetCore.Components.E2ETests.csproj", "test\\testassets\\BasicTestApp\\BasicTestApp.csproj", "test\\testassets\\ComponentsApp.App\\ComponentsApp.App.csproj",