From 9b7b94c0d2fce97717f7db4733f97ab087617cf3 Mon Sep 17 00:00:00 2001 From: Amadeusz Wieczorek Date: Wed, 21 Aug 2019 15:10:57 -0700 Subject: Fix issues with old VSIX project by creating a modern VSIX project --- .../AsyncQuickInfoDemo.VSIX.csproj | 75 ++++++++ .../Properties/AssemblyInfo.cs | 33 ++++ .../source.extension.vsixmanifest | 20 +++ .../AsyncQuickInfoDemo.VSWindows.csproj | 195 --------------------- .../AsyncQuickInfoDemoPackage.cs | 37 ---- .../Properties/AssemblyInfo.cs | 32 ---- .../Resources/AsyncQuickInfoDemoPackage.ico | Bin 428446 -> 0 bytes .../AsyncQuickInfoDemo.VSWindows/VSPackage.resx | 130 -------------- .../AsyncQuickInfoDemo.VSWindows/packages.config | 4 - .../source.extension.vsixmanifest | 21 --- samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.sln | 36 ++-- samples/AsyncQuickInfoDemo/nuget.config | 8 - 12 files changed, 154 insertions(+), 437 deletions(-) create mode 100644 samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSIX/AsyncQuickInfoDemo.VSIX.csproj create mode 100644 samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSIX/Properties/AssemblyInfo.cs create mode 100644 samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSIX/source.extension.vsixmanifest delete mode 100644 samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSWindows/AsyncQuickInfoDemo.VSWindows.csproj delete mode 100644 samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSWindows/AsyncQuickInfoDemoPackage.cs delete mode 100644 samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSWindows/Properties/AssemblyInfo.cs delete mode 100644 samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSWindows/Resources/AsyncQuickInfoDemoPackage.ico delete mode 100644 samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSWindows/VSPackage.resx delete mode 100644 samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSWindows/packages.config delete mode 100644 samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSWindows/source.extension.vsixmanifest delete mode 100644 samples/AsyncQuickInfoDemo/nuget.config (limited to 'samples/AsyncQuickInfoDemo') diff --git a/samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSIX/AsyncQuickInfoDemo.VSIX.csproj b/samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSIX/AsyncQuickInfoDemo.VSIX.csproj new file mode 100644 index 0000000..77cc8e1 --- /dev/null +++ b/samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSIX/AsyncQuickInfoDemo.VSIX.csproj @@ -0,0 +1,75 @@ + + + + 16.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + Debug + AnyCPU + 2.0 + {82b43b9b-a64c-4715-b499-d71e9ca2bd60};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + {CE545EFD-9183-4A7D-9BDB-522B47CE2F2C} + Library + Properties + AsyncQuickInfoDemo.VSIX + AsyncQuickInfoDemo.VSIX + v4.7.2 + false + false + false + false + false + false + Program + $(DevEnvDir)devenv.exe + /rootsuffix Exp + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + Designer + + + + + + + + + {a8c6a9ed-4c62-420e-b7ac-1a6936a8a523} + AsyncQuickInfoDemo + BuiltProjectOutputGroup%3bBuiltProjectOutputGroupDependencies%3bGetCopyToOutputDirectoryItems%3bSatelliteDllsProjectOutputGroup%3b + DebugSymbolsProjectOutputGroup%3b + + + + + + \ No newline at end of file diff --git a/samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSIX/Properties/AssemblyInfo.cs b/samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSIX/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..a27bc3b --- /dev/null +++ b/samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSIX/Properties/AssemblyInfo.cs @@ -0,0 +1,33 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("AsyncQuickInfoDemo.VSIX")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("AsyncQuickInfoDemo.VSIX")] +[assembly: AssemblyCopyright("")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSIX/source.extension.vsixmanifest b/samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSIX/source.extension.vsixmanifest new file mode 100644 index 0000000..693b446 --- /dev/null +++ b/samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSIX/source.extension.vsixmanifest @@ -0,0 +1,20 @@ + + + + + Async Quick Info Demo + Demonstrates xPlat Async Quick Info in Visual Studio + + + + + + + + + + + + + + diff --git a/samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSWindows/AsyncQuickInfoDemo.VSWindows.csproj b/samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSWindows/AsyncQuickInfoDemo.VSWindows.csproj deleted file mode 100644 index 49459bd..0000000 --- a/samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSWindows/AsyncQuickInfoDemo.VSWindows.csproj +++ /dev/null @@ -1,195 +0,0 @@ - - - - - 15.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - true - - - false - - - - - - - - Debug - AnyCPU - 2.0 - {82b43b9b-a64c-4715-b499-d71e9ca2bd60};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - {102F4DF7-E5FA-41C8-B7B8-52E04AE97CF2} - Library - Properties - AsyncQuickInfoDemo.VSWindows - AsyncQuickInfoDemo.VSWindows - v4.6 - true - true - true - true - true - false - Program - $(DevEnvDir)devenv.exe - /rootsuffix Exp - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - - - - - False - - - False - - - False - - - False - - - - False - - - ..\packages\Microsoft.VisualStudio.CoreUtility.15.0.26201\lib\net45\Microsoft.VisualStudio.CoreUtility.dll - True - - - ..\packages\Microsoft.VisualStudio.Imaging.15.0.26201\lib\net45\Microsoft.VisualStudio.Imaging.dll - True - - - ..\packages\Microsoft.VisualStudio.OLE.Interop.7.10.6071\lib\Microsoft.VisualStudio.OLE.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.15.0.15.0.26201\lib\Microsoft.VisualStudio.Shell.15.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Framework.15.0.26201\lib\net45\Microsoft.VisualStudio.Shell.Framework.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.7.10.6071\lib\Microsoft.VisualStudio.Shell.Interop.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.10.0.10.0.30319\lib\Microsoft.VisualStudio.Shell.Interop.10.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.11.0.11.0.61030\lib\Microsoft.VisualStudio.Shell.Interop.11.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.12.0.12.0.30110\lib\Microsoft.VisualStudio.Shell.Interop.12.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.8.0.8.0.50727\lib\Microsoft.VisualStudio.Shell.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.9.0.9.0.30729\lib\Microsoft.VisualStudio.Shell.Interop.9.0.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.7.10.6070\lib\Microsoft.VisualStudio.TextManager.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.8.0.8.0.50727\lib\Microsoft.VisualStudio.TextManager.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Threading.15.0.240\lib\net45\Microsoft.VisualStudio.Threading.dll - - - ..\packages\Microsoft.VisualStudio.Utilities.15.0.26201\lib\net45\Microsoft.VisualStudio.Utilities.dll - True - - - ..\packages\Microsoft.VisualStudio.Validation.15.0.82\lib\net45\Microsoft.VisualStudio.Validation.dll - - - False - - - - - - - - - - - - - - - Designer - - - - - true - VSPackage - - - - - {A8C6A9ED-4C62-420E-B7AC-1A6936A8A523} - AsyncQuickInfoDemo - BuiltProjectOutputGroup%3bBuiltProjectOutputGroupDependencies%3bGetCopyToOutputDirectoryItems%3bSatelliteDllsProjectOutputGroup%3b - DebugSymbolsProjectOutputGroup%3b - - - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - - - - \ No newline at end of file diff --git a/samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSWindows/AsyncQuickInfoDemoPackage.cs b/samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSWindows/AsyncQuickInfoDemoPackage.cs deleted file mode 100644 index 030bb85..0000000 --- a/samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSWindows/AsyncQuickInfoDemoPackage.cs +++ /dev/null @@ -1,37 +0,0 @@ -namespace AsyncQuickInfoDemo.VSWindows -{ - using System; - using System.Diagnostics.CodeAnalysis; - using System.Runtime.InteropServices; - using Microsoft.VisualStudio.Shell; - - [PackageRegistration(UseManagedResourcesOnly = true)] - [InstalledProductRegistration("#110", "#112", "1.0", IconResourceID = 400)] // Info on this package for Help/About - [Guid(AsyncQuickInfoDemoPackage.PackageGuidString)] - [SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1650:ElementDocumentationMustBeSpelledCorrectly", Justification = "pkgdef, VS and vsixmanifest are valid VS terms")] - public sealed class AsyncQuickInfoDemoPackage : Package - { - public const string PackageGuidString = "5f021ffd-c754-4f23-bdec-7eb7fc43ffdc"; - - public AsyncQuickInfoDemoPackage() - { - // Inside this method you can place any initialization code that does not require - // any Visual Studio service because at this point the package object is created but - // not sited yet inside Visual Studio environment. The place to do all the other - // initialization is the Initialize method. - } - - #region Package Members - - /// - /// Initialization of the package; this method is called right after the package is sited, so this is the place - /// where you can put all the initialization code that rely on services provided by VisualStudio. - /// - protected override void Initialize() - { - base.Initialize(); - } - - #endregion - } -} diff --git a/samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSWindows/Properties/AssemblyInfo.cs b/samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSWindows/Properties/AssemblyInfo.cs deleted file mode 100644 index de208ac..0000000 --- a/samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSWindows/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,32 +0,0 @@ -using System.Reflection; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("AsyncQuickInfoDemo.VSWindows")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("AsyncQuickInfoDemo.VSWindows")] -[assembly: AssemblyCopyright("")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSWindows/Resources/AsyncQuickInfoDemoPackage.ico b/samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSWindows/Resources/AsyncQuickInfoDemoPackage.ico deleted file mode 100644 index d323b07..0000000 Binary files a/samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSWindows/Resources/AsyncQuickInfoDemoPackage.ico and /dev/null differ diff --git a/samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSWindows/VSPackage.resx b/samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSWindows/VSPackage.resx deleted file mode 100644 index cb1495c..0000000 --- a/samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSWindows/VSPackage.resx +++ /dev/null @@ -1,130 +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 - - - Async Quick Info Demo Extension - - - Demonstrates xPlat Async Quick Info in Visual Studio - - - - Resources\AsyncQuickInfoDemoPackage.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - \ No newline at end of file diff --git a/samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSWindows/packages.config b/samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSWindows/packages.config deleted file mode 100644 index b5f0418..0000000 --- a/samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSWindows/packages.config +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSWindows/source.extension.vsixmanifest b/samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSWindows/source.extension.vsixmanifest deleted file mode 100644 index 25eab83..0000000 --- a/samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.VSWindows/source.extension.vsixmanifest +++ /dev/null @@ -1,21 +0,0 @@ - - - - - Async Quick Info Demo - Demonstrates xPlat Async Quick Info in Visual Studio - - - - - - - - - - - - - - - diff --git a/samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.sln b/samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.sln index 4423a55..fbd8fc1 100644 --- a/samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.sln +++ b/samples/AsyncQuickInfoDemo/AsyncQuickInfoDemo.sln @@ -1,43 +1,59 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 15 -VisualStudioVersion = 15.0.27425.0 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29215.179 MinimumVisualStudioVersion = 10.0.40219.1 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AsyncQuickInfoDemo", "AsyncQuickInfoDemo\AsyncQuickInfoDemo.csproj", "{A8C6A9ED-4C62-420E-B7AC-1A6936A8A523}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AsyncQuickInfoDemo.VSWindows", "AsyncQuickInfoDemo.VSWindows\AsyncQuickInfoDemo.VSWindows.csproj", "{102F4DF7-E5FA-41C8-B7B8-52E04AE97CF2}" -EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AsyncQuickInfoDemo.VSMac", "AsyncQuickInfoDemo.VSMac\AsyncQuickInfoDemo.VSMac.csproj", "{399A03DA-FB4D-4E82-B65E-21E647C94A4D}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AsyncQuickInfoDemo.VSIX", "AsyncQuickInfoDemo.VSIX\AsyncQuickInfoDemo.VSIX.csproj", "{CE545EFD-9183-4A7D-9BDB-522B47CE2F2C}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU Debug|Any CPU - Mac = Debug|Any CPU - Mac Debug|Any CPU - Windows = Debug|Any CPU - Windows + Release|Any CPU = Release|Any CPU Release|Any CPU - Mac = Release|Any CPU - Mac Release|Any CPU - Windows = Release|Any CPU - Windows EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A8C6A9ED-4C62-420E-B7AC-1A6936A8A523}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A8C6A9ED-4C62-420E-B7AC-1A6936A8A523}.Debug|Any CPU.Build.0 = Debug|Any CPU {A8C6A9ED-4C62-420E-B7AC-1A6936A8A523}.Debug|Any CPU - Mac.ActiveCfg = Debug|Any CPU {A8C6A9ED-4C62-420E-B7AC-1A6936A8A523}.Debug|Any CPU - Mac.Build.0 = Debug|Any CPU {A8C6A9ED-4C62-420E-B7AC-1A6936A8A523}.Debug|Any CPU - Windows.ActiveCfg = Debug|Any CPU {A8C6A9ED-4C62-420E-B7AC-1A6936A8A523}.Debug|Any CPU - Windows.Build.0 = Debug|Any CPU + {A8C6A9ED-4C62-420E-B7AC-1A6936A8A523}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A8C6A9ED-4C62-420E-B7AC-1A6936A8A523}.Release|Any CPU.Build.0 = Release|Any CPU {A8C6A9ED-4C62-420E-B7AC-1A6936A8A523}.Release|Any CPU - Mac.ActiveCfg = Release|Any CPU {A8C6A9ED-4C62-420E-B7AC-1A6936A8A523}.Release|Any CPU - Mac.Build.0 = Release|Any CPU {A8C6A9ED-4C62-420E-B7AC-1A6936A8A523}.Release|Any CPU - Windows.ActiveCfg = Release|Any CPU {A8C6A9ED-4C62-420E-B7AC-1A6936A8A523}.Release|Any CPU - Windows.Build.0 = Release|Any CPU - {102F4DF7-E5FA-41C8-B7B8-52E04AE97CF2}.Debug|Any CPU - Mac.ActiveCfg = Debug|Any CPU - {102F4DF7-E5FA-41C8-B7B8-52E04AE97CF2}.Debug|Any CPU - Windows.ActiveCfg = Debug|Any CPU - {102F4DF7-E5FA-41C8-B7B8-52E04AE97CF2}.Debug|Any CPU - Windows.Build.0 = Debug|Any CPU - {102F4DF7-E5FA-41C8-B7B8-52E04AE97CF2}.Release|Any CPU - Mac.ActiveCfg = Release|Any CPU - {102F4DF7-E5FA-41C8-B7B8-52E04AE97CF2}.Release|Any CPU - Windows.ActiveCfg = Release|Any CPU - {102F4DF7-E5FA-41C8-B7B8-52E04AE97CF2}.Release|Any CPU - Windows.Build.0 = Release|Any CPU + {399A03DA-FB4D-4E82-B65E-21E647C94A4D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {399A03DA-FB4D-4E82-B65E-21E647C94A4D}.Debug|Any CPU.Build.0 = Debug|Any CPU {399A03DA-FB4D-4E82-B65E-21E647C94A4D}.Debug|Any CPU - Mac.ActiveCfg = Debug|Any CPU {399A03DA-FB4D-4E82-B65E-21E647C94A4D}.Debug|Any CPU - Mac.Build.0 = Debug|Any CPU {399A03DA-FB4D-4E82-B65E-21E647C94A4D}.Debug|Any CPU - Windows.ActiveCfg = Debug|Any CPU + {399A03DA-FB4D-4E82-B65E-21E647C94A4D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {399A03DA-FB4D-4E82-B65E-21E647C94A4D}.Release|Any CPU.Build.0 = Release|Any CPU {399A03DA-FB4D-4E82-B65E-21E647C94A4D}.Release|Any CPU - Mac.ActiveCfg = Release|Any CPU {399A03DA-FB4D-4E82-B65E-21E647C94A4D}.Release|Any CPU - Mac.Build.0 = Release|Any CPU {399A03DA-FB4D-4E82-B65E-21E647C94A4D}.Release|Any CPU - Windows.ActiveCfg = Release|Any CPU {399A03DA-FB4D-4E82-B65E-21E647C94A4D}.Release|Any CPU - Windows.Build.0 = Release|Any CPU + {CE545EFD-9183-4A7D-9BDB-522B47CE2F2C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {CE545EFD-9183-4A7D-9BDB-522B47CE2F2C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {CE545EFD-9183-4A7D-9BDB-522B47CE2F2C}.Debug|Any CPU - Mac.ActiveCfg = Debug|Any CPU + {CE545EFD-9183-4A7D-9BDB-522B47CE2F2C}.Debug|Any CPU - Mac.Build.0 = Debug|Any CPU + {CE545EFD-9183-4A7D-9BDB-522B47CE2F2C}.Debug|Any CPU - Windows.ActiveCfg = Debug|Any CPU + {CE545EFD-9183-4A7D-9BDB-522B47CE2F2C}.Debug|Any CPU - Windows.Build.0 = Debug|Any CPU + {CE545EFD-9183-4A7D-9BDB-522B47CE2F2C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {CE545EFD-9183-4A7D-9BDB-522B47CE2F2C}.Release|Any CPU.Build.0 = Release|Any CPU + {CE545EFD-9183-4A7D-9BDB-522B47CE2F2C}.Release|Any CPU - Mac.ActiveCfg = Release|Any CPU + {CE545EFD-9183-4A7D-9BDB-522B47CE2F2C}.Release|Any CPU - Mac.Build.0 = Release|Any CPU + {CE545EFD-9183-4A7D-9BDB-522B47CE2F2C}.Release|Any CPU - Windows.ActiveCfg = Release|Any CPU + {CE545EFD-9183-4A7D-9BDB-522B47CE2F2C}.Release|Any CPU - Windows.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/samples/AsyncQuickInfoDemo/nuget.config b/samples/AsyncQuickInfoDemo/nuget.config deleted file mode 100644 index 3320090..0000000 --- a/samples/AsyncQuickInfoDemo/nuget.config +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - -- cgit v1.2.3