From bdac2feaddf22222b90d0792655cbab8c680e7a0 Mon Sep 17 00:00:00 2001 From: Matteo Prosperi <41970398+matteo-prosperi@users.noreply.github.com> Date: Tue, 12 Dec 2023 13:15:58 -0800 Subject: [PATCH] Updates for VS 17.9p2 (#296) --------- Co-authored-by: Matteo Prosperi --- .../CommandParentingSample.csproj | 5 +- .../CommentRemover/CommentRemover.csproj | 5 +- .../Samples/DialogSample/DialogSample.csproj | 5 +- .../Samples/Directory.Build.props | 30 +++++- .../DocumentSelectorSample.csproj | 5 +- .../FeatureGallery/FeatureGallery.csproj | 5 +- .../InProcFeatureGallery.csproj | 5 +- .../Samples/InsertGuid/InsertGuid.csproj | 5 +- .../MarkdownDiagnosticsService.cs | 2 +- .../MarkdownLinter/MarkdownLinter.csproj | 5 +- .../RunLinterOnCurrentFileCommand.cs | 2 +- .../RunLinterOnSolutionCommand.cs | 2 +- .../MemoryStreamVisualizer.csproj | 5 +- .../OutputWindowSample.csproj | 5 +- .../RegexMatchDebugVisualizer.csproj | 5 +- .../RustLanguageServerProvider.csproj | 5 +- New_Extensibility_Model/Samples/Samples.sln | 92 +------------------ .../SimpleRemoteCommandSample.csproj | 5 +- .../ToolWindowSample/ToolWindowSample.csproj | 5 +- .../UserPromptSample/UserPromptSample.csproj | 6 +- .../VSProjectQueryAPISample.csproj | 5 +- .../WordCountMarginSample.csproj | 5 +- .../WordCountMarginSampleExtension.cs | 1 - 23 files changed, 67 insertions(+), 148 deletions(-) diff --git a/New_Extensibility_Model/Samples/CommandParentingSample/CommandParentingSample.csproj b/New_Extensibility_Model/Samples/CommandParentingSample/CommandParentingSample.csproj index 64f777d4..dc43114d 100644 --- a/New_Extensibility_Model/Samples/CommandParentingSample/CommandParentingSample.csproj +++ b/New_Extensibility_Model/Samples/CommandParentingSample/CommandParentingSample.csproj @@ -5,14 +5,13 @@ enable enable 11 - $(NoWarn);CS1591;CA1812;CA1303;SA1600 https://pkgs.dev.azure.com/azure-public/vside/_packaging/msft_consumption/nuget/v3/index.json;$(RestoreAdditionalProjectSources) - - + + diff --git a/New_Extensibility_Model/Samples/CommentRemover/CommentRemover.csproj b/New_Extensibility_Model/Samples/CommentRemover/CommentRemover.csproj index 619f486d..3e147af8 100644 --- a/New_Extensibility_Model/Samples/CommentRemover/CommentRemover.csproj +++ b/New_Extensibility_Model/Samples/CommentRemover/CommentRemover.csproj @@ -5,7 +5,6 @@ enable enable 11 - $(NoWarn);CS1591;CA1812;CA1303;SA1600 $(NoWarn);SA1633 @@ -15,8 +14,8 @@ - - + + diff --git a/New_Extensibility_Model/Samples/DialogSample/DialogSample.csproj b/New_Extensibility_Model/Samples/DialogSample/DialogSample.csproj index e63f77ac..5a97bafe 100644 --- a/New_Extensibility_Model/Samples/DialogSample/DialogSample.csproj +++ b/New_Extensibility_Model/Samples/DialogSample/DialogSample.csproj @@ -4,15 +4,14 @@ enable 11 en-US - $(NoWarn);CS1591;CA1812;CA1303;SA1600 https://pkgs.dev.azure.com/azure-public/vside/_packaging/msft_consumption/nuget/v3/index.json;$(RestoreAdditionalProjectSources) - - + + diff --git a/New_Extensibility_Model/Samples/Directory.Build.props b/New_Extensibility_Model/Samples/Directory.Build.props index e1844bcb..aa044f9f 100644 --- a/New_Extensibility_Model/Samples/Directory.Build.props +++ b/New_Extensibility_Model/Samples/Directory.Build.props @@ -4,15 +4,41 @@ $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\..\')) $(RepoRootPath)obj\samples\$(MSBuildProjectName)\ $(RepoRootPath)bin\samples\$(MSBuildProjectName)\ - false false false true - SA0001 $(MSBuildThisFileDirectory)shipping.ruleset true + + + true + $(NoWarn);SA1600;SA1602;CS1591 + + + $(NoWarn);SA1010 + + + $(NoWarn);CA1812;CA1303 + + diff --git a/New_Extensibility_Model/Samples/DocumentSelectorSample/DocumentSelectorSample.csproj b/New_Extensibility_Model/Samples/DocumentSelectorSample/DocumentSelectorSample.csproj index d7d0180a..27add7ac 100644 --- a/New_Extensibility_Model/Samples/DocumentSelectorSample/DocumentSelectorSample.csproj +++ b/New_Extensibility_Model/Samples/DocumentSelectorSample/DocumentSelectorSample.csproj @@ -4,15 +4,14 @@ enable 11 en-US - $(NoWarn);CS1591;CA1812;CA1303;SA1600 https://pkgs.dev.azure.com/azure-public/vside/_packaging/msft_consumption/nuget/v3/index.json;$(RestoreAdditionalProjectSources) - - + + diff --git a/New_Extensibility_Model/Samples/FeatureGallery/FeatureGallery.csproj b/New_Extensibility_Model/Samples/FeatureGallery/FeatureGallery.csproj index 4d3a5dd2..67d6ff51 100644 --- a/New_Extensibility_Model/Samples/FeatureGallery/FeatureGallery.csproj +++ b/New_Extensibility_Model/Samples/FeatureGallery/FeatureGallery.csproj @@ -4,14 +4,13 @@ enable 11 en-US - $(NoWarn);CS1591;CA1812;CA1303;SA1600 https://pkgs.dev.azure.com/azure-public/vside/_packaging/msft_consumption/nuget/v3/index.json;$(RestoreAdditionalProjectSources) - - + + diff --git a/New_Extensibility_Model/Samples/InProcFeatureGallery/InProcFeatureGallery.csproj b/New_Extensibility_Model/Samples/InProcFeatureGallery/InProcFeatureGallery.csproj index d5533642..b4eafb75 100644 --- a/New_Extensibility_Model/Samples/InProcFeatureGallery/InProcFeatureGallery.csproj +++ b/New_Extensibility_Model/Samples/InProcFeatureGallery/InProcFeatureGallery.csproj @@ -4,7 +4,6 @@ enable 11 en-US - $(NoWarn);CS1591;CA1812;CA1303;SA1600 https://pkgs.dev.azure.com/azure-public/vside/_packaging/msft_consumption/nuget/v3/index.json;$(RestoreAdditionalProjectSources) @@ -14,8 +13,8 @@ - - + + diff --git a/New_Extensibility_Model/Samples/InsertGuid/InsertGuid.csproj b/New_Extensibility_Model/Samples/InsertGuid/InsertGuid.csproj index c3a77891..bdfeb20f 100644 --- a/New_Extensibility_Model/Samples/InsertGuid/InsertGuid.csproj +++ b/New_Extensibility_Model/Samples/InsertGuid/InsertGuid.csproj @@ -4,15 +4,14 @@ enable 11 en-US - $(NoWarn);CS1591;CA1812;CA1303;SA1600 https://pkgs.dev.azure.com/azure-public/vside/_packaging/msft_consumption/nuget/v3/index.json;$(RestoreAdditionalProjectSources) - - + + diff --git a/New_Extensibility_Model/Samples/MarkdownLinter/MarkdownDiagnosticsService.cs b/New_Extensibility_Model/Samples/MarkdownLinter/MarkdownDiagnosticsService.cs index a18ff484..eb361bf1 100644 --- a/New_Extensibility_Model/Samples/MarkdownLinter/MarkdownDiagnosticsService.cs +++ b/New_Extensibility_Model/Samples/MarkdownLinter/MarkdownDiagnosticsService.cs @@ -87,7 +87,7 @@ public async Task ProcessFileAsync(Uri documentUri, CancellationToken cancellati } /// - /// Processes the current version instance for markdown errors and reports to the error list. + /// Processes the current version instance for markdown errors and reports to the error list. /// /// Text View instance to read the contents from. /// Cancellation token to monitor. diff --git a/New_Extensibility_Model/Samples/MarkdownLinter/MarkdownLinter.csproj b/New_Extensibility_Model/Samples/MarkdownLinter/MarkdownLinter.csproj index 73be59bd..e54ee212 100644 --- a/New_Extensibility_Model/Samples/MarkdownLinter/MarkdownLinter.csproj +++ b/New_Extensibility_Model/Samples/MarkdownLinter/MarkdownLinter.csproj @@ -4,15 +4,14 @@ enable 11 en-US - $(NoWarn);CS1591;CA1812;CA1303;SA1600 https://pkgs.dev.azure.com/azure-public/vside/_packaging/msft_consumption/nuget/v3/index.json;$(RestoreAdditionalProjectSources) - - + + diff --git a/New_Extensibility_Model/Samples/MarkdownLinter/RunLinterOnCurrentFileCommand.cs b/New_Extensibility_Model/Samples/MarkdownLinter/RunLinterOnCurrentFileCommand.cs index d6026658..2d030f9f 100644 --- a/New_Extensibility_Model/Samples/MarkdownLinter/RunLinterOnCurrentFileCommand.cs +++ b/New_Extensibility_Model/Samples/MarkdownLinter/RunLinterOnCurrentFileCommand.cs @@ -17,7 +17,7 @@ namespace MarkdownLinter; /// A command to execute linter on the current file selected in Solution Explorer. /// /// -/// This command utilizes to describe when command state is enabled. +/// This command utilizes to describe when command state is enabled. /// [VisualStudioContribution] internal class RunLinterOnCurrentFileCommand : Command diff --git a/New_Extensibility_Model/Samples/MarkdownLinter/RunLinterOnSolutionCommand.cs b/New_Extensibility_Model/Samples/MarkdownLinter/RunLinterOnSolutionCommand.cs index a3fdd210..d4b48bf0 100644 --- a/New_Extensibility_Model/Samples/MarkdownLinter/RunLinterOnSolutionCommand.cs +++ b/New_Extensibility_Model/Samples/MarkdownLinter/RunLinterOnSolutionCommand.cs @@ -20,7 +20,7 @@ namespace MarkdownLinter; /// A command to execute linter on all markdown files in a solution. /// /// -/// This command utilizes to describe when commmand state is enabled. +/// This command utilizes to describe when commmand state is enabled. /// [VisualStudioContribution] internal class RunLinterOnSolutionCommand : Command diff --git a/New_Extensibility_Model/Samples/MemoryStreamDebugVisualizer/MemoryStreamVisualizer/MemoryStreamVisualizer.csproj b/New_Extensibility_Model/Samples/MemoryStreamDebugVisualizer/MemoryStreamVisualizer/MemoryStreamVisualizer.csproj index 006342b0..acaeab20 100644 --- a/New_Extensibility_Model/Samples/MemoryStreamDebugVisualizer/MemoryStreamVisualizer/MemoryStreamVisualizer.csproj +++ b/New_Extensibility_Model/Samples/MemoryStreamDebugVisualizer/MemoryStreamVisualizer/MemoryStreamVisualizer.csproj @@ -6,15 +6,14 @@ true en-US true - $(NoWarn);CS1591;CA1812;CA1303;SA1600 https://pkgs.dev.azure.com/azure-public/vside/_packaging/msft_consumption/nuget/v3/index.json;$(RestoreAdditionalProjectSources) - - + + diff --git a/New_Extensibility_Model/Samples/OutputWindowSample/OutputWindowSample.csproj b/New_Extensibility_Model/Samples/OutputWindowSample/OutputWindowSample.csproj index 2c114a12..0b3abcec 100644 --- a/New_Extensibility_Model/Samples/OutputWindowSample/OutputWindowSample.csproj +++ b/New_Extensibility_Model/Samples/OutputWindowSample/OutputWindowSample.csproj @@ -4,15 +4,14 @@ enable 11 en-US - $(NoWarn);CS1591;CA1812;CA1303;SA1600 https://pkgs.dev.azure.com/azure-public/vside/_packaging/msft_consumption/nuget/v3/index.json;$(RestoreAdditionalProjectSources) - - + + diff --git a/New_Extensibility_Model/Samples/RegexMatchDebugVisualizer/RegexMatchDebugVisualizer/RegexMatchDebugVisualizer.csproj b/New_Extensibility_Model/Samples/RegexMatchDebugVisualizer/RegexMatchDebugVisualizer/RegexMatchDebugVisualizer.csproj index fbebef58..694fa8a0 100644 --- a/New_Extensibility_Model/Samples/RegexMatchDebugVisualizer/RegexMatchDebugVisualizer/RegexMatchDebugVisualizer.csproj +++ b/New_Extensibility_Model/Samples/RegexMatchDebugVisualizer/RegexMatchDebugVisualizer/RegexMatchDebugVisualizer.csproj @@ -6,15 +6,14 @@ 11 RegexMatchVisualizer $(DefineConstants);VISUALIZER - $(NoWarn);CS1591;CA1812;CA1303;SA1600 https://pkgs.dev.azure.com/azure-public/vside/_packaging/msft_consumption/nuget/v3/index.json;$(RestoreAdditionalProjectSources) - - + + diff --git a/New_Extensibility_Model/Samples/RustLanguageServerProvider/RustLanguageServerProvider.csproj b/New_Extensibility_Model/Samples/RustLanguageServerProvider/RustLanguageServerProvider.csproj index de720596..45137036 100644 --- a/New_Extensibility_Model/Samples/RustLanguageServerProvider/RustLanguageServerProvider.csproj +++ b/New_Extensibility_Model/Samples/RustLanguageServerProvider/RustLanguageServerProvider.csproj @@ -4,15 +4,14 @@ enable 11 en-US - $(NoWarn);CS1591;CA1812;CA1303;SA1600 https://pkgs.dev.azure.com/azure-public/vside/_packaging/msft_consumption/nuget/v3/index.json;$(RestoreAdditionalProjectSources) - - + + diff --git a/New_Extensibility_Model/Samples/Samples.sln b/New_Extensibility_Model/Samples/Samples.sln index f07ad0ab..7d8e9cfc 100644 --- a/New_Extensibility_Model/Samples/Samples.sln +++ b/New_Extensibility_Model/Samples/Samples.sln @@ -1,7 +1,7 @@  Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 -VisualStudioVersion = 17.0.31516.38 +VisualStudioVersion = 17.9.34329.44 MinimumVisualStudioVersion = 10.0.40219.1 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{070F0AEA-C0A0-4B5D-9286-55574A37BE7A}" ProjectSection(SolutionItems) = preProject @@ -54,175 +54,85 @@ EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU - Debug|x86 = Debug|x86 Release|Any CPU = Release|Any CPU - Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {6D16A4D7-4CF1-4162-9538-06F2D8499821}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {6D16A4D7-4CF1-4162-9538-06F2D8499821}.Debug|Any CPU.Build.0 = Debug|Any CPU - {6D16A4D7-4CF1-4162-9538-06F2D8499821}.Debug|x86.ActiveCfg = Debug|Any CPU - {6D16A4D7-4CF1-4162-9538-06F2D8499821}.Debug|x86.Build.0 = Debug|Any CPU {6D16A4D7-4CF1-4162-9538-06F2D8499821}.Release|Any CPU.ActiveCfg = Release|Any CPU {6D16A4D7-4CF1-4162-9538-06F2D8499821}.Release|Any CPU.Build.0 = Release|Any CPU - {6D16A4D7-4CF1-4162-9538-06F2D8499821}.Release|x86.ActiveCfg = Release|Any CPU - {6D16A4D7-4CF1-4162-9538-06F2D8499821}.Release|x86.Build.0 = Release|Any CPU {F005B03E-66DC-4145-8BBA-9E21ABE582C2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {F005B03E-66DC-4145-8BBA-9E21ABE582C2}.Debug|Any CPU.Build.0 = Debug|Any CPU - {F005B03E-66DC-4145-8BBA-9E21ABE582C2}.Debug|x86.ActiveCfg = Debug|Any CPU - {F005B03E-66DC-4145-8BBA-9E21ABE582C2}.Debug|x86.Build.0 = Debug|Any CPU {F005B03E-66DC-4145-8BBA-9E21ABE582C2}.Release|Any CPU.ActiveCfg = Release|Any CPU {F005B03E-66DC-4145-8BBA-9E21ABE582C2}.Release|Any CPU.Build.0 = Release|Any CPU - {F005B03E-66DC-4145-8BBA-9E21ABE582C2}.Release|x86.ActiveCfg = Release|Any CPU - {F005B03E-66DC-4145-8BBA-9E21ABE582C2}.Release|x86.Build.0 = Release|Any CPU {11EB62B3-79FD-450D-BC86-6FF414178B7E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {11EB62B3-79FD-450D-BC86-6FF414178B7E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {11EB62B3-79FD-450D-BC86-6FF414178B7E}.Debug|x86.ActiveCfg = Debug|Any CPU - {11EB62B3-79FD-450D-BC86-6FF414178B7E}.Debug|x86.Build.0 = Debug|Any CPU {11EB62B3-79FD-450D-BC86-6FF414178B7E}.Release|Any CPU.ActiveCfg = Release|Any CPU {11EB62B3-79FD-450D-BC86-6FF414178B7E}.Release|Any CPU.Build.0 = Release|Any CPU - {11EB62B3-79FD-450D-BC86-6FF414178B7E}.Release|x86.ActiveCfg = Release|Any CPU - {11EB62B3-79FD-450D-BC86-6FF414178B7E}.Release|x86.Build.0 = Release|Any CPU {6AAB3137-2974-45F1-A426-E28231F6FE13}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {6AAB3137-2974-45F1-A426-E28231F6FE13}.Debug|Any CPU.Build.0 = Debug|Any CPU - {6AAB3137-2974-45F1-A426-E28231F6FE13}.Debug|x86.ActiveCfg = Debug|Any CPU - {6AAB3137-2974-45F1-A426-E28231F6FE13}.Debug|x86.Build.0 = Debug|Any CPU {6AAB3137-2974-45F1-A426-E28231F6FE13}.Release|Any CPU.ActiveCfg = Release|Any CPU {6AAB3137-2974-45F1-A426-E28231F6FE13}.Release|Any CPU.Build.0 = Release|Any CPU - {6AAB3137-2974-45F1-A426-E28231F6FE13}.Release|x86.ActiveCfg = Release|Any CPU - {6AAB3137-2974-45F1-A426-E28231F6FE13}.Release|x86.Build.0 = Release|Any CPU {053DB39C-56F5-41DC-9C85-EA14FE3F49B7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {053DB39C-56F5-41DC-9C85-EA14FE3F49B7}.Debug|Any CPU.Build.0 = Debug|Any CPU - {053DB39C-56F5-41DC-9C85-EA14FE3F49B7}.Debug|x86.ActiveCfg = Debug|Any CPU - {053DB39C-56F5-41DC-9C85-EA14FE3F49B7}.Debug|x86.Build.0 = Debug|Any CPU {053DB39C-56F5-41DC-9C85-EA14FE3F49B7}.Release|Any CPU.ActiveCfg = Release|Any CPU {053DB39C-56F5-41DC-9C85-EA14FE3F49B7}.Release|Any CPU.Build.0 = Release|Any CPU - {053DB39C-56F5-41DC-9C85-EA14FE3F49B7}.Release|x86.ActiveCfg = Release|Any CPU - {053DB39C-56F5-41DC-9C85-EA14FE3F49B7}.Release|x86.Build.0 = Release|Any CPU {30A57F3B-B2DC-414D-A37B-2A4ECB819D4B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {30A57F3B-B2DC-414D-A37B-2A4ECB819D4B}.Debug|Any CPU.Build.0 = Debug|Any CPU - {30A57F3B-B2DC-414D-A37B-2A4ECB819D4B}.Debug|x86.ActiveCfg = Debug|Any CPU - {30A57F3B-B2DC-414D-A37B-2A4ECB819D4B}.Debug|x86.Build.0 = Debug|Any CPU {30A57F3B-B2DC-414D-A37B-2A4ECB819D4B}.Release|Any CPU.ActiveCfg = Release|Any CPU {30A57F3B-B2DC-414D-A37B-2A4ECB819D4B}.Release|Any CPU.Build.0 = Release|Any CPU - {30A57F3B-B2DC-414D-A37B-2A4ECB819D4B}.Release|x86.ActiveCfg = Release|Any CPU - {30A57F3B-B2DC-414D-A37B-2A4ECB819D4B}.Release|x86.Build.0 = Release|Any CPU {563DFF27-B946-40A3-9EB2-F3B8CCFE4F0A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {563DFF27-B946-40A3-9EB2-F3B8CCFE4F0A}.Debug|Any CPU.Build.0 = Debug|Any CPU - {563DFF27-B946-40A3-9EB2-F3B8CCFE4F0A}.Debug|x86.ActiveCfg = Debug|Any CPU - {563DFF27-B946-40A3-9EB2-F3B8CCFE4F0A}.Debug|x86.Build.0 = Debug|Any CPU {563DFF27-B946-40A3-9EB2-F3B8CCFE4F0A}.Release|Any CPU.ActiveCfg = Release|Any CPU {563DFF27-B946-40A3-9EB2-F3B8CCFE4F0A}.Release|Any CPU.Build.0 = Release|Any CPU - {563DFF27-B946-40A3-9EB2-F3B8CCFE4F0A}.Release|x86.ActiveCfg = Release|Any CPU - {563DFF27-B946-40A3-9EB2-F3B8CCFE4F0A}.Release|x86.Build.0 = Release|Any CPU {E9A9549D-5F36-4C82-86A5-824A538B8E51}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {E9A9549D-5F36-4C82-86A5-824A538B8E51}.Debug|Any CPU.Build.0 = Debug|Any CPU - {E9A9549D-5F36-4C82-86A5-824A538B8E51}.Debug|x86.ActiveCfg = Debug|Any CPU - {E9A9549D-5F36-4C82-86A5-824A538B8E51}.Debug|x86.Build.0 = Debug|Any CPU {E9A9549D-5F36-4C82-86A5-824A538B8E51}.Release|Any CPU.ActiveCfg = Release|Any CPU {E9A9549D-5F36-4C82-86A5-824A538B8E51}.Release|Any CPU.Build.0 = Release|Any CPU - {E9A9549D-5F36-4C82-86A5-824A538B8E51}.Release|x86.ActiveCfg = Release|Any CPU - {E9A9549D-5F36-4C82-86A5-824A538B8E51}.Release|x86.Build.0 = Release|Any CPU {AA2CA55C-851A-471B-96DD-660A43E1F9FB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {AA2CA55C-851A-471B-96DD-660A43E1F9FB}.Debug|Any CPU.Build.0 = Debug|Any CPU - {AA2CA55C-851A-471B-96DD-660A43E1F9FB}.Debug|x86.ActiveCfg = Debug|Any CPU - {AA2CA55C-851A-471B-96DD-660A43E1F9FB}.Debug|x86.Build.0 = Debug|Any CPU {AA2CA55C-851A-471B-96DD-660A43E1F9FB}.Release|Any CPU.ActiveCfg = Release|Any CPU {AA2CA55C-851A-471B-96DD-660A43E1F9FB}.Release|Any CPU.Build.0 = Release|Any CPU - {AA2CA55C-851A-471B-96DD-660A43E1F9FB}.Release|x86.ActiveCfg = Release|Any CPU - {AA2CA55C-851A-471B-96DD-660A43E1F9FB}.Release|x86.Build.0 = Release|Any CPU {B44726AE-1F46-4C3A-BF1E-321E43E4BE9D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {B44726AE-1F46-4C3A-BF1E-321E43E4BE9D}.Debug|Any CPU.Build.0 = Debug|Any CPU - {B44726AE-1F46-4C3A-BF1E-321E43E4BE9D}.Debug|x86.ActiveCfg = Debug|Any CPU - {B44726AE-1F46-4C3A-BF1E-321E43E4BE9D}.Debug|x86.Build.0 = Debug|Any CPU {B44726AE-1F46-4C3A-BF1E-321E43E4BE9D}.Release|Any CPU.ActiveCfg = Release|Any CPU {B44726AE-1F46-4C3A-BF1E-321E43E4BE9D}.Release|Any CPU.Build.0 = Release|Any CPU - {B44726AE-1F46-4C3A-BF1E-321E43E4BE9D}.Release|x86.ActiveCfg = Release|Any CPU - {B44726AE-1F46-4C3A-BF1E-321E43E4BE9D}.Release|x86.Build.0 = Release|Any CPU {646BC52B-12B8-4FB0-A483-119771576560}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {646BC52B-12B8-4FB0-A483-119771576560}.Debug|Any CPU.Build.0 = Debug|Any CPU - {646BC52B-12B8-4FB0-A483-119771576560}.Debug|x86.ActiveCfg = Debug|Any CPU - {646BC52B-12B8-4FB0-A483-119771576560}.Debug|x86.Build.0 = Debug|Any CPU {646BC52B-12B8-4FB0-A483-119771576560}.Release|Any CPU.ActiveCfg = Release|Any CPU {646BC52B-12B8-4FB0-A483-119771576560}.Release|Any CPU.Build.0 = Release|Any CPU - {646BC52B-12B8-4FB0-A483-119771576560}.Release|x86.ActiveCfg = Release|Any CPU - {646BC52B-12B8-4FB0-A483-119771576560}.Release|x86.Build.0 = Release|Any CPU {176CF461-98DA-403B-9CCD-BA8695BB8586}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {176CF461-98DA-403B-9CCD-BA8695BB8586}.Debug|Any CPU.Build.0 = Debug|Any CPU - {176CF461-98DA-403B-9CCD-BA8695BB8586}.Debug|x86.ActiveCfg = Debug|Any CPU - {176CF461-98DA-403B-9CCD-BA8695BB8586}.Debug|x86.Build.0 = Debug|Any CPU {176CF461-98DA-403B-9CCD-BA8695BB8586}.Release|Any CPU.ActiveCfg = Release|Any CPU {176CF461-98DA-403B-9CCD-BA8695BB8586}.Release|Any CPU.Build.0 = Release|Any CPU - {176CF461-98DA-403B-9CCD-BA8695BB8586}.Release|x86.ActiveCfg = Release|Any CPU - {176CF461-98DA-403B-9CCD-BA8695BB8586}.Release|x86.Build.0 = Release|Any CPU {60341B35-AE0D-43D1-B6FA-DB02309BC8D1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {60341B35-AE0D-43D1-B6FA-DB02309BC8D1}.Debug|Any CPU.Build.0 = Debug|Any CPU - {60341B35-AE0D-43D1-B6FA-DB02309BC8D1}.Debug|x86.ActiveCfg = Debug|Any CPU - {60341B35-AE0D-43D1-B6FA-DB02309BC8D1}.Debug|x86.Build.0 = Debug|Any CPU {60341B35-AE0D-43D1-B6FA-DB02309BC8D1}.Release|Any CPU.ActiveCfg = Release|Any CPU {60341B35-AE0D-43D1-B6FA-DB02309BC8D1}.Release|Any CPU.Build.0 = Release|Any CPU - {60341B35-AE0D-43D1-B6FA-DB02309BC8D1}.Release|x86.ActiveCfg = Release|Any CPU - {60341B35-AE0D-43D1-B6FA-DB02309BC8D1}.Release|x86.Build.0 = Release|Any CPU {BFEE0E3B-025D-4AB6-A40B-0E05F7DBFB90}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {BFEE0E3B-025D-4AB6-A40B-0E05F7DBFB90}.Debug|Any CPU.Build.0 = Debug|Any CPU - {BFEE0E3B-025D-4AB6-A40B-0E05F7DBFB90}.Debug|x86.ActiveCfg = Debug|Any CPU - {BFEE0E3B-025D-4AB6-A40B-0E05F7DBFB90}.Debug|x86.Build.0 = Debug|Any CPU {BFEE0E3B-025D-4AB6-A40B-0E05F7DBFB90}.Release|Any CPU.ActiveCfg = Release|Any CPU {BFEE0E3B-025D-4AB6-A40B-0E05F7DBFB90}.Release|Any CPU.Build.0 = Release|Any CPU - {BFEE0E3B-025D-4AB6-A40B-0E05F7DBFB90}.Release|x86.ActiveCfg = Release|Any CPU - {BFEE0E3B-025D-4AB6-A40B-0E05F7DBFB90}.Release|x86.Build.0 = Release|Any CPU {AA31B852-5E22-4CAC-AF38-B62FA592E747}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {AA31B852-5E22-4CAC-AF38-B62FA592E747}.Debug|Any CPU.Build.0 = Debug|Any CPU - {AA31B852-5E22-4CAC-AF38-B62FA592E747}.Debug|x86.ActiveCfg = Debug|Any CPU - {AA31B852-5E22-4CAC-AF38-B62FA592E747}.Debug|x86.Build.0 = Debug|Any CPU {AA31B852-5E22-4CAC-AF38-B62FA592E747}.Release|Any CPU.ActiveCfg = Release|Any CPU {AA31B852-5E22-4CAC-AF38-B62FA592E747}.Release|Any CPU.Build.0 = Release|Any CPU - {AA31B852-5E22-4CAC-AF38-B62FA592E747}.Release|x86.ActiveCfg = Release|Any CPU - {AA31B852-5E22-4CAC-AF38-B62FA592E747}.Release|x86.Build.0 = Release|Any CPU {F76CD115-2F74-4381-878B-F90A04012195}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {F76CD115-2F74-4381-878B-F90A04012195}.Debug|Any CPU.Build.0 = Debug|Any CPU - {F76CD115-2F74-4381-878B-F90A04012195}.Debug|Any CPU.Deploy.0 = Debug|Any CPU - {F76CD115-2F74-4381-878B-F90A04012195}.Debug|x86.ActiveCfg = Debug|Any CPU - {F76CD115-2F74-4381-878B-F90A04012195}.Debug|x86.Build.0 = Debug|Any CPU - {F76CD115-2F74-4381-878B-F90A04012195}.Debug|x86.Deploy.0 = Debug|Any CPU {F76CD115-2F74-4381-878B-F90A04012195}.Release|Any CPU.ActiveCfg = Release|Any CPU {F76CD115-2F74-4381-878B-F90A04012195}.Release|Any CPU.Build.0 = Release|Any CPU - {F76CD115-2F74-4381-878B-F90A04012195}.Release|Any CPU.Deploy.0 = Release|Any CPU - {F76CD115-2F74-4381-878B-F90A04012195}.Release|x86.ActiveCfg = Release|Any CPU - {F76CD115-2F74-4381-878B-F90A04012195}.Release|x86.Build.0 = Release|Any CPU - {F76CD115-2F74-4381-878B-F90A04012195}.Release|x86.Deploy.0 = Release|Any CPU {99684185-2C81-45B3-A69F-0852AD0E4F9E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {99684185-2C81-45B3-A69F-0852AD0E4F9E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {99684185-2C81-45B3-A69F-0852AD0E4F9E}.Debug|Any CPU.Deploy.0 = Debug|Any CPU - {99684185-2C81-45B3-A69F-0852AD0E4F9E}.Debug|x86.ActiveCfg = Debug|Any CPU - {99684185-2C81-45B3-A69F-0852AD0E4F9E}.Debug|x86.Build.0 = Debug|Any CPU - {99684185-2C81-45B3-A69F-0852AD0E4F9E}.Debug|x86.Deploy.0 = Debug|Any CPU {99684185-2C81-45B3-A69F-0852AD0E4F9E}.Release|Any CPU.ActiveCfg = Release|Any CPU {99684185-2C81-45B3-A69F-0852AD0E4F9E}.Release|Any CPU.Build.0 = Release|Any CPU - {99684185-2C81-45B3-A69F-0852AD0E4F9E}.Release|Any CPU.Deploy.0 = Release|Any CPU - {99684185-2C81-45B3-A69F-0852AD0E4F9E}.Release|x86.ActiveCfg = Release|Any CPU - {99684185-2C81-45B3-A69F-0852AD0E4F9E}.Release|x86.Build.0 = Release|Any CPU - {99684185-2C81-45B3-A69F-0852AD0E4F9E}.Release|x86.Deploy.0 = Release|Any CPU {7411CD7E-B825-4E7A-91A9-99A65EEE4073}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {7411CD7E-B825-4E7A-91A9-99A65EEE4073}.Debug|Any CPU.Build.0 = Debug|Any CPU - {7411CD7E-B825-4E7A-91A9-99A65EEE4073}.Debug|Any CPU.Deploy.0 = Debug|Any CPU - {7411CD7E-B825-4E7A-91A9-99A65EEE4073}.Debug|x86.ActiveCfg = Debug|Any CPU - {7411CD7E-B825-4E7A-91A9-99A65EEE4073}.Debug|x86.Build.0 = Debug|Any CPU - {7411CD7E-B825-4E7A-91A9-99A65EEE4073}.Debug|x86.Deploy.0 = Debug|Any CPU {7411CD7E-B825-4E7A-91A9-99A65EEE4073}.Release|Any CPU.ActiveCfg = Release|Any CPU {7411CD7E-B825-4E7A-91A9-99A65EEE4073}.Release|Any CPU.Build.0 = Release|Any CPU - {7411CD7E-B825-4E7A-91A9-99A65EEE4073}.Release|Any CPU.Deploy.0 = Release|Any CPU - {7411CD7E-B825-4E7A-91A9-99A65EEE4073}.Release|x86.ActiveCfg = Release|Any CPU - {7411CD7E-B825-4E7A-91A9-99A65EEE4073}.Release|x86.Build.0 = Release|Any CPU - {7411CD7E-B825-4E7A-91A9-99A65EEE4073}.Release|x86.Deploy.0 = Release|Any CPU {713DB53E-4099-42FF-B6D9-ACA84F6136D9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {713DB53E-4099-42FF-B6D9-ACA84F6136D9}.Debug|Any CPU.Build.0 = Debug|Any CPU - {713DB53E-4099-42FF-B6D9-ACA84F6136D9}.Debug|x86.ActiveCfg = Debug|Any CPU - {713DB53E-4099-42FF-B6D9-ACA84F6136D9}.Debug|x86.Build.0 = Debug|Any CPU {713DB53E-4099-42FF-B6D9-ACA84F6136D9}.Release|Any CPU.ActiveCfg = Release|Any CPU {713DB53E-4099-42FF-B6D9-ACA84F6136D9}.Release|Any CPU.Build.0 = Release|Any CPU - {713DB53E-4099-42FF-B6D9-ACA84F6136D9}.Release|x86.ActiveCfg = Release|Any CPU - {713DB53E-4099-42FF-B6D9-ACA84F6136D9}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/New_Extensibility_Model/Samples/SimpleRemoteCommandSample/SimpleRemoteCommandSample.csproj b/New_Extensibility_Model/Samples/SimpleRemoteCommandSample/SimpleRemoteCommandSample.csproj index 32822149..90cf3945 100644 --- a/New_Extensibility_Model/Samples/SimpleRemoteCommandSample/SimpleRemoteCommandSample.csproj +++ b/New_Extensibility_Model/Samples/SimpleRemoteCommandSample/SimpleRemoteCommandSample.csproj @@ -4,14 +4,13 @@ enable 11 en-US - $(NoWarn);CS1591;CA1812;CA1303;SA1600 https://pkgs.dev.azure.com/azure-public/vside/_packaging/msft_consumption/nuget/v3/index.json;$(RestoreAdditionalProjectSources) - - + + diff --git a/New_Extensibility_Model/Samples/ToolWindowSample/ToolWindowSample.csproj b/New_Extensibility_Model/Samples/ToolWindowSample/ToolWindowSample.csproj index 25b5b9be..bff3e734 100644 --- a/New_Extensibility_Model/Samples/ToolWindowSample/ToolWindowSample.csproj +++ b/New_Extensibility_Model/Samples/ToolWindowSample/ToolWindowSample.csproj @@ -4,15 +4,14 @@ enable 11 en-US - $(NoWarn);CS1591;CA1812;CA1303;SA1600 https://pkgs.dev.azure.com/azure-public/vside/_packaging/msft_consumption/nuget/v3/index.json;$(RestoreAdditionalProjectSources) - - + + diff --git a/New_Extensibility_Model/Samples/UserPromptSample/UserPromptSample.csproj b/New_Extensibility_Model/Samples/UserPromptSample/UserPromptSample.csproj index c9364820..dbf27e02 100644 --- a/New_Extensibility_Model/Samples/UserPromptSample/UserPromptSample.csproj +++ b/New_Extensibility_Model/Samples/UserPromptSample/UserPromptSample.csproj @@ -4,14 +4,14 @@ enable 11 en-US - $(NoWarn);CS1591;IDE0008;CA1812;CA1303 + $(NoWarn);CS1591;IDE0008;CA1812 https://pkgs.dev.azure.com/azure-public/vside/_packaging/msft_consumption/nuget/v3/index.json;$(RestoreAdditionalProjectSources) - - + + diff --git a/New_Extensibility_Model/Samples/VSProjectQueryAPISample/VSProjectQueryAPISample.csproj b/New_Extensibility_Model/Samples/VSProjectQueryAPISample/VSProjectQueryAPISample.csproj index 0af110d3..21fbc563 100644 --- a/New_Extensibility_Model/Samples/VSProjectQueryAPISample/VSProjectQueryAPISample.csproj +++ b/New_Extensibility_Model/Samples/VSProjectQueryAPISample/VSProjectQueryAPISample.csproj @@ -5,14 +5,13 @@ enable enable 11 - $(NoWarn);CS1591;CA1812;CA1303;SA1600 https://pkgs.dev.azure.com/azure-public/vside/_packaging/msft_consumption/nuget/v3/index.json;$(RestoreAdditionalProjectSources) - - + + diff --git a/New_Extensibility_Model/Samples/WordCountMargin/WordCountMarginSample.csproj b/New_Extensibility_Model/Samples/WordCountMargin/WordCountMarginSample.csproj index 3b247ec6..deb6fe8b 100644 --- a/New_Extensibility_Model/Samples/WordCountMargin/WordCountMarginSample.csproj +++ b/New_Extensibility_Model/Samples/WordCountMargin/WordCountMarginSample.csproj @@ -4,15 +4,14 @@ enable 11 en-US - $(NoWarn);CS1591;CA1812;CA1303;SA1600 https://pkgs.dev.azure.com/azure-public/vside/_packaging/msft_consumption/nuget/v3/index.json;$(RestoreAdditionalProjectSources) - - + + diff --git a/New_Extensibility_Model/Samples/WordCountMargin/WordCountMarginSampleExtension.cs b/New_Extensibility_Model/Samples/WordCountMargin/WordCountMarginSampleExtension.cs index 554d1b0a..2f0ca59d 100644 --- a/New_Extensibility_Model/Samples/WordCountMargin/WordCountMarginSampleExtension.cs +++ b/New_Extensibility_Model/Samples/WordCountMargin/WordCountMarginSampleExtension.cs @@ -6,7 +6,6 @@ namespace WordCountMarginSample; using Microsoft.Extensions.DependencyInjection; using Microsoft.VisualStudio.Extensibility; -/// /// /// Extension entry point for the WordCountMarginSample. ///