diff --git a/Project/Src/InstallSupport/TestCop.nuspec b/Project/Src/InstallSupport/TestCop.nuspec index d01fd8f..cbed74a 100644 --- a/Project/Src/InstallSupport/TestCop.nuspec +++ b/Project/Src/InstallSupport/TestCop.nuspec @@ -1,13 +1,14 @@ - - Resharper.TestCop.R9 + + Resharper.TestCop.R9 0.0.0-internal - TestCop for ReSharper 2020.3 - Alcaeus + TestCop for ReSharper 2021.1 + Alcaeus Easily switch between unit tests and code. Create missing associated files. Includes highlightings and test templates to keep test projects neat and tidy. Works with NUnit, MSTest, xUnit ... + 1.10.13.1 R#2021.1 Recompiled 1.10.12.1 R#2020.3 Recompiled 1.10.11.2 bug fix for R# option severity screen 1.10.11.1 R#2020.2 Recompiled @@ -76,8 +77,8 @@ https://raw.githubusercontent.com/testcop/Resharper.TestCop/master/Project/Src/TestCop.Plugin/resources/agent48x48.png images\agent48x48.png Copyright © 2013-2018 - - + + resharper unittest xunit nunit mstest tdd c# template @@ -87,5 +88,5 @@ - + diff --git a/Project/Src/TestCop.Plugin.Tests/Hunspellx64.dll b/Project/Src/TestCop.Plugin.Tests/Hunspellx64.dll deleted file mode 100644 index 55a29ec..0000000 Binary files a/Project/Src/TestCop.Plugin.Tests/Hunspellx64.dll and /dev/null differ diff --git a/Project/Src/TestCop.Plugin.Tests/Hunspellx86.dll b/Project/Src/TestCop.Plugin.Tests/Hunspellx86.dll deleted file mode 100644 index 7bc6cf2..0000000 Binary files a/Project/Src/TestCop.Plugin.Tests/Hunspellx86.dll and /dev/null differ diff --git a/Project/Src/TestCop.Plugin.Tests/ProjectAnalysisElementProcessorTests.cs b/Project/Src/TestCop.Plugin.Tests/ProjectAnalysisElementProcessorTests.cs index d585a64..d313521 100644 --- a/Project/Src/TestCop.Plugin.Tests/ProjectAnalysisElementProcessorTests.cs +++ b/Project/Src/TestCop.Plugin.Tests/ProjectAnalysisElementProcessorTests.cs @@ -12,7 +12,7 @@ namespace TestCop.Plugin.Tests { [TestFixture] - class ProjectAnalysisElementProcessorTests + public class ProjectAnalysisElementProcessorTests { [Test] public void IsNotInDirectoryTest() diff --git a/Project/Src/TestCop.Plugin.Tests/RenameRefactoring/RenameTestFilesTooRefactoringTestBase.cs b/Project/Src/TestCop.Plugin.Tests/RenameRefactoring/RenameTestFilesTooRefactoringTestBase.cs index 30a83f0..7b6bfc7 100644 --- a/Project/Src/TestCop.Plugin.Tests/RenameRefactoring/RenameTestFilesTooRefactoringTestBase.cs +++ b/Project/Src/TestCop.Plugin.Tests/RenameRefactoring/RenameTestFilesTooRefactoringTestBase.cs @@ -24,6 +24,8 @@ namespace TestCop.Plugin.Tests.RenameRefactoring { + using System.Collections.Generic; + [TestFixture] public abstract class RenameTestFilesTooRefactoringTestBase : BaseTest { @@ -55,7 +57,8 @@ public void DoRenameTest(string testFile, int typeSequenceInFile=1, params strin var solutionFolder = this.CopyTestDataDirectoryToTemp(lifetime,@"..\..\"+RelativeTestDataPath); solution = (ISolution)this.SolutionManager.OpenExistingSolution(FileSystemPath.Parse(solutionFolder).Combine(SolutionName)); } - lifetime.AddAction(() => SolutionManager.CloseSolution(solution)); + + lifetime.OnTermination(() => SolutionManager.CloseSolution(solution)); var findFirstTypeInFile = FindTypeInFile(solution, testFile, typeSequenceInFile); @@ -65,7 +68,10 @@ public void DoRenameTest(string testFile, int typeSequenceInFile=1, params strin Assert.AreEqual(expectedRenamedTests.Length, filesToRename.Count); - expectedRenamedTests.ForEach(expectation=>CollectionAssert.Contains(filesToRename, expectation)); + foreach (string expectation in expectedRenamedTests) + { + CollectionAssert.Contains(filesToRename, expectation); + } })))); })); } @@ -78,7 +84,12 @@ private static IDeclaredElement FindTypeInFile(ISolution solution, string testFi if (projectFile == null) { - solution.GetAllProjects().SelectMany(p => p.GetAllProjectFiles()).ForEach(p=>Debug.WriteLine(p.GetPresentableProjectPath())); + IEnumerable projectFiles = solution.GetAllProjects().SelectMany(p => p.GetAllProjectFiles()); + + foreach (IProjectFile file in projectFiles) + { + Debug.WriteLine(file.GetPresentableProjectPath()); + } throw new Exception("Whilst configuring test I didn't find project item: "+testFile); } diff --git a/Project/Src/TestCop.Plugin.Tests/TestCop.Plugin.Tests.csproj b/Project/Src/TestCop.Plugin.Tests/TestCop.Plugin.Tests.csproj index f97ba0b..8796490 100644 --- a/Project/Src/TestCop.Plugin.Tests/TestCop.Plugin.Tests.csproj +++ b/Project/Src/TestCop.Plugin.Tests/TestCop.Plugin.Tests.csproj @@ -1,42 +1,59 @@  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tests True @@ -116,10 +133,10 @@ ..\..\packages\JetBrains.Annotations.2020.1.0\lib\net20\JetBrains.Annotations.dll - ..\..\packages\JetBrains.Build.Platform.DistributedCache.1.0.20201014.120\lib\netstandard2.0\JetBrains.Build.Platform.DistributedCache.dll + ..\..\packages\JetBrains.Build.Platform.DistributedCache.1.0.20210304.147\lib\netstandard2.0\JetBrains.Build.Platform.DistributedCache.dll - ..\..\packages\JetBrains.Lifetimes.2020.3.2\lib\net461\JetBrains.Lifetimes.dll + ..\..\packages\JetBrains.Lifetimes.2021.1.1\lib\net461\JetBrains.Lifetimes.dll ..\..\packages\JetBrains.Platform.MSBuild.Logger.1.0.20170331.0\lib\net\JetBrains.MSBuild.Logger.dll @@ -132,35 +149,41 @@ ..\..\packages\JetBrains.Profiler.Api.1.1.7\lib\net20\JetBrains.Profiler.Api.dll - - ..\..\packages\JetBrains.Profiler.SelfApi.2.1.0\lib\net46\JetBrains.Profiler.SelfApi.dll + + ..\..\packages\JetBrains.Profiler.SelfApi.2.1.1\lib\net46\JetBrains.Profiler.SelfApi.dll - ..\..\packages\JetBrains.RdFramework.2020.3.2\lib\net461\JetBrains.RdFramework.dll + ..\..\packages\JetBrains.RdFramework.2021.1.1\lib\net461\JetBrains.RdFramework.dll - - ..\..\packages\JetBrains.ReSharper.TestRunner.Abstractions.1.2.7\lib\net40\JetBrains.ReSharper.TestRunner.Abstractions.dll + + ..\..\packages\JetBrains.RdFramework.Reflection.2021.1.1\lib\net461\JetBrains.RdFramework.Reflection.dll - - ..\..\packages\JetBrains.ReSharper.TestRunner.Adapters.MsTest.Tasks.1.2.7.7\lib\net35\JetBrains.ReSharper.TestRunner.Adapters.MsTest.Tasks.dll + + ..\..\packages\JetBrains.ReSharper.TestRunner.Abstractions.1.3.1\lib\net40\JetBrains.ReSharper.TestRunner.Abstractions.dll - - ..\..\packages\JetBrains.ReSharper.TestRunner.Adapters.NUnit2.Tasks.1.2.7.7\lib\net40\JetBrains.ReSharper.TestRunner.Adapters.NUnit2.Tasks.dll + + ..\..\packages\JetBrains.ReSharper.TestRunner.Adapters.MsTest.Tasks.1.3.1.10\lib\net35\JetBrains.ReSharper.TestRunner.Adapters.MsTest.Tasks.dll - - ..\..\packages\JetBrains.ReSharper.TestRunner.Adapters.NUnit3.Tasks.1.2.7.10\lib\net40\JetBrains.ReSharper.TestRunner.Adapters.NUnit3.Tasks.dll + + ..\..\packages\JetBrains.ReSharper.TestRunner.Adapters.NUnit2.Tasks.1.3.1.7\lib\net40\JetBrains.ReSharper.TestRunner.Adapters.NUnit2.Tasks.dll - - ..\..\packages\JetBrains.ReSharper.TestRunner.Adapters.XUnit.Tasks.1.2.7.7\lib\net40\JetBrains.ReSharper.TestRunner.Adapters.XUnit.Tasks.dll + + ..\..\packages\JetBrains.ReSharper.TestRunner.Adapters.NUnit3.Tasks.1.3.1.11\lib\net40\JetBrains.ReSharper.TestRunner.Adapters.NUnit3.Tasks.dll - - ..\..\packages\JetBrains.ReSharper.TestRunner.Utilities.1.2.7.2\lib\net40\JetBrains.ReSharper.TestRunner.Utilities.dll + + ..\..\packages\JetBrains.ReSharper.TestRunner.Adapters.UWP.Tasks.1.3.1.1\lib\net40\JetBrains.ReSharper.TestRunner.Adapters.UWP.Tasks.dll + + + ..\..\packages\JetBrains.ReSharper.TestRunner.Adapters.VsTest.Tasks.1.3.1.1\lib\net35\JetBrains.ReSharper.TestRunner.Adapters.VsTest.Tasks.dll + + + ..\..\packages\JetBrains.ReSharper.TestRunner.Adapters.XUnit.Tasks.1.3.1.8\lib\net40\JetBrains.ReSharper.TestRunner.Adapters.XUnit.Tasks.dll ..\..\packages\JetBrains.System.Reflection.Metadata.20170417.0.0.0\lib\net45\JetBrains.System.Reflection.Metadata.dll - ..\..\packages\JetBrains.Toolset.ScriptSourcesCompiler.Interface.1.0.20170420.0\lib\net\JetBrains.Toolset.ScriptSourcesCompiler.Interface.dll + ..\..\packages\JetBrains.Toolset.ScriptSourcesCompiler.Interface.1.0.20170420.1\lib\netstandard2.0\JetBrains.Toolset.ScriptSourcesCompiler.Interface.dll True @@ -168,37 +191,37 @@ - ..\..\packages\JetBrains.Roslyn.References.Repack.42.42.20201110.233825\lib\Net\Microsoft.CodeAnalysis.dll + ..\..\packages\JetBrains.Roslyn.References.Repack.42.42.20201110.233825\Lib\Net\Microsoft.CodeAnalysis.dll - ..\..\packages\JetBrains.Roslyn.References.Repack.42.42.20201110.233825\lib\Net\Microsoft.CodeAnalysis.CSharp.dll + ..\..\packages\JetBrains.Roslyn.References.Repack.42.42.20201110.233825\Lib\Net\Microsoft.CodeAnalysis.CSharp.dll - ..\..\packages\JetBrains.Roslyn.References.Repack.42.42.20201110.233825\lib\Net\Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ExpressionCompiler.dll + ..\..\packages\JetBrains.Roslyn.References.Repack.42.42.20201110.233825\Lib\Net\Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ExpressionCompiler.dll - ..\..\packages\JetBrains.Roslyn.References.Repack.42.42.20201110.233825\lib\Net\Microsoft.CodeAnalysis.CSharp.Features.dll + ..\..\packages\JetBrains.Roslyn.References.Repack.42.42.20201110.233825\Lib\Net\Microsoft.CodeAnalysis.CSharp.Features.dll - ..\..\packages\JetBrains.Roslyn.References.Repack.42.42.20201110.233825\lib\Net\Microsoft.CodeAnalysis.CSharp.Workspaces.dll + ..\..\packages\JetBrains.Roslyn.References.Repack.42.42.20201110.233825\Lib\Net\Microsoft.CodeAnalysis.CSharp.Workspaces.dll - ..\..\packages\JetBrains.Roslyn.References.Repack.42.42.20201110.233825\lib\Net\Microsoft.CodeAnalysis.ExpressionEvaluator.ExpressionCompiler.dll + ..\..\packages\JetBrains.Roslyn.References.Repack.42.42.20201110.233825\Lib\Net\Microsoft.CodeAnalysis.ExpressionEvaluator.ExpressionCompiler.dll - ..\..\packages\JetBrains.Roslyn.References.Repack.42.42.20201110.233825\lib\Net\Microsoft.CodeAnalysis.Features.dll + ..\..\packages\JetBrains.Roslyn.References.Repack.42.42.20201110.233825\Lib\Net\Microsoft.CodeAnalysis.Features.dll - ..\..\packages\JetBrains.Roslyn.References.Repack.42.42.20201110.233825\lib\Net\Microsoft.CodeAnalysis.VisualBasic.dll + ..\..\packages\JetBrains.Roslyn.References.Repack.42.42.20201110.233825\Lib\Net\Microsoft.CodeAnalysis.VisualBasic.dll - ..\..\packages\JetBrains.Roslyn.References.Repack.42.42.20201110.233825\lib\Net\Microsoft.CodeAnalysis.VisualBasic.Features.dll + ..\..\packages\JetBrains.Roslyn.References.Repack.42.42.20201110.233825\Lib\Net\Microsoft.CodeAnalysis.VisualBasic.Features.dll - ..\..\packages\JetBrains.Roslyn.References.Repack.42.42.20201110.233825\lib\Net\Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll + ..\..\packages\JetBrains.Roslyn.References.Repack.42.42.20201110.233825\Lib\Net\Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll - ..\..\packages\JetBrains.Roslyn.References.Repack.42.42.20201110.233825\lib\Net\Microsoft.CodeAnalysis.Workspaces.dll + ..\..\packages\JetBrains.Roslyn.References.Repack.42.42.20201110.233825\Lib\Net\Microsoft.CodeAnalysis.Workspaces.dll @@ -261,66 +284,63 @@ True - ..\..\packages\Windows7APICodePack.JetBrains.Stripped.1.1.20150225.0\lib\Net\Microsoft.WindowsAPICodePack.dll + ..\..\packages\JetBrains.Windows7APICodePack.Stripped.1.1.20210120.1\lib\netstandard2.0\Microsoft.WindowsAPICodePack.dll - ..\..\packages\Windows7APICodePack.JetBrains.Stripped.1.1.20150225.0\lib\Net\Microsoft.WindowsAPICodePack.Shell.dll + ..\..\packages\JetBrains.Windows7APICodePack.Stripped.1.1.20210120.1\lib\netstandard2.0\Microsoft.WindowsAPICodePack.Shell.dll - ..\..\packages\JetBrains.Toolset.RefAsm.Net461.NetStandard.2.0.20190130.182358\lib\net461\netstandard.dll + ..\..\packages\JetBrains.Toolset.RefAsm.Net461.NetStandard.2.0.20210225.212946\lib\net461\netstandard.dll True True ..\..\packages\Newtonsoft.Json.9.0.1\lib\net45\Newtonsoft.Json.dll - - ..\..\packages\NHunspell.1.2.5554.16953\lib\net\NHunspell.dll - - ..\..\packages\JetBrains.NuGet.Commands.5.8.20201111.52\lib\net461\NuGet.Commands.dll + ..\..\packages\JetBrains.NuGet.Commands.5.8.20201217.57\lib\net461\NuGet.Commands.dll - ..\..\packages\JetBrains.NuGet.Common.5.8.20201111.52\lib\net461\NuGet.Common.dll + ..\..\packages\JetBrains.NuGet.Common.5.8.20201217.57\lib\net461\NuGet.Common.dll - ..\..\packages\JetBrains.NuGet.Configurations.5.8.20201111.52\lib\net461\NuGet.Configuration.dll + ..\..\packages\JetBrains.NuGet.Configurations.5.8.20201217.57\lib\net461\NuGet.Configuration.dll ..\..\packages\JetBrains.NuGet.Core.2.14.1.20190827\lib\net40-Client\NuGet.Core.dll - ..\..\packages\JetBrains.NuGet.Credentials.5.8.20201111.52\lib\net461\NuGet.Credentials.dll + ..\..\packages\JetBrains.NuGet.Credentials.5.8.20201217.57\lib\net461\NuGet.Credentials.dll - ..\..\packages\JetBrains.NuGet.DependencyResolver.Core.5.8.20201111.52\lib\net461\NuGet.DependencyResolver.Core.dll + ..\..\packages\JetBrains.NuGet.DependencyResolver.Core.5.8.20201217.57\lib\net461\NuGet.DependencyResolver.Core.dll - ..\..\packages\JetBrains.NuGet.Frameworks.5.8.20201111.52\lib\net461\NuGet.Frameworks.dll + ..\..\packages\JetBrains.NuGet.Frameworks.5.8.20201217.57\lib\net461\NuGet.Frameworks.dll - ..\..\packages\JetBrains.NuGet.LibraryModel.5.8.20201111.52\lib\net461\NuGet.LibraryModel.dll + ..\..\packages\JetBrains.NuGet.LibraryModel.5.8.20201217.57\lib\net461\NuGet.LibraryModel.dll - ..\..\packages\JetBrains.NuGet.PackageManagement.5.8.20201111.52\lib\net461\NuGet.PackageManagement.dll + ..\..\packages\JetBrains.NuGet.PackageManagement.5.8.20201217.57\lib\net461\NuGet.PackageManagement.dll - ..\..\packages\JetBrains.NuGet.Packaging.5.8.20201111.52\lib\net461\NuGet.Packaging.dll + ..\..\packages\JetBrains.NuGet.Packaging.5.8.20201217.57\lib\net461\NuGet.Packaging.dll - ..\..\packages\JetBrains.NuGet.ProjectModel.5.8.20201111.52\lib\net461\NuGet.ProjectModel.dll + ..\..\packages\JetBrains.NuGet.ProjectModel.5.8.20201217.57\lib\net461\NuGet.ProjectModel.dll - ..\..\packages\JetBrains.NuGet.Protocol.5.8.20201111.52\lib\net461\NuGet.Protocol.dll + ..\..\packages\JetBrains.NuGet.Protocol.5.8.20201217.57\lib\net461\NuGet.Protocol.dll - ..\..\packages\JetBrains.NuGet.Resolver.5.8.20201111.52\lib\net461\NuGet.Resolver.dll + ..\..\packages\JetBrains.NuGet.Resolver.5.8.20201217.57\lib\net461\NuGet.Resolver.dll - ..\..\packages\JetBrains.NuGet.Versioning.5.8.20201111.52\lib\net461\NuGet.Versioning.dll + ..\..\packages\JetBrains.NuGet.Versioning.5.8.20201217.57\lib\net461\NuGet.Versioning.dll - - ..\..\packages\NUnit.3.10.1\lib\net45\nunit.framework.dll + + ..\..\packages\NUnit.3.12.0\lib\net45\nunit.framework.dll ..\..\packages\NVelocity.1.0.3\lib\NVelocity.dll @@ -355,14 +375,14 @@ - - ..\..\packages\System.Drawing.Common.4.7.0\lib\net461\System.Drawing.Common.dll + + ..\..\packages\System.Drawing.Common.5.0.2\lib\net461\System.Drawing.Common.dll - - ..\..\packages\System.IO.FileSystem.AccessControl.4.7.0\lib\net461\System.IO.FileSystem.AccessControl.dll + + ..\..\packages\System.IO.FileSystem.AccessControl.5.0.0\lib\net461\System.IO.FileSystem.AccessControl.dll ..\..\packages\System.Memory.4.5.4\lib\net461\System.Memory.dll @@ -390,8 +410,8 @@ - - ..\..\packages\System.Security.AccessControl.4.7.0\lib\net461\System.Security.AccessControl.dll + + ..\..\packages\System.Security.AccessControl.5.0.0\lib\net461\System.Security.AccessControl.dll ..\..\packages\System.Security.Cryptography.Algorithms.4.3.0\lib\net461\System.Security.Cryptography.Algorithms.dll @@ -413,20 +433,23 @@ True True - - ..\..\packages\System.Security.Principal.Windows.4.7.0\lib\net461\System.Security.Principal.Windows.dll + + ..\..\packages\System.Security.Principal.Windows.5.0.0\lib\net461\System.Security.Principal.Windows.dll + + ..\..\packages\System.Text.Encoding.CodePages.4.3.0\lib\net46\System.Text.Encoding.CodePages.dll + ..\..\packages\System.ValueTuple.4.5.0\lib\net461\System.ValueTuple.dll - ..\..\packages\JetBrains.System.Windows.Interactivity.3.0.40218.0\lib\net45\System.Windows.Interactivity.dll + ..\..\packages\JetBrains.System.Windows.Interactivity.3.0.40218.1\lib\netstandard2.0\System.Windows.Interactivity.dll - ..\..\packages\Vestris.ResourceLib.JetBrains.1.4.20150303.0\lib\Net\Vestris.ResourceLib.dll + ..\..\packages\JetBrains.Vestris.ResourceLib.1.4.20210120.1\lib\netstandard2.0\Vestris.ResourceLib.dll @@ -496,124 +519,167 @@ - - - PreserveNewest - - - PreserveNewest - - 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/Project/Src/TestCop.Plugin.Tests/app.config b/Project/Src/TestCop.Plugin.Tests/app.config index a648271..f11a803 100644 --- a/Project/Src/TestCop.Plugin.Tests/app.config +++ b/Project/Src/TestCop.Plugin.Tests/app.config @@ -662,6 +662,14 @@ + + + + + + + + diff --git a/Project/Src/TestCop.Plugin.Tests/packages.config b/Project/Src/TestCop.Plugin.Tests/packages.config index 843fa90..7cc3565 100644 --- a/Project/Src/TestCop.Plugin.Tests/packages.config +++ b/Project/Src/TestCop.Plugin.Tests/packages.config @@ -6,93 +6,116 @@ - - + + - - + + - - - + + + - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + - - - - - - - + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + + + @@ -102,9 +125,8 @@ - - - + + @@ -112,26 +134,23 @@ - - + + - - - + - + + - - - + diff --git a/Project/Src/TestCop.Plugin/Hunspellx64.dll b/Project/Src/TestCop.Plugin/Hunspellx64.dll deleted file mode 100644 index 55a29ec..0000000 Binary files a/Project/Src/TestCop.Plugin/Hunspellx64.dll and /dev/null differ diff --git a/Project/Src/TestCop.Plugin/Hunspellx86.dll b/Project/Src/TestCop.Plugin/Hunspellx86.dll deleted file mode 100644 index 7bc6cf2..0000000 Binary files a/Project/Src/TestCop.Plugin/Hunspellx86.dll and /dev/null differ diff --git a/Project/Src/TestCop.Plugin/Properties/AssemblyInfo.cs b/Project/Src/TestCop.Plugin/Properties/AssemblyInfo.cs index 83f4e30..a31e73b 100644 --- a/Project/Src/TestCop.Plugin/Properties/AssemblyInfo.cs +++ b/Project/Src/TestCop.Plugin/Properties/AssemblyInfo.cs @@ -39,6 +39,6 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.10.12.1")] -[assembly: AssemblyFileVersion("1.10.12.1")] +[assembly: AssemblyVersion("1.10.13.1")] +[assembly: AssemblyFileVersion("1.10.13.1")] diff --git a/Project/Src/TestCop.Plugin/TestCop.Plugin.csproj b/Project/Src/TestCop.Plugin/TestCop.Plugin.csproj index 52ed318..1df600d 100644 --- a/Project/Src/TestCop.Plugin/TestCop.Plugin.csproj +++ b/Project/Src/TestCop.Plugin/TestCop.Plugin.csproj @@ -1,40 +1,57 @@  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Debug @@ -88,14 +105,6 @@ ..\..\packages\xmlrpcnet.2.5.0\lib\net20\CookComputing.XmlRpcV2.dll - - ..\..\packages\Mono.Debugging.Win32.1.0.20161020.46\lib\net40\CorApi.dll - True - - - ..\..\packages\Mono.Debugging.Win32.1.0.20161020.46\lib\net40\CorApi2.dll - True - ..\..\packages\JetBrains.Platform.Lib.DevExpress.2.0.20170610\lib\net20\DevExpress.Data.v7.1.dll @@ -116,22 +125,6 @@ False C:\Windows\assembly\GAC\EnvDTE\8.0.0.0__b03f5f7f11d50a3a\envdte.dll - - ..\..\packages\ICSharpCode.NRefactory.5.5.1\lib\Net40\ICSharpCode.NRefactory.dll - True - - - ..\..\packages\ICSharpCode.NRefactory.5.5.1\lib\Net40\ICSharpCode.NRefactory.Cecil.dll - True - - - ..\..\packages\ICSharpCode.NRefactory.5.5.1\lib\Net40\ICSharpCode.NRefactory.CSharp.dll - True - - - ..\..\packages\ICSharpCode.NRefactory.5.5.1\lib\Net40\ICSharpCode.NRefactory.Xml.dll - True - ..\..\packages\JetBrains.SharpZipLib.Stripped.0.87.20200522.23\lib\net40\ICSharpCode.SharpZipLib.dll @@ -139,10 +132,10 @@ ..\..\packages\JetBrains.Annotations.2020.1.0\lib\net20\JetBrains.Annotations.dll - ..\..\packages\JetBrains.Build.Platform.DistributedCache.1.0.20201014.120\lib\netstandard2.0\JetBrains.Build.Platform.DistributedCache.dll + ..\..\packages\JetBrains.Build.Platform.DistributedCache.1.0.20210304.147\lib\netstandard2.0\JetBrains.Build.Platform.DistributedCache.dll - ..\..\packages\JetBrains.Lifetimes.2020.3.2\lib\net461\JetBrains.Lifetimes.dll + ..\..\packages\JetBrains.Lifetimes.2021.1.1\lib\net461\JetBrains.Lifetimes.dll ..\..\packages\JetBrains.Platform.MSBuild.Logger.1.0.20170331.0\lib\net\JetBrains.MSBuild.Logger.dll @@ -155,35 +148,41 @@ ..\..\packages\JetBrains.Profiler.Api.1.1.7\lib\net20\JetBrains.Profiler.Api.dll - - ..\..\packages\JetBrains.Profiler.SelfApi.2.1.0\lib\net46\JetBrains.Profiler.SelfApi.dll + + ..\..\packages\JetBrains.Profiler.SelfApi.2.1.1\lib\net46\JetBrains.Profiler.SelfApi.dll - ..\..\packages\JetBrains.RdFramework.2020.3.2\lib\net461\JetBrains.RdFramework.dll + ..\..\packages\JetBrains.RdFramework.2021.1.1\lib\net461\JetBrains.RdFramework.dll + + + ..\..\packages\JetBrains.RdFramework.Reflection.2021.1.1\lib\net461\JetBrains.RdFramework.Reflection.dll - - ..\..\packages\JetBrains.ReSharper.TestRunner.Abstractions.1.2.7\lib\net40\JetBrains.ReSharper.TestRunner.Abstractions.dll + + ..\..\packages\JetBrains.ReSharper.TestRunner.Abstractions.1.3.1\lib\net40\JetBrains.ReSharper.TestRunner.Abstractions.dll - - ..\..\packages\JetBrains.ReSharper.TestRunner.Adapters.MsTest.Tasks.1.2.7.7\lib\net35\JetBrains.ReSharper.TestRunner.Adapters.MsTest.Tasks.dll + + ..\..\packages\JetBrains.ReSharper.TestRunner.Adapters.MsTest.Tasks.1.3.1.10\lib\net35\JetBrains.ReSharper.TestRunner.Adapters.MsTest.Tasks.dll - - ..\..\packages\JetBrains.ReSharper.TestRunner.Adapters.NUnit2.Tasks.1.2.7.7\lib\net40\JetBrains.ReSharper.TestRunner.Adapters.NUnit2.Tasks.dll + + ..\..\packages\JetBrains.ReSharper.TestRunner.Adapters.NUnit2.Tasks.1.3.1.7\lib\net40\JetBrains.ReSharper.TestRunner.Adapters.NUnit2.Tasks.dll - - ..\..\packages\JetBrains.ReSharper.TestRunner.Adapters.NUnit3.Tasks.1.2.7.10\lib\net40\JetBrains.ReSharper.TestRunner.Adapters.NUnit3.Tasks.dll + + ..\..\packages\JetBrains.ReSharper.TestRunner.Adapters.NUnit3.Tasks.1.3.1.11\lib\net40\JetBrains.ReSharper.TestRunner.Adapters.NUnit3.Tasks.dll - - ..\..\packages\JetBrains.ReSharper.TestRunner.Adapters.XUnit.Tasks.1.2.7.7\lib\net40\JetBrains.ReSharper.TestRunner.Adapters.XUnit.Tasks.dll + + ..\..\packages\JetBrains.ReSharper.TestRunner.Adapters.UWP.Tasks.1.3.1.1\lib\net40\JetBrains.ReSharper.TestRunner.Adapters.UWP.Tasks.dll - - ..\..\packages\JetBrains.ReSharper.TestRunner.Utilities.1.2.7.2\lib\net40\JetBrains.ReSharper.TestRunner.Utilities.dll + + ..\..\packages\JetBrains.ReSharper.TestRunner.Adapters.VsTest.Tasks.1.3.1.1\lib\net35\JetBrains.ReSharper.TestRunner.Adapters.VsTest.Tasks.dll + + + ..\..\packages\JetBrains.ReSharper.TestRunner.Adapters.XUnit.Tasks.1.3.1.8\lib\net40\JetBrains.ReSharper.TestRunner.Adapters.XUnit.Tasks.dll ..\..\packages\JetBrains.System.Reflection.Metadata.20170417.0.0.0\lib\net45\JetBrains.System.Reflection.Metadata.dll - ..\..\packages\JetBrains.Toolset.ScriptSourcesCompiler.Interface.1.0.20170420.0\lib\net\JetBrains.Toolset.ScriptSourcesCompiler.Interface.dll + ..\..\packages\JetBrains.Toolset.ScriptSourcesCompiler.Interface.1.0.20170420.1\lib\netstandard2.0\JetBrains.Toolset.ScriptSourcesCompiler.Interface.dll True @@ -295,82 +294,63 @@ True - ..\..\packages\Windows7APICodePack.JetBrains.Stripped.1.1.20150225.0\lib\Net\Microsoft.WindowsAPICodePack.dll + ..\..\packages\JetBrains.Windows7APICodePack.Stripped.1.1.20210120.1\lib\netstandard2.0\Microsoft.WindowsAPICodePack.dll - ..\..\packages\Windows7APICodePack.JetBrains.Stripped.1.1.20150225.0\lib\Net\Microsoft.WindowsAPICodePack.Shell.dll - - - ..\..\packages\Mono.Debugger.Soft.1.0.20161020.46\lib\net40\Mono.Debugger.Soft.dll - True - - - ..\..\packages\Mono.Debugging.1.0.20161020.46\lib\net40\Mono.Debugging.dll - True - - - ..\..\packages\Mono.Debugging.Soft.1.0.20161020.46\lib\net40\Mono.Debugging.Soft.dll - True - - - ..\..\packages\Mono.Debugging.Win32.1.0.20161020.46\lib\net40\Mono.Debugging.Win32.dll - True + ..\..\packages\JetBrains.Windows7APICodePack.Stripped.1.1.20210120.1\lib\netstandard2.0\Microsoft.WindowsAPICodePack.Shell.dll - ..\..\packages\JetBrains.Toolset.RefAsm.Net461.NetStandard.2.0.20190130.182358\lib\net461\netstandard.dll + ..\..\packages\JetBrains.Toolset.RefAsm.Net461.NetStandard.2.0.20210225.212946\lib\net461\netstandard.dll True True ..\..\packages\Newtonsoft.Json.9.0.1\lib\net45\Newtonsoft.Json.dll - - ..\..\packages\NHunspell.1.2.5554.16953\lib\net\NHunspell.dll - - ..\..\packages\JetBrains.NuGet.Commands.5.8.20201111.52\lib\net461\NuGet.Commands.dll + ..\..\packages\JetBrains.NuGet.Commands.5.8.20201217.57\lib\net461\NuGet.Commands.dll - ..\..\packages\JetBrains.NuGet.Common.5.8.20201111.52\lib\net461\NuGet.Common.dll + ..\..\packages\JetBrains.NuGet.Common.5.8.20201217.57\lib\net461\NuGet.Common.dll - ..\..\packages\JetBrains.NuGet.Configurations.5.8.20201111.52\lib\net461\NuGet.Configuration.dll + ..\..\packages\JetBrains.NuGet.Configurations.5.8.20201217.57\lib\net461\NuGet.Configuration.dll ..\..\packages\JetBrains.NuGet.Core.2.14.1.20190827\lib\net40-Client\NuGet.Core.dll - ..\..\packages\JetBrains.NuGet.Credentials.5.8.20201111.52\lib\net461\NuGet.Credentials.dll + ..\..\packages\JetBrains.NuGet.Credentials.5.8.20201217.57\lib\net461\NuGet.Credentials.dll - ..\..\packages\JetBrains.NuGet.DependencyResolver.Core.5.8.20201111.52\lib\net461\NuGet.DependencyResolver.Core.dll + ..\..\packages\JetBrains.NuGet.DependencyResolver.Core.5.8.20201217.57\lib\net461\NuGet.DependencyResolver.Core.dll - ..\..\packages\JetBrains.NuGet.Frameworks.5.8.20201111.52\lib\net461\NuGet.Frameworks.dll + ..\..\packages\JetBrains.NuGet.Frameworks.5.8.20201217.57\lib\net461\NuGet.Frameworks.dll - ..\..\packages\JetBrains.NuGet.LibraryModel.5.8.20201111.52\lib\net461\NuGet.LibraryModel.dll + ..\..\packages\JetBrains.NuGet.LibraryModel.5.8.20201217.57\lib\net461\NuGet.LibraryModel.dll - ..\..\packages\JetBrains.NuGet.PackageManagement.5.8.20201111.52\lib\net461\NuGet.PackageManagement.dll + ..\..\packages\JetBrains.NuGet.PackageManagement.5.8.20201217.57\lib\net461\NuGet.PackageManagement.dll - ..\..\packages\JetBrains.NuGet.Packaging.5.8.20201111.52\lib\net461\NuGet.Packaging.dll + ..\..\packages\JetBrains.NuGet.Packaging.5.8.20201217.57\lib\net461\NuGet.Packaging.dll - ..\..\packages\JetBrains.NuGet.ProjectModel.5.8.20201111.52\lib\net461\NuGet.ProjectModel.dll + ..\..\packages\JetBrains.NuGet.ProjectModel.5.8.20201217.57\lib\net461\NuGet.ProjectModel.dll - ..\..\packages\JetBrains.NuGet.Protocol.5.8.20201111.52\lib\net461\NuGet.Protocol.dll + ..\..\packages\JetBrains.NuGet.Protocol.5.8.20201217.57\lib\net461\NuGet.Protocol.dll - ..\..\packages\JetBrains.NuGet.Resolver.5.8.20201111.52\lib\net461\NuGet.Resolver.dll + ..\..\packages\JetBrains.NuGet.Resolver.5.8.20201217.57\lib\net461\NuGet.Resolver.dll - ..\..\packages\JetBrains.NuGet.Versioning.5.8.20201111.52\lib\net461\NuGet.Versioning.dll + ..\..\packages\JetBrains.NuGet.Versioning.5.8.20201217.57\lib\net461\NuGet.Versioning.dll - - ..\..\packages\NUnit.3.10.1\lib\net45\nunit.framework.dll + + ..\..\packages\NUnit.3.12.0\lib\net45\nunit.framework.dll ..\..\packages\NVelocity.1.0.3\lib\NVelocity.dll @@ -406,14 +386,14 @@ - - ..\..\packages\System.Drawing.Common.4.7.0\lib\net461\System.Drawing.Common.dll + + ..\..\packages\System.Drawing.Common.5.0.2\lib\net461\System.Drawing.Common.dll - - ..\..\packages\System.IO.FileSystem.AccessControl.4.7.0\lib\net461\System.IO.FileSystem.AccessControl.dll + + ..\..\packages\System.IO.FileSystem.AccessControl.5.0.0\lib\net461\System.IO.FileSystem.AccessControl.dll ..\..\packages\System.Memory.4.5.4\lib\net461\System.Memory.dll @@ -442,8 +422,8 @@ - - ..\..\packages\System.Security.AccessControl.4.7.0\lib\net461\System.Security.AccessControl.dll + + ..\..\packages\System.Security.AccessControl.5.0.0\lib\net461\System.Security.AccessControl.dll ..\..\packages\System.Security.Cryptography.Algorithms.4.3.0\lib\net461\System.Security.Cryptography.Algorithms.dll @@ -465,10 +445,13 @@ True True - - ..\..\packages\System.Security.Principal.Windows.4.7.0\lib\net461\System.Security.Principal.Windows.dll + + ..\..\packages\System.Security.Principal.Windows.5.0.0\lib\net461\System.Security.Principal.Windows.dll + + ..\..\packages\System.Text.Encoding.CodePages.4.3.0\lib\net46\System.Text.Encoding.CodePages.dll + ..\..\packages\JetBrains.MSBuild.Xplat.Engine.20161013.1.0\lib\net45\System.Threading.Tasks.Dataflow.dll True @@ -478,7 +461,7 @@ - ..\..\packages\JetBrains.System.Windows.Interactivity.3.0.40218.0\lib\net45\System.Windows.Interactivity.dll + ..\..\packages\JetBrains.System.Windows.Interactivity.3.0.40218.1\lib\netstandard2.0\System.Windows.Interactivity.dll @@ -486,11 +469,7 @@ - ..\..\packages\Vestris.ResourceLib.JetBrains.1.4.20150303.0\lib\Net\Vestris.ResourceLib.dll - - - ..\..\packages\Mono.VSCodeDebugging.1.0.20161019.44\lib\net45\VSCodeDebugging.dll - True + ..\..\packages\JetBrains.Vestris.ResourceLib.1.4.20210120.1\lib\netstandard2.0\Vestris.ResourceLib.dll @@ -607,14 +586,6 @@ Designer - - - PreserveNewest - - - PreserveNewest - - @@ -635,112 +606,163 @@ - 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/Project/Src/TestCop.Plugin/app.config b/Project/Src/TestCop.Plugin/app.config index 04c565b..603d8e5 100644 --- a/Project/Src/TestCop.Plugin/app.config +++ b/Project/Src/TestCop.Plugin/app.config @@ -78,6 +78,14 @@ + + + + + + + + diff --git a/Project/Src/TestCop.Plugin/packages.config b/Project/Src/TestCop.Plugin/packages.config index c2b811f..a80e2c0 100644 --- a/Project/Src/TestCop.Plugin/packages.config +++ b/Project/Src/TestCop.Plugin/packages.config @@ -5,95 +5,117 @@ - - - + + - - + + - - - + + + - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + - - - - - - - + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + + + @@ -102,40 +124,31 @@ - - - - - - - + - - + + - - - + - + + - - - + diff --git a/Project/Src/TestCop.Plugin/resources/ThemedIcons.Unnamed.Generated.Xaml b/Project/Src/TestCop.Plugin/resources/ThemedIcons.Unnamed.Generated.Xaml index 2bf0244..ee5a4e2 100644 --- a/Project/Src/TestCop.Plugin/resources/ThemedIcons.Unnamed.Generated.Xaml +++ b/Project/Src/TestCop.Plugin/resources/ThemedIcons.Unnamed.Generated.Xaml @@ -1,13 +1,5 @@  - - - - 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 @@ -17,7 +9,7 @@ - + iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAYAAADDPmHLAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAADZ+SURBVHjaYvz//z/DKBi5ACCAGEcTwMgGAAE0mgBGOAAIoNEEMMIBQACNJoARDgACaDQBjHAAEECjCWCEA4AAGk0AIxwABNBoAhjhACCARhPACAcAATSaAEY4AAig0QQwwgFAAI0mgBEOAAJoNAGMcAAQQKMJYIQDgAAaTQAjHAAE0GgCGOEAIICwJgBGRsaREwLCkyQYGJiyGBh+fGb4PG8hw69r74Giv4ezl5HjHCCARm4CEJnJzPD/dywDI3MzAyOTDCRkvlxn+Hm+nuHzkp1A3hcg/jfcEwBAAI3MBCA82RIY8V0MDMw2DCCv/gXGMxMTEAM5jP/+MPx+sobh6+ZGhp8X7wNlfw7nBAAQQCMrAQhNkgRGdAsDA0ss0JesDCC///zLwCnCxfDnBzDefwBLfnYWUAAA8/7X5wy/b7QwvJ+xHKjzEyiZDMcEABBAIyMBCM/gZPj/J5OBibkcmM3FwGI//zAwsjExmLiqMrhHGDA8eviZYdfSswwvbryEJAIWJnBYMfx9uZfh26Fahi+7LgH538FiwygBAATQ8E8AQlPcgXV8JxDrg/m/gcX93/8M8gaSDB7RBgw6pjIMv37/Z/j0g4HhG5A4vu0aw0kg/v3lFwMDBysDuIr4//MDw++7UxneTp0MZL8FivwZLgkAIICGbwIQmqIOjDxQcR8EpJlAkQ4q7nml+RhcwnUZLNxUGTi52Bh+A0uCLz/+MXz5/p+BCZjr2diYGR7dfM2wf80FhkcXngKbCcCwYGVmAKeEf2/PM3w/X8fwYfkBoMDXoVoaIMc5QAANvwQgNJ0H2LovZWBiLQD6hA8cR8D6nZWHncEYWNw7h+kyiErxMfwCiv37B2nkf/z6n+EnsBSAeZuVjYXhz++/DOf332E4vuUqw7c3XyDVAigx/P/7g+HX/YUMH9d2Mvy8BUwhDL+GcgIACKDhkwCEpjMCIz4C0q1jVgaL/foLzqQqZnIMbpH6DEo64gx///xj+PMHEvGQDsB/hndf/jH8QwsGJmAYsHGwMLx5+pHhyMbLDDdPPITkd2AJAdH46S7DzyvNDG/mbIQ2Ev8NxQQAEEDDIwEITTEAeqsdWNx7gLMxqFsHLO5FVIQYHEL0GAwdFBlYWJgZfv38g+ZPYDkOLPo/A6sAXF5mBhb/IKlbZx+DE8LHJx+AiYAF0m1k/PeX4fezzQyfdtQzfDl6C9pl/D+UEgBAAA3tBCAwQQyY26uBOAPoajZw0AMjmQ== @@ -37,4 +29,12 @@ + + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAO9SURBVHjaYvz//z8DJQAggBgZWHvAFMOfvwzMrMxAJiPD35+/GRiYWWxk9OXm/vh85dub2wfCGHj4bzP8es/AKGLI8P/tRgaGnw/BBgAEEDMDsxvEgH//GZhYmICa/zKwcLB0WIQZTAsqcRCXMTWXePvmf/zHhzeeMvz+eImRV46B4fsNBoa/H8EGAAQQigH///zVEVAQ2emWaxtiHqjL8urzX4bfTAwM8sZG7H/YRP3ePnkjD/TwJoafd+AGAAQQxAv/wEaUqDqrNZmE6HEyiAgzPH36i+HXu08MDBwcDMx8XAz8HP8ZXtx6xnB968Zb365O9mX4++wWyACAAIIY8Oeflbqf3kHVAH2WN+9/MMidW8agz3WOQUfuDsPnr5IML9/JM2wXjmB4L6nN8PvTP4Zbyzof/LjarwnU/wMggFiAmhk4pPjbeA1kWO49+czw6BUTQ4DQNYbysrUMDLxA9/+/yPBmMyfD0sOBDI8YvzMIcDEw8Bj7Kvy4vTKN4dezSQABxMTAymTFoS5l9ez7P4aHr74yfP39n+H8DyWg2fwMDDeNGBg+CjFcfK/KcOe7CMOHz18Znr38yPBNUIaBUdEtA+gCNoAAYmEWFej8IcbL+gno9H//gIHxm43hx5+fDAxMwECSeMrAwPmJ4c9HJoY/338z/GH/yfDn/y+gNqDL1LzUGB7uDAMIIJZ/IhyGPzjZgfEK1PTvLwPDL2YGti8vGd4Dg4hP+zkDwyNgknj5jYHlOyhAGUHeBsYAMC54pJgZeGXCAAKI5f+Lg+cZPivYMLAADfjPBoyOfwwn/1kzlE/+x2Ak8oThwzcBhuM/dBm+gmz9DXTh/78Q/PrGf4aPd24BBBAzw0/Wlwwc6hGMUspM4iK/GGz4rjGYK/9i4JZVYfgposfwS0GfQUBeiEGD/w0DMw8bwztOKYY/X4GGXVn8ieHNmXSAAAJGoyrQjdILxDUNIvJjFNmleYHeZ+Nm4OUTAKZeAQY+Xh4GFiZGhn/AcPn16yfD5A2XGZavP/6Z4enuaQy/PlQABBAzA4sk0N83Nnx/fmgL47+/XsrqOvzCwqLA9MPJwMXFxcDNzcPABzSImZWDYfuufQxr5/Q8+PTktCfD3x9LQAkJIIAYGdi0gYHynIHp3ztQapZXUVFdZG9vZ6WiosIiLCzMwMzMzPD27VuGw0eO/N69a9epHz9+ZAH1XYLlRoAAghvA8v8dKE0xMDExATMkozM7O7svKyurLA== + MGqZgJqe//79eydQ/VYg/oOcnQECDACbA1XEBsc6LgAAAABJRU5ErkJggg== + + + \ No newline at end of file diff --git a/Project/Src/TestCop.Plugin/resources/ThemedIcons.Unnamed.Generated.cs b/Project/Src/TestCop.Plugin/resources/ThemedIcons.Unnamed.Generated.cs index 9c0bebb..904aa83 100644 --- a/Project/Src/TestCop.Plugin/resources/ThemedIcons.Unnamed.Generated.cs +++ b/Project/Src/TestCop.Plugin/resources/ThemedIcons.Unnamed.Generated.cs @@ -10,9 +10,9 @@ [assembly: global::System.Windows.Markup.XmlnsDefinitionAttribute("urn:shemas-jetbrains-com:ui-application-icons-unnamed", "TestCop.Plugin")] [assembly: global::JetBrains.UI.Icons.CompiledIcons.CompiledIconsPackAttribute(IconPackResourceIdentification="Resharper.Testcop;component/resources/ThemedIcons.Unnamed.Generated.Xaml", IconNames=new string[] { - "Agent48x48", "Agent64x64", - "Agent16x16"})] + "Agent16x16", + "Agent48x48"})] namespace TestCop.Plugin { @@ -78,7 +78,7 @@ public sealed class UnnamedThemedIcons /// /// themediconmanager.GetIcon<UnnamedThemedIcons.Agent16x16>() // Icon image for rendering /// - [global::JetBrains.UI.Icons.CompiledIcons.CompiledIconClassAttribute("Resharper.Testcop;component/resources/ThemedIcons.Unnamed.Generated.Xaml", 2, "Agent16x16")] + [global::JetBrains.UI.Icons.CompiledIcons.CompiledIconClassAttribute("Resharper.Testcop;component/resources/ThemedIcons.Unnamed.Generated.Xaml", 1, "Agent16x16")] public sealed class Agent16x16 : global::JetBrains.UI.Icons.CompiledIcons.CompiledIconClass { @@ -104,7 +104,7 @@ public sealed class Agent16x16 : global::JetBrains.UI.Icons.CompiledIcons.Compil /// /// themediconmanager.GetIcon<UnnamedThemedIcons.Agent16x16>() // Icon image for rendering /// - public static global::JetBrains.UI.Icons.IconId Id = new global::JetBrains.UI.Icons.CompiledIcons.CompiledIconId("Resharper.Testcop;component/resources/ThemedIcons.Unnamed.Generated.Xaml", 2, "Agent16x16"); + public static global::JetBrains.UI.Icons.IconId Id = new global::JetBrains.UI.Icons.CompiledIcons.CompiledIconId("Resharper.Testcop;component/resources/ThemedIcons.Unnamed.Generated.Xaml", 1, "Agent16x16"); } /// @@ -129,7 +129,7 @@ public sealed class Agent16x16 : global::JetBrains.UI.Icons.CompiledIcons.Compil /// /// themediconmanager.GetIcon<UnnamedThemedIcons.Agent48x48>() // Icon image for rendering /// - [global::JetBrains.UI.Icons.CompiledIcons.CompiledIconClassAttribute("Resharper.Testcop;component/resources/ThemedIcons.Unnamed.Generated.Xaml", 0, "Agent48x48")] + [global::JetBrains.UI.Icons.CompiledIcons.CompiledIconClassAttribute("Resharper.Testcop;component/resources/ThemedIcons.Unnamed.Generated.Xaml", 2, "Agent48x48")] public sealed class Agent48x48 : global::JetBrains.UI.Icons.CompiledIcons.CompiledIconClass { @@ -155,7 +155,7 @@ public sealed class Agent48x48 : global::JetBrains.UI.Icons.CompiledIcons.Compil /// /// themediconmanager.GetIcon<UnnamedThemedIcons.Agent48x48>() // Icon image for rendering /// - public static global::JetBrains.UI.Icons.IconId Id = new global::JetBrains.UI.Icons.CompiledIcons.CompiledIconId("Resharper.Testcop;component/resources/ThemedIcons.Unnamed.Generated.Xaml", 0, "Agent48x48"); + public static global::JetBrains.UI.Icons.IconId Id = new global::JetBrains.UI.Icons.CompiledIcons.CompiledIconId("Resharper.Testcop;component/resources/ThemedIcons.Unnamed.Generated.Xaml", 2, "Agent48x48"); } /// @@ -180,7 +180,7 @@ public sealed class Agent48x48 : global::JetBrains.UI.Icons.CompiledIcons.Compil /// /// themediconmanager.GetIcon<UnnamedThemedIcons.Agent64x64>() // Icon image for rendering /// - [global::JetBrains.UI.Icons.CompiledIcons.CompiledIconClassAttribute("Resharper.Testcop;component/resources/ThemedIcons.Unnamed.Generated.Xaml", 1, "Agent64x64")] + [global::JetBrains.UI.Icons.CompiledIcons.CompiledIconClassAttribute("Resharper.Testcop;component/resources/ThemedIcons.Unnamed.Generated.Xaml", 0, "Agent64x64")] public sealed class Agent64x64 : global::JetBrains.UI.Icons.CompiledIcons.CompiledIconClass { @@ -206,7 +206,7 @@ public sealed class Agent64x64 : global::JetBrains.UI.Icons.CompiledIcons.Compil /// /// themediconmanager.GetIcon<UnnamedThemedIcons.Agent64x64>() // Icon image for rendering /// - public static global::JetBrains.UI.Icons.IconId Id = new global::JetBrains.UI.Icons.CompiledIcons.CompiledIconId("Resharper.Testcop;component/resources/ThemedIcons.Unnamed.Generated.Xaml", 1, "Agent64x64"); + public static global::JetBrains.UI.Icons.IconId Id = new global::JetBrains.UI.Icons.CompiledIcons.CompiledIconId("Resharper.Testcop;component/resources/ThemedIcons.Unnamed.Generated.Xaml", 0, "Agent64x64"); } } } diff --git a/Project/Src/test/data/nuget.config b/Project/Src/test/data/nuget.config index f7e5b3c..24a702d 100644 --- a/Project/Src/test/data/nuget.config +++ b/Project/Src/test/data/nuget.config @@ -1,6 +1,8 @@ + +