From 05fcfaa44d72497b1789a6fa2ec7817ae80664a6 Mon Sep 17 00:00:00 2001 From: ernstaii Date: Mon, 22 Jul 2024 11:48:11 +0200 Subject: [PATCH] Ported to net8. --- .gitignore | 4 +- .sonarcloud.properties | 0 .../DsmSuite.Analyzer.Compare.Test.csproj | 66 +--- .../Properties/AssemblyInfo.cs | 36 --- DsmSuite.Analyzer.Compare/App.config | 6 - .../DsmSuite.Analyzer.Compare.csproj | 61 +--- .../Properties/AssemblyInfo.cs | 35 --- .../DsmSuite.Analyzer.CompareLib.csproj | 52 +--- .../Properties/AssemblyInfo.cs | 35 --- DsmSuite.Analyzer.DotNet.Lib/BinaryFile.cs | 6 +- .../DsmSuite.Analyzer.DotNet.Lib.csproj | 73 +---- .../Properties/AssemblyInfo.cs | 35 --- .../DsmSuite.Analyzer.DotNet.Test.Data.csproj | 63 +--- .../Properties/AssemblyInfo.cs | 34 --- .../DsmSuite.Analyzer.DotNet.Test.csproj | 87 +----- .../Properties/AssemblyInfo.cs | 34 --- DsmSuite.Analyzer.DotNet.Test/app.config | 11 - DsmSuite.Analyzer.DotNet.Test/packages.config | 8 - DsmSuite.Analyzer.DotNet/Analysis/Analyzer.cs | 2 - DsmSuite.Analyzer.DotNet/App.config | 6 - .../DsmSuite.Analyzer.DotNet.csproj | 79 +---- .../Properties/AssemblyInfo.cs | 36 --- DsmSuite.Analyzer.DotNet/packages.config | 4 - .../DsmSuite.Analyzer.Jdeps.Test.csproj | 87 +----- .../Properties/AssemblyInfo.cs | 34 --- DsmSuite.Analyzer.Jdeps.Test/app.config | 11 - DsmSuite.Analyzer.Jdeps.Test/packages.config | 8 - DsmSuite.Analyzer.Jdeps/App.config | 6 - .../DsmSuite.Analyzer.Jdeps.csproj | 57 +--- .../Properties/AssemblyInfo.cs | 36 --- .../DsmSuite.Analyzer.Model.Test.csproj | 94 +----- .../Properties/AssemblyInfo.cs | 34 --- DsmSuite.Analyzer.Model.Test/app.config | 11 - DsmSuite.Analyzer.Model.Test/packages.config | 8 - .../DsmSuite.Analyzer.Model.csproj | 60 +--- .../Properties/AssemblyInfo.cs | 36 --- ...Suite.Analyzer.Transformations.Test.csproj | 73 +---- .../Properties/AssemblyInfo.cs | 34 --- .../DsmSuite.Analyzer.Transformations.csproj | 55 +--- .../Properties/AssemblyInfo.cs | 36 --- .../DsmSuite.Analyzer.Uml.Test.csproj | 75 +---- .../Properties/AssemblyInfo.cs | 34 --- DsmSuite.Analyzer.Uml.Test/app.config | 11 - DsmSuite.Analyzer.Uml.Test/packages.config | 8 - DsmSuite.Analyzer.Uml/App.config | 6 - .../DsmSuite.Analyzer.Uml.csproj | 54 +--- .../Properties/AssemblyInfo.cs | 36 --- .../DsmSuite.Common.Model.Test.csproj | 52 +--- .../Properties/AssemblyInfo.cs | 34 --- .../DsmSuite.Common.Model.csproj | 43 +-- .../Properties/AssemblyInfo.cs | 34 --- .../DsmSuite.Common.Util.Test.csproj | 89 +----- DsmSuite.Common.Util.Test/FilePathTest.cs | 1 + .../Properties/AssemblyInfo.cs | 34 --- DsmSuite.Common.Util.Test/TestFile.txt | 4 - DsmSuite.Common.Util.Test/TestFile.zip | Bin 142 -> 0 bytes .../DsmSuite.Common.Util.csproj | 42 +-- .../Properties/AssemblyInfo.cs | 34 --- ...DsmSuite.DsmViewer.Application.Test.csproj | 129 ++------ .../Properties/AssemblyInfo.cs | 35 --- .../app.config | 19 -- .../packages.config | 10 - .../Actions/Management/ActionManager.cs | 1 - .../DsmSuite.DsmViewer.Application.csproj | 105 +------ .../Properties/AssemblyInfo.cs | 35 --- .../DsmSuite.DsmViewer.Model.Test.csproj | 90 +----- .../Properties/AssemblyInfo.cs | 34 --- .../DsmSuite.DsmViewer.Model.csproj | 78 +---- .../Properties/AssemblyInfo.cs | 34 --- DsmSuite.DsmViewer.View/App.config | 6 - .../DsmSuite.DsmViewer.View.csproj | 264 +--------------- ...uite.DsmViewer.View_tcffgxdf_wpftmp.csproj | 195 ------------ .../Properties/AssemblyInfo.cs | 52 ---- DsmSuite.DsmViewer.View/partition.design | Bin 2964 -> 0 bytes DsmSuite.DsmViewer.View/show cycles.design | Bin 3152 -> 0 bytes .../DsmSuite.DsmViewer.ViewModel.Test.csproj | 87 +----- .../Properties/AssemblyInfo.cs | 34 --- .../UnitTest1.cs | 13 - DsmSuite.DsmViewer.ViewModel.Test/app.config | 11 - .../packages.config | 9 - .../DsmSuite.DsmViewer.ViewModel.csproj | 98 +----- .../Properties/AssemblyInfo.cs | 34 --- DsmSuite.sln | 189 ++++++++---- Hierarchical.graphml | 41 --- PropertySheets/DsmSuite.Common.props | 27 -- UpgradeLog.htm | 288 ------------------ UpgradeLog2.htm | 286 ----------------- create_test_report.bat | 1 - moqnote..txt | 1 - run_tests_dsmsuite_opencover.bat | 1 - 90 files changed, 466 insertions(+), 3785 deletions(-) delete mode 100644 .sonarcloud.properties delete mode 100644 DsmSuite.Analyzer.Compare.Test/Properties/AssemblyInfo.cs delete mode 100644 DsmSuite.Analyzer.Compare/App.config delete mode 100644 DsmSuite.Analyzer.Compare/Properties/AssemblyInfo.cs delete mode 100644 DsmSuite.Analyzer.CompareLib/Properties/AssemblyInfo.cs delete mode 100644 DsmSuite.Analyzer.DotNet.Lib/Properties/AssemblyInfo.cs delete mode 100644 DsmSuite.Analyzer.DotNet.Test.Data/Properties/AssemblyInfo.cs delete mode 100644 DsmSuite.Analyzer.DotNet.Test/Properties/AssemblyInfo.cs delete mode 100644 DsmSuite.Analyzer.DotNet.Test/app.config delete mode 100644 DsmSuite.Analyzer.DotNet.Test/packages.config delete mode 100644 DsmSuite.Analyzer.DotNet/App.config delete mode 100644 DsmSuite.Analyzer.DotNet/Properties/AssemblyInfo.cs delete mode 100644 DsmSuite.Analyzer.DotNet/packages.config delete mode 100644 DsmSuite.Analyzer.Jdeps.Test/Properties/AssemblyInfo.cs delete mode 100644 DsmSuite.Analyzer.Jdeps.Test/app.config delete mode 100644 DsmSuite.Analyzer.Jdeps.Test/packages.config delete mode 100644 DsmSuite.Analyzer.Jdeps/App.config delete mode 100644 DsmSuite.Analyzer.Jdeps/Properties/AssemblyInfo.cs delete mode 100644 DsmSuite.Analyzer.Model.Test/Properties/AssemblyInfo.cs delete mode 100644 DsmSuite.Analyzer.Model.Test/app.config delete mode 100644 DsmSuite.Analyzer.Model.Test/packages.config delete mode 100644 DsmSuite.Analyzer.Model/Properties/AssemblyInfo.cs delete mode 100644 DsmSuite.Analyzer.Transformations.Test/Properties/AssemblyInfo.cs delete mode 100644 DsmSuite.Analyzer.Transformations/Properties/AssemblyInfo.cs delete mode 100644 DsmSuite.Analyzer.Uml.Test/Properties/AssemblyInfo.cs delete mode 100644 DsmSuite.Analyzer.Uml.Test/app.config delete mode 100644 DsmSuite.Analyzer.Uml.Test/packages.config delete mode 100644 DsmSuite.Analyzer.Uml/App.config delete mode 100644 DsmSuite.Analyzer.Uml/Properties/AssemblyInfo.cs delete mode 100644 DsmSuite.Common.Model.Test/Properties/AssemblyInfo.cs delete mode 100644 DsmSuite.Common.Model/Properties/AssemblyInfo.cs delete mode 100644 DsmSuite.Common.Util.Test/Properties/AssemblyInfo.cs delete mode 100644 DsmSuite.Common.Util.Test/TestFile.txt delete mode 100644 DsmSuite.Common.Util.Test/TestFile.zip delete mode 100644 DsmSuite.Common.Util/Properties/AssemblyInfo.cs delete mode 100644 DsmSuite.DsmViewer.Application.Test/Properties/AssemblyInfo.cs delete mode 100644 DsmSuite.DsmViewer.Application.Test/app.config delete mode 100644 DsmSuite.DsmViewer.Application.Test/packages.config delete mode 100644 DsmSuite.DsmViewer.Application/Properties/AssemblyInfo.cs delete mode 100644 DsmSuite.DsmViewer.Model.Test/Properties/AssemblyInfo.cs delete mode 100644 DsmSuite.DsmViewer.Model/Properties/AssemblyInfo.cs delete mode 100644 DsmSuite.DsmViewer.View/App.config delete mode 100644 DsmSuite.DsmViewer.View/DsmSuite.DsmViewer.View_tcffgxdf_wpftmp.csproj delete mode 100644 DsmSuite.DsmViewer.View/Properties/AssemblyInfo.cs delete mode 100644 DsmSuite.DsmViewer.View/partition.design delete mode 100644 DsmSuite.DsmViewer.View/show cycles.design delete mode 100644 DsmSuite.DsmViewer.ViewModel.Test/Properties/AssemblyInfo.cs delete mode 100644 DsmSuite.DsmViewer.ViewModel.Test/UnitTest1.cs delete mode 100644 DsmSuite.DsmViewer.ViewModel.Test/app.config delete mode 100644 DsmSuite.DsmViewer.ViewModel.Test/packages.config delete mode 100644 DsmSuite.DsmViewer.ViewModel/Properties/AssemblyInfo.cs delete mode 100644 Hierarchical.graphml delete mode 100644 PropertySheets/DsmSuite.Common.props delete mode 100644 UpgradeLog.htm delete mode 100644 UpgradeLog2.htm delete mode 100644 create_test_report.bat delete mode 100644 moqnote..txt delete mode 100644 run_tests_dsmsuite_opencover.bat diff --git a/.gitignore b/.gitignore index fb2ec260..b97ef350 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ -build/ -packages/ +*/obj/ +*/bin/ idloutput/ *.suo *.tlb diff --git a/.sonarcloud.properties b/.sonarcloud.properties deleted file mode 100644 index e69de29b..00000000 diff --git a/DsmSuite.Analyzer.Compare.Test/DsmSuite.Analyzer.Compare.Test.csproj b/DsmSuite.Analyzer.Compare.Test/DsmSuite.Analyzer.Compare.Test.csproj index 03088909..1c9f27d7 100644 --- a/DsmSuite.Analyzer.Compare.Test/DsmSuite.Analyzer.Compare.Test.csproj +++ b/DsmSuite.Analyzer.Compare.Test/DsmSuite.Analyzer.Compare.Test.csproj @@ -1,63 +1,34 @@ - - - - + - Debug + net8.0 x64 - {AE26E765-3E28-45C0-87FC-A45A88AE431B} Library - Properties - DsmSuite.Analyzer.Compare.Test - DsmSuite.Analyzer.Compare.Test - v4.7.2 - 512 - {3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - 10.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - $(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages - False - UnitTest - + true + MinimumRecommendedRules.ruleset - true true + DsmSuite.Analyzer.Compare.Test + DsmSuite.Analyzer.Compare.Test + Copyright © 2021 + 1.0.0.0 + 1.0.0.0 - - - - - - - False - - - + - - + - - {4DEF3EDB-91A6-4C95-BF74-D11B3363BEE2} - DsmSuite.Analyzer.CompareLib - - - {7106d2f0-804e-4f73-950c-266ffc096a87} - DsmSuite.Analyzer.Model - - - {c2eb943f-4bb8-47bb-bdc1-7f6b607fb977} - DsmSuite.Common.Util - + + + @@ -77,13 +48,4 @@ - - - \ No newline at end of file diff --git a/DsmSuite.Analyzer.Compare.Test/Properties/AssemblyInfo.cs b/DsmSuite.Analyzer.Compare.Test/Properties/AssemblyInfo.cs deleted file mode 100644 index 9ea16e71..00000000 --- a/DsmSuite.Analyzer.Compare.Test/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,36 +0,0 @@ -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("DsmSuite.Analyzer.Compare.Test")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("DsmSuite.Analyzer.Compare.Test")] -[assembly: AssemblyCopyright("Copyright © 2021")] -[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)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("ae26e765-3e28-45c0-87fc-a45a88ae431b")] - -// 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/DsmSuite.Analyzer.Compare/App.config b/DsmSuite.Analyzer.Compare/App.config deleted file mode 100644 index ecdcf8a5..00000000 --- a/DsmSuite.Analyzer.Compare/App.config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/DsmSuite.Analyzer.Compare/DsmSuite.Analyzer.Compare.csproj b/DsmSuite.Analyzer.Compare/DsmSuite.Analyzer.Compare.csproj index 57d4a7f9..00842285 100644 --- a/DsmSuite.Analyzer.Compare/DsmSuite.Analyzer.Compare.csproj +++ b/DsmSuite.Analyzer.Compare/DsmSuite.Analyzer.Compare.csproj @@ -1,57 +1,22 @@ - - - - + - Debug + net8.0 x64 - {F0F09701-6A36-479E-97B9-BCC0DEF3C050} Exe - Properties - DsmSuite.Analyzer.Compare - DsmSuite.Analyzer.Compare - v4.7.2 - 512 - true - + true + MinimumRecommendedRules.ruleset + DsmSuite.Analyzer.Compare + DsmSuite.Analyzer.Compare + Copyright © 2020 + 1.0.0.0 + 1.0.0.0 - - - - - - - - + + + - - + - - - - - - {4def3edb-91a6-4c95-bf74-d11b3363bee2} - DsmSuite.Analyzer.CompareLib - - - {7106d2f0-804e-4f73-950c-266ffc096a87} - DsmSuite.Analyzer.Model - - - {C2EB943F-4BB8-47BB-BDC1-7F6B607FB977} - DsmSuite.Common.Util - - - - \ No newline at end of file diff --git a/DsmSuite.Analyzer.Compare/Properties/AssemblyInfo.cs b/DsmSuite.Analyzer.Compare/Properties/AssemblyInfo.cs deleted file mode 100644 index a7e2f97a..00000000 --- a/DsmSuite.Analyzer.Compare/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,35 +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("DsmSuite.Analyzer.Compare")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("DsmSuite.Analyzer.Compare")] -[assembly: AssemblyCopyright("Copyright © 2020")] -[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)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("f0f09701-6a36-479e-97b9-bcc0def3c050")] - -// 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/DsmSuite.Analyzer.CompareLib/DsmSuite.Analyzer.CompareLib.csproj b/DsmSuite.Analyzer.CompareLib/DsmSuite.Analyzer.CompareLib.csproj index 0ceb0d6c..968e11d9 100644 --- a/DsmSuite.Analyzer.CompareLib/DsmSuite.Analyzer.CompareLib.csproj +++ b/DsmSuite.Analyzer.CompareLib/DsmSuite.Analyzer.CompareLib.csproj @@ -1,49 +1,21 @@ - - - - + - Debug + net8.0 x64 - {4DEF3EDB-91A6-4C95-BF74-D11B3363BEE2} Library - Properties - DsmSuite.Analyzer.CompareLib - DsmSuite.Analyzer.CompareLib - v4.7.2 - 512 - + true + MinimumRecommendedRules.ruleset + DsmSuite.Analyzer.ComparerLib + DsmSuite.Analyzer.ComparerLib + Copyright © 2021 + 1.0.0.0 + 1.0.0.0 - - - - - - - - + + - - + - - - {7106d2f0-804e-4f73-950c-266ffc096a87} - DsmSuite.Analyzer.Model - - - {c2eb943f-4bb8-47bb-bdc1-7f6b607fb977} - DsmSuite.Common.Util - - - - \ No newline at end of file diff --git a/DsmSuite.Analyzer.CompareLib/Properties/AssemblyInfo.cs b/DsmSuite.Analyzer.CompareLib/Properties/AssemblyInfo.cs deleted file mode 100644 index 3444121c..00000000 --- a/DsmSuite.Analyzer.CompareLib/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,35 +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("DsmSuite.Analyzer.ComparerLib")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("DsmSuite.Analyzer.ComparerLib")] -[assembly: AssemblyCopyright("Copyright © 2021")] -[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)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("4def3edb-91a6-4c95-bf74-d11b3363bee2")] - -// 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/DsmSuite.Analyzer.DotNet.Lib/BinaryFile.cs b/DsmSuite.Analyzer.DotNet.Lib/BinaryFile.cs index 27521928..71c8769b 100644 --- a/DsmSuite.Analyzer.DotNet.Lib/BinaryFile.cs +++ b/DsmSuite.Analyzer.DotNet.Lib/BinaryFile.cs @@ -172,8 +172,9 @@ private void AnalyseTypeRelations(TypeDefinition typeDecl) private void AnalyzeTypeInterfaces(TypeDefinition typeDecl) { - foreach (TypeReference interf in typeDecl.Interfaces) + foreach (InterfaceImplementation impl in typeDecl.Interfaces) { + TypeReference interf = impl.InterfaceType; try { string context = "Analyze interfaces of type " + typeDecl.Name; @@ -257,8 +258,9 @@ private void AnalyzeGenericMethodParameters(TypeDefinition typeDecl, { foreach (GenericParameter genericArgument in method.GenericParameters) { - foreach (TypeReference constraint in genericArgument.Constraints) + foreach (GenericParameterConstraint cs in genericArgument.Constraints) { + TypeReference constraint = cs.ConstraintType; try { string context = "Analyze generic parameters of method " + typeDecl.Name + "::" + method.Name; diff --git a/DsmSuite.Analyzer.DotNet.Lib/DsmSuite.Analyzer.DotNet.Lib.csproj b/DsmSuite.Analyzer.DotNet.Lib/DsmSuite.Analyzer.DotNet.Lib.csproj index 5945b4d0..adc52b11 100644 --- a/DsmSuite.Analyzer.DotNet.Lib/DsmSuite.Analyzer.DotNet.Lib.csproj +++ b/DsmSuite.Analyzer.DotNet.Lib/DsmSuite.Analyzer.DotNet.Lib.csproj @@ -1,68 +1,23 @@ - - - - + - Debug + net8.0 x64 - {E7777E3D-34E7-4ACB-928A-FB70D25F0C64} Library - Properties - DsmSuite.Analyzer.DotNet.Lib - DsmSuite.Analyzer.DotNet.Lib - v4.7.2 - 512 - true - + true + MinimumRecommendedRules.ruleset + + + + DsmSuite.Analyzer.DotNet.Lib + DsmSuite.Analyzer.DotNet.Lib + Copyright © 2020 + 1.0.0.0 - - ..\packages\Mono.Cecil.0.9.6.4\lib\net45\Mono.Cecil.dll - True - - - ..\packages\Mono.Cecil.0.9.6.4\lib\net45\Mono.Cecil.Mdb.dll - True - - - ..\packages\Mono.Cecil.0.9.6.4\lib\net45\Mono.Cecil.Pdb.dll - True - - - ..\packages\Mono.Cecil.0.9.6.4\lib\net45\Mono.Cecil.Rocks.dll - True - - - - - - - - - - - - - - - + - - {7106d2f0-804e-4f73-950c-266ffc096a87} - DsmSuite.Analyzer.Model - - - {c2eb943f-4bb8-47bb-bdc1-7f6b607fb977} - DsmSuite.Common.Util - + + - - \ No newline at end of file diff --git a/DsmSuite.Analyzer.DotNet.Lib/Properties/AssemblyInfo.cs b/DsmSuite.Analyzer.DotNet.Lib/Properties/AssemblyInfo.cs deleted file mode 100644 index 8f586a47..00000000 --- a/DsmSuite.Analyzer.DotNet.Lib/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,35 +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("DsmSuite.Analyzer.DotNet.Lib")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("DsmSuite.Analyzer.DotNet.Lib")] -[assembly: AssemblyCopyright("Copyright © 2020")] -[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)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("e7777e3d-34e7-4acb-928a-fb70d25f0c64")] - -// 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/DsmSuite.Analyzer.DotNet.Test.Data/DsmSuite.Analyzer.DotNet.Test.Data.csproj b/DsmSuite.Analyzer.DotNet.Test.Data/DsmSuite.Analyzer.DotNet.Test.Data.csproj index c9ae903a..5ca35989 100644 --- a/DsmSuite.Analyzer.DotNet.Test.Data/DsmSuite.Analyzer.DotNet.Test.Data.csproj +++ b/DsmSuite.Analyzer.DotNet.Test.Data/DsmSuite.Analyzer.DotNet.Test.Data.csproj @@ -1,61 +1,16 @@ - - - - + - Debug + net8.0 x64 - {0CDFA464-A451-4FDC-A58F-6E5D924B49E9} Library - Properties - DsmSuite.Analyzer.DotNet.Test.Data - DsmSuite.Analyzer.DotNet.Test.Data - v4.7.2 - 512 - + true + MinimumRecommendedRules.ruleset + DsmSuite.Analyzer.DotNet.Test.Data + DsmSuite.Analyzer.DotNet.Test.Data + Copyright © 2018 + 1.0.0.0 - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/DsmSuite.Analyzer.DotNet.Test.Data/Properties/AssemblyInfo.cs b/DsmSuite.Analyzer.DotNet.Test.Data/Properties/AssemblyInfo.cs deleted file mode 100644 index a28aa761..00000000 --- a/DsmSuite.Analyzer.DotNet.Test.Data/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,34 +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("DsmSuite.Analyzer.DotNet.Test.Data")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("DsmSuite.Analyzer.DotNet.Test.Data")] -[assembly: AssemblyCopyright("Copyright © 2018")] -[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)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("0cdfa464-a451-4fdc-a58f-6e5d924b49e9")] - -// 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.*")] \ No newline at end of file diff --git a/DsmSuite.Analyzer.DotNet.Test/DsmSuite.Analyzer.DotNet.Test.csproj b/DsmSuite.Analyzer.DotNet.Test/DsmSuite.Analyzer.DotNet.Test.csproj index 9a7db2f3..abda36a9 100644 --- a/DsmSuite.Analyzer.DotNet.Test/DsmSuite.Analyzer.DotNet.Test.csproj +++ b/DsmSuite.Analyzer.DotNet.Test/DsmSuite.Analyzer.DotNet.Test.csproj @@ -1,43 +1,13 @@ - - - - + - Debug + net8.0 x64 - {07280D48-1239-4EB1-9B28-C358E8944A8E} Library - Properties - DsmSuite.Analyzer.DotNet.Test - DsmSuite.Analyzer.DotNet.Test - v4.7.2 - 512 - {3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - 10.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - $(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages - False - UnitTest - + true + MinimumRecommendedRules.ruleset - - ..\packages\Castle.Core.4.4.1\lib\net45\Castle.Core.dll - - - ..\packages\Moq.4.16.1\lib\net45\Moq.dll - - - - - ..\packages\System.Runtime.CompilerServices.Unsafe.5.0.0\lib\net45\System.Runtime.CompilerServices.Unsafe.dll - - - ..\packages\System.Threading.Tasks.Extensions.4.5.4\lib\net461\System.Threading.Tasks.Extensions.dll - - - ..\packages\System.ValueTuple.4.5.0\lib\net47\System.ValueTuple.dll - + @@ -45,41 +15,13 @@ - - - - False - - - - - - - - - - - {7106d2f0-804e-4f73-950c-266ffc096a87} - DsmSuite.Analyzer.Model - - - {0cdfa464-a451-4fdc-a58f-6e5d924b49e9} - DsmSuite.Analyzer.DotNet.Test.Data - - - {8fea0bb6-a14f-494c-b21b-8a44ab8cff47} - DsmSuite.Analyzer.DotNet - - - {c2eb943f-4bb8-47bb-bdc1-7f6b607fb977} - DsmSuite.Common.Util - - - - - + + + + + @@ -99,13 +41,4 @@ - - - \ No newline at end of file diff --git a/DsmSuite.Analyzer.DotNet.Test/Properties/AssemblyInfo.cs b/DsmSuite.Analyzer.DotNet.Test/Properties/AssemblyInfo.cs deleted file mode 100644 index b58d6620..00000000 --- a/DsmSuite.Analyzer.DotNet.Test/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,34 +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("DsmSuite.Analyzer.DotNet.Test")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("DsmSuite.Analyzer.DotNet.Test")] -[assembly: AssemblyCopyright("Copyright © 2018")] -[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)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("07280d48-1239-4eb1-9b28-c358e8944a8e")] - -// 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.*")] diff --git a/DsmSuite.Analyzer.DotNet.Test/app.config b/DsmSuite.Analyzer.DotNet.Test/app.config deleted file mode 100644 index f10b4ac0..00000000 --- a/DsmSuite.Analyzer.DotNet.Test/app.config +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/DsmSuite.Analyzer.DotNet.Test/packages.config b/DsmSuite.Analyzer.DotNet.Test/packages.config deleted file mode 100644 index 8c082275..00000000 --- a/DsmSuite.Analyzer.DotNet.Test/packages.config +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/DsmSuite.Analyzer.DotNet/Analysis/Analyzer.cs b/DsmSuite.Analyzer.DotNet/Analysis/Analyzer.cs index 0b50cfd0..fb6c3686 100644 --- a/DsmSuite.Analyzer.DotNet/Analysis/Analyzer.cs +++ b/DsmSuite.Analyzer.DotNet/Analysis/Analyzer.cs @@ -1,13 +1,11 @@ using System; using System.Collections.Generic; using System.IO; -using System.Linq; using System.Text.RegularExpressions; using DsmSuite.Analyzer.DotNet.Lib; using DsmSuite.Analyzer.DotNet.Settings; using DsmSuite.Analyzer.Model.Interface; using DsmSuite.Common.Util; -using Mono.Cecil; namespace DsmSuite.Analyzer.DotNet.Analysis { diff --git a/DsmSuite.Analyzer.DotNet/App.config b/DsmSuite.Analyzer.DotNet/App.config deleted file mode 100644 index ecdcf8a5..00000000 --- a/DsmSuite.Analyzer.DotNet/App.config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/DsmSuite.Analyzer.DotNet/DsmSuite.Analyzer.DotNet.csproj b/DsmSuite.Analyzer.DotNet/DsmSuite.Analyzer.DotNet.csproj index eba3d1bc..40b03a11 100644 --- a/DsmSuite.Analyzer.DotNet/DsmSuite.Analyzer.DotNet.csproj +++ b/DsmSuite.Analyzer.DotNet/DsmSuite.Analyzer.DotNet.csproj @@ -1,76 +1,21 @@ - - - - + - Debug + net8.0 x64 - {8FEA0BB6-A14F-494C-B21B-8A44AB8CFF47} Exe - Properties - DsmSuite.Analyzer.DotNet - DsmSuite.Analyzer.DotNet - v4.7.2 - 512 - true - + true + MinimumRecommendedRules.ruleset + DsmSuite.Analyzer.DotNet + DsmSuite.Analyzer.DotNet + Copyright © 2018 + 1.0.0.0 - - ..\packages\Mono.Cecil.0.9.6.4\lib\net45\Mono.Cecil.dll - True - - - ..\packages\Mono.Cecil.0.9.6.4\lib\net45\Mono.Cecil.Mdb.dll - True - - - ..\packages\Mono.Cecil.0.9.6.4\lib\net45\Mono.Cecil.Pdb.dll - True - - - ..\packages\Mono.Cecil.0.9.6.4\lib\net45\Mono.Cecil.Rocks.dll - True - - - - - - - - + + + - - - - + - - - - - - - {e7777e3d-34e7-4acb-928a-fb70d25f0c64} - DsmSuite.Analyzer.DotNet.Lib - - - {7106d2f0-804e-4f73-950c-266ffc096a87} - DsmSuite.Analyzer.Model - - - {c2eb943f-4bb8-47bb-bdc1-7f6b607fb977} - DsmSuite.Common.Util - - - - - \ No newline at end of file diff --git a/DsmSuite.Analyzer.DotNet/Properties/AssemblyInfo.cs b/DsmSuite.Analyzer.DotNet/Properties/AssemblyInfo.cs deleted file mode 100644 index 612fca19..00000000 --- a/DsmSuite.Analyzer.DotNet/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,36 +0,0 @@ -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("DsmSuite.Analyzer.DotNet")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("DsmSuite.Analyzer.DotNet")] -[assembly: AssemblyCopyright("Copyright © 2018")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] -[assembly: InternalsVisibleTo("DsmSuite.Analyzer.DotNet.Test")] - -// 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)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("8fea0bb6-a14f-494c-b21b-8a44ab8cff47")] - -// 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.*")] diff --git a/DsmSuite.Analyzer.DotNet/packages.config b/DsmSuite.Analyzer.DotNet/packages.config deleted file mode 100644 index f62ed3f1..00000000 --- a/DsmSuite.Analyzer.DotNet/packages.config +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/DsmSuite.Analyzer.Jdeps.Test/DsmSuite.Analyzer.Jdeps.Test.csproj b/DsmSuite.Analyzer.Jdeps.Test/DsmSuite.Analyzer.Jdeps.Test.csproj index dd2ca273..42b5a188 100644 --- a/DsmSuite.Analyzer.Jdeps.Test/DsmSuite.Analyzer.Jdeps.Test.csproj +++ b/DsmSuite.Analyzer.Jdeps.Test/DsmSuite.Analyzer.Jdeps.Test.csproj @@ -1,81 +1,35 @@ - - - - + - Debug + net8.0 x64 - {C792DC03-4697-4402-9FB9-D1872BDF736D} Library - Properties - DsmSuite.Analyzer.Jdeps.Test - DsmSuite.Analyzer.Jdeps.Test - v4.7.2 - 512 - {3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - 10.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - $(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages - False - UnitTest - + true + MinimumRecommendedRules.ruleset + DsmSuite.Analyzer.Jdeps.Test + DsmSuite.Analyzer.Jdeps.Test + Copyright © 2018 + 1.0.0.0 - - - ..\packages\Castle.Core.5.1.1\lib\net462\Castle.Core.dll - - - ..\packages\Moq.4.20.69\lib\net462\Moq.dll - - - - - ..\packages\System.Runtime.CompilerServices.Unsafe.6.0.0\lib\net461\System.Runtime.CompilerServices.Unsafe.dll - - - ..\packages\System.Threading.Tasks.Extensions.4.5.4\lib\net461\System.Threading.Tasks.Extensions.dll - - - ..\packages\System.ValueTuple.4.5.0\lib\net47\System.ValueTuple.dll - - - - - - - + - - - - - - - + Always - - - {7106d2f0-804e-4f73-950c-266ffc096a87} - DsmSuite.Analyzer.Model - - - {04fc583c-392d-47c4-b557-535b01016210} - DsmSuite.Analyzer.Jdeps - - - {c2eb943f-4bb8-47bb-bdc1-7f6b607fb977} - DsmSuite.Common.Util - + + + + + + @@ -95,13 +49,4 @@ - - - \ No newline at end of file diff --git a/DsmSuite.Analyzer.Jdeps.Test/Properties/AssemblyInfo.cs b/DsmSuite.Analyzer.Jdeps.Test/Properties/AssemblyInfo.cs deleted file mode 100644 index fa2d265f..00000000 --- a/DsmSuite.Analyzer.Jdeps.Test/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,34 +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("DsmSuite.Analyzer.Jdeps.Test")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("DsmSuite.Analyzer.Jdeps.Test")] -[assembly: AssemblyCopyright("Copyright © 2018")] -[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)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("c792dc03-4697-4402-9fb9-d1872bdf736d")] - -// 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.*")] diff --git a/DsmSuite.Analyzer.Jdeps.Test/app.config b/DsmSuite.Analyzer.Jdeps.Test/app.config deleted file mode 100644 index 1696df66..00000000 --- a/DsmSuite.Analyzer.Jdeps.Test/app.config +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/DsmSuite.Analyzer.Jdeps.Test/packages.config b/DsmSuite.Analyzer.Jdeps.Test/packages.config deleted file mode 100644 index 7e96b638..00000000 --- a/DsmSuite.Analyzer.Jdeps.Test/packages.config +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/DsmSuite.Analyzer.Jdeps/App.config b/DsmSuite.Analyzer.Jdeps/App.config deleted file mode 100644 index ecdcf8a5..00000000 --- a/DsmSuite.Analyzer.Jdeps/App.config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/DsmSuite.Analyzer.Jdeps/DsmSuite.Analyzer.Jdeps.csproj b/DsmSuite.Analyzer.Jdeps/DsmSuite.Analyzer.Jdeps.csproj index 295dc3dc..f7de0c17 100644 --- a/DsmSuite.Analyzer.Jdeps/DsmSuite.Analyzer.Jdeps.csproj +++ b/DsmSuite.Analyzer.Jdeps/DsmSuite.Analyzer.Jdeps.csproj @@ -1,55 +1,20 @@ - - - - + - Debug + net8.0 x64 - {04FC583C-392D-47C4-B557-535B01016210} Exe - Properties - DsmSuite.Analyzer.Jdeps - DsmSuite.Analyzer.Jdeps - v4.7.2 - 512 - true - + true + MinimumRecommendedRules.ruleset + DsmSuite.Analyzer.Jdeps + DsmSuite.Analyzer.Jdeps + Copyright © 2018 + 1.0.0.0 - - - - - - - + + - - - - + - - - - - - {7106d2f0-804e-4f73-950c-266ffc096a87} - DsmSuite.Analyzer.Model - - - {c2eb943f-4bb8-47bb-bdc1-7f6b607fb977} - DsmSuite.Common.Util - - - - - \ No newline at end of file diff --git a/DsmSuite.Analyzer.Jdeps/Properties/AssemblyInfo.cs b/DsmSuite.Analyzer.Jdeps/Properties/AssemblyInfo.cs deleted file mode 100644 index e6eae402..00000000 --- a/DsmSuite.Analyzer.Jdeps/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,36 +0,0 @@ -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("DsmSuite.Analyzer.Jdeps")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("DsmSuite.Analyzer.Jdeps")] -[assembly: AssemblyCopyright("Copyright © 2018")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] -[assembly: InternalsVisibleTo("DsmSuite.Analyzer.Jdeps.Test")] - -// 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)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("04fc583c-392d-47c4-b557-535b01016210")] - -// 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.*")] diff --git a/DsmSuite.Analyzer.Model.Test/DsmSuite.Analyzer.Model.Test.csproj b/DsmSuite.Analyzer.Model.Test/DsmSuite.Analyzer.Model.Test.csproj index 0fb94d99..3566f020 100644 --- a/DsmSuite.Analyzer.Model.Test/DsmSuite.Analyzer.Model.Test.csproj +++ b/DsmSuite.Analyzer.Model.Test/DsmSuite.Analyzer.Model.Test.csproj @@ -1,88 +1,35 @@ - - - - + - Debug + net8.0 x64 - {C123D876-A195-4220-B3F1-3C3E85720D3F} Library - Properties - DsmSuite.Analyzer.Model.Test - DsmSuite.Analyzer.Model.Test - v4.7.2 - 512 - {3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - 10.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - $(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages - False - UnitTest - + true + MinimumRecommendedRules.ruleset + DsmSuite.Analyzer.Model.Test + DsmSuite.Analyzer.Model.Test + Copyright © 2018 + 1.0.0.0 - - - ..\packages\Castle.Core.5.1.1\lib\net462\Castle.Core.dll - - - ..\packages\Moq.4.20.69\lib\net462\Moq.dll - - - - - ..\packages\System.Runtime.CompilerServices.Unsafe.6.0.0\lib\net461\System.Runtime.CompilerServices.Unsafe.dll - - - ..\packages\System.Threading.Tasks.Extensions.4.5.4\lib\net461\System.Threading.Tasks.Extensions.dll - - - ..\packages\System.ValueTuple.4.5.0\lib\net47\System.ValueTuple.dll - - - - - - False - - - + - - - - - - - - - - - - + Always - - - {7106d2f0-804e-4f73-950c-266ffc096a87} - DsmSuite.Analyzer.Model - - - {6e26eaa0-d0d6-41ab-9aed-61542f7edfc5} - DsmSuite.Common.Model - - - {c2eb943f-4bb8-47bb-bdc1-7f6b607fb977} - DsmSuite.Common.Util - + + + + + + @@ -102,13 +49,4 @@ - - - \ No newline at end of file diff --git a/DsmSuite.Analyzer.Model.Test/Properties/AssemblyInfo.cs b/DsmSuite.Analyzer.Model.Test/Properties/AssemblyInfo.cs deleted file mode 100644 index 5bcd0d10..00000000 --- a/DsmSuite.Analyzer.Model.Test/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,34 +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("DsmSuite.Analyzer.Model.Test")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("DsmSuite.Analyzer.Model.Test")] -[assembly: AssemblyCopyright("Copyright © 2018")] -[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)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("c123d876-a195-4220-b3f1-3c3e85720d3f")] - -// 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.*")] diff --git a/DsmSuite.Analyzer.Model.Test/app.config b/DsmSuite.Analyzer.Model.Test/app.config deleted file mode 100644 index 1696df66..00000000 --- a/DsmSuite.Analyzer.Model.Test/app.config +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/DsmSuite.Analyzer.Model.Test/packages.config b/DsmSuite.Analyzer.Model.Test/packages.config deleted file mode 100644 index 7e96b638..00000000 --- a/DsmSuite.Analyzer.Model.Test/packages.config +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/DsmSuite.Analyzer.Model/DsmSuite.Analyzer.Model.csproj b/DsmSuite.Analyzer.Model/DsmSuite.Analyzer.Model.csproj index 03135a09..330c11d3 100644 --- a/DsmSuite.Analyzer.Model/DsmSuite.Analyzer.Model.csproj +++ b/DsmSuite.Analyzer.Model/DsmSuite.Analyzer.Model.csproj @@ -1,58 +1,20 @@ - - - - + - Debug + net8.0 x64 - {7106D2F0-804E-4F73-950C-266FFC096A87} Library - Properties - DsmSuite.Analyzer.Model - DsmSuite.Analyzer.Model - v4.7.2 - 512 - + true + MinimumRecommendedRules.ruleset + DsmSuite.Analyzer.Model + DsmSuite.Analyzer.Model + Copyright © 2018 + 1.0.0.0 - - - - - - - + + - - - - - - - - - - - - + - - - {6e26eaa0-d0d6-41ab-9aed-61542f7edfc5} - DsmSuite.Common.Model - - - {c2eb943f-4bb8-47bb-bdc1-7f6b607fb977} - DsmSuite.Common.Util - - - - \ No newline at end of file diff --git a/DsmSuite.Analyzer.Model/Properties/AssemblyInfo.cs b/DsmSuite.Analyzer.Model/Properties/AssemblyInfo.cs deleted file mode 100644 index 3df0ec9b..00000000 --- a/DsmSuite.Analyzer.Model/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,36 +0,0 @@ -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("DsmSuite.Analyzer.Model")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("DsmSuite.Analyzer.Model")] -[assembly: AssemblyCopyright("Copyright © 2018")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] -[assembly: InternalsVisibleTo("DsmSuite.Analyzer.Data.Test")] - -// 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)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("7106d2f0-804e-4f73-950c-266ffc096a87")] - -// 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.*")] diff --git a/DsmSuite.Analyzer.Transformations.Test/DsmSuite.Analyzer.Transformations.Test.csproj b/DsmSuite.Analyzer.Transformations.Test/DsmSuite.Analyzer.Transformations.Test.csproj index a14fc78b..7fc0c9ed 100644 --- a/DsmSuite.Analyzer.Transformations.Test/DsmSuite.Analyzer.Transformations.Test.csproj +++ b/DsmSuite.Analyzer.Transformations.Test/DsmSuite.Analyzer.Transformations.Test.csproj @@ -1,62 +1,22 @@ - - - - + - Debug + net8.0 x64 - {8BABA3A9-0BF8-4E2B-8C7B-B2C5A94707A2} Library - Properties - DsmSuite.Analyzer.Transformations.Test - DsmSuite.Analyzer.Transformations.Test - v4.7.2 - 512 - {3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - 10.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - $(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages - False - UnitTest - + true + MinimumRecommendedRules.ruleset + DsmSuite.Analyzer.Transformations.Test + DsmSuite.Analyzer.Transformations.Test + Copyright © 2018 + 1.0.0.0 - - - - - - - - - - - - False - - - - - - - - - - + - - {7106d2f0-804e-4f73-950c-266ffc096a87} - DsmSuite.Analyzer.Model - - - {c2eb943f-4bb8-47bb-bdc1-7f6b607fb977} - DsmSuite.Common.Util - - - {839ef27a-3261-473f-ba78-de18dfa9b7ae} - DsmSuite.Analyzer.Transformations - + + + @@ -76,13 +36,4 @@ - - - \ No newline at end of file diff --git a/DsmSuite.Analyzer.Transformations.Test/Properties/AssemblyInfo.cs b/DsmSuite.Analyzer.Transformations.Test/Properties/AssemblyInfo.cs deleted file mode 100644 index 268fff6c..00000000 --- a/DsmSuite.Analyzer.Transformations.Test/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,34 +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("DsmSuite.Analyzer.MoveElements.Test")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("DsmSuite.Analyzer.MoveElements.Test")] -[assembly: AssemblyCopyright("Copyright © 2018")] -[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)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("8baba3a9-0bf8-4e2b-8c7b-b2c5a94707a2")] - -// 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.*")] diff --git a/DsmSuite.Analyzer.Transformations/DsmSuite.Analyzer.Transformations.csproj b/DsmSuite.Analyzer.Transformations/DsmSuite.Analyzer.Transformations.csproj index b8dde700..e6fb5ddd 100644 --- a/DsmSuite.Analyzer.Transformations/DsmSuite.Analyzer.Transformations.csproj +++ b/DsmSuite.Analyzer.Transformations/DsmSuite.Analyzer.Transformations.csproj @@ -1,56 +1,23 @@ - - - - + - Debug + net8.0 x64 - {839EF27A-3261-473F-BA78-DE18DFA9B7AE} Library - Properties - DsmSuite.Analyzer.Transformations - DsmSuite.Analyzer.Transformations - v4.7.2 - 512 - + true + MinimumRecommendedRules.ruleset + DsmSuite.Analyzer.Transformations + DsmSuite.Analyzer.Transformations + Copyright © 2018 + 1.0.0.0 - - - - - - - - + + - - - - - - + - - - {7106d2f0-804e-4f73-950c-266ffc096a87} - DsmSuite.Analyzer.Model - - - {c2eb943f-4bb8-47bb-bdc1-7f6b607fb977} - DsmSuite.Common.Util - - - - \ No newline at end of file diff --git a/DsmSuite.Analyzer.Transformations/Properties/AssemblyInfo.cs b/DsmSuite.Analyzer.Transformations/Properties/AssemblyInfo.cs deleted file mode 100644 index 7792f9db..00000000 --- a/DsmSuite.Analyzer.Transformations/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,36 +0,0 @@ -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("DsmSuite.Transformer")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("DsmSuite.Transformer")] -[assembly: AssemblyCopyright("Copyright © 2018")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] -[assembly: InternalsVisibleTo("DsmSuite.Transformer.Test")] - -// 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)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("839ef27a-3261-473f-ba78-de18dfa9b7ae")] - -// 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.*")] diff --git a/DsmSuite.Analyzer.Uml.Test/DsmSuite.Analyzer.Uml.Test.csproj b/DsmSuite.Analyzer.Uml.Test/DsmSuite.Analyzer.Uml.Test.csproj index 79a18ae6..65bb5547 100644 --- a/DsmSuite.Analyzer.Uml.Test/DsmSuite.Analyzer.Uml.Test.csproj +++ b/DsmSuite.Analyzer.Uml.Test/DsmSuite.Analyzer.Uml.Test.csproj @@ -1,72 +1,28 @@ - - - - + - Debug + net8.0 x64 - {CB36149D-AC9B-4987-9AA0-A9030ECD2596} Library - Properties - DsmSuite.Analyzer.Uml.Test - DsmSuite.Analyzer.Uml.Test - v4.7.2 - 512 - {3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - 10.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - $(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages - False - UnitTest - + true + MinimumRecommendedRules.ruleset + DsmSuite.Analyzer.Uml.Test + DsmSuite.Analyzer.Uml.Test + Copyright © 2018 + 1.0.0.0 - - - ..\packages\Castle.Core.5.1.1\lib\net462\Castle.Core.dll - - - ..\packages\Moq.4.20.69\lib\net462\Moq.dll - - - - - ..\packages\System.Runtime.CompilerServices.Unsafe.6.0.0\lib\net461\System.Runtime.CompilerServices.Unsafe.dll - - - ..\packages\System.Threading.Tasks.Extensions.4.5.4\lib\net461\System.Threading.Tasks.Extensions.dll - - - ..\packages\System.ValueTuple.4.5.0\lib\net47\System.ValueTuple.dll - - - - - - False - - - + - - - - - - - {c2eb943f-4bb8-47bb-bdc1-7f6b607fb977} - DsmSuite.Common.Util - + - - + @@ -86,13 +42,4 @@ - - - \ No newline at end of file diff --git a/DsmSuite.Analyzer.Uml.Test/Properties/AssemblyInfo.cs b/DsmSuite.Analyzer.Uml.Test/Properties/AssemblyInfo.cs deleted file mode 100644 index 6d178398..00000000 --- a/DsmSuite.Analyzer.Uml.Test/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,34 +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("DsmSuite.Analyzer.Uml.Test")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("DsmSuite.Analyzer.Uml.Test")] -[assembly: AssemblyCopyright("Copyright © 2018")] -[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)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("cb36149d-ac9b-4987-9aa0-a9030ecd2596")] - -// 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.*")] \ No newline at end of file diff --git a/DsmSuite.Analyzer.Uml.Test/app.config b/DsmSuite.Analyzer.Uml.Test/app.config deleted file mode 100644 index 1696df66..00000000 --- a/DsmSuite.Analyzer.Uml.Test/app.config +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/DsmSuite.Analyzer.Uml.Test/packages.config b/DsmSuite.Analyzer.Uml.Test/packages.config deleted file mode 100644 index 7e96b638..00000000 --- a/DsmSuite.Analyzer.Uml.Test/packages.config +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/DsmSuite.Analyzer.Uml/App.config b/DsmSuite.Analyzer.Uml/App.config deleted file mode 100644 index ecdcf8a5..00000000 --- a/DsmSuite.Analyzer.Uml/App.config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/DsmSuite.Analyzer.Uml/DsmSuite.Analyzer.Uml.csproj b/DsmSuite.Analyzer.Uml/DsmSuite.Analyzer.Uml.csproj index 22e7c640..6128ae86 100644 --- a/DsmSuite.Analyzer.Uml/DsmSuite.Analyzer.Uml.csproj +++ b/DsmSuite.Analyzer.Uml/DsmSuite.Analyzer.Uml.csproj @@ -1,58 +1,26 @@ - - - - + - Debug + net8.0 x64 - {20C7D1B2-F006-431A-99CD-AF4BB3A2DD69} Exe - Properties - DsmSuite.Analyzer.Uml - DsmSuite.Analyzer.Uml - v4.7.2 - 512 - true - + true + MinimumRecommendedRules.ruleset + DsmSuite.Analyzer.Uml + DsmSuite.Analyzer.Uml + Copyright © 2018 + 1.0.0.0 libs\Interop.EA.dll True - - - - - - - - - - - + + - + - - - {7106d2f0-804e-4f73-950c-266ffc096a87} - DsmSuite.Analyzer.Model - - - {c2eb943f-4bb8-47bb-bdc1-7f6b607fb977} - DsmSuite.Common.Util - - - - \ No newline at end of file diff --git a/DsmSuite.Analyzer.Uml/Properties/AssemblyInfo.cs b/DsmSuite.Analyzer.Uml/Properties/AssemblyInfo.cs deleted file mode 100644 index 735781c1..00000000 --- a/DsmSuite.Analyzer.Uml/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,36 +0,0 @@ -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("DsmSuite.Analyzer.Uml")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("DsmSuite.Analyzer.Uml")] -[assembly: AssemblyCopyright("Copyright © 2018")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] -[assembly: InternalsVisibleTo("DsmSuite.Analyzer.Uml.Test")] - -// 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)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("20c7d1b2-f006-431a-99cd-af4bb3a2dd69")] - -// 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.*")] diff --git a/DsmSuite.Common.Model.Test/DsmSuite.Common.Model.Test.csproj b/DsmSuite.Common.Model.Test/DsmSuite.Common.Model.Test.csproj index 0978a4aa..068f7bb6 100644 --- a/DsmSuite.Common.Model.Test/DsmSuite.Common.Model.Test.csproj +++ b/DsmSuite.Common.Model.Test/DsmSuite.Common.Model.Test.csproj @@ -1,50 +1,20 @@ - - - - + - Debug + net8.0 x64 - {1DCCE734-2B1F-4EEA-9A88-85BCFE06A1DF} Library - Properties - DsmSuite.Common.Model.Test - DsmSuite.Common.Model.Test - v4.7.2 - 512 - {3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - 10.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - $(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages - False - UnitTest - + true + MinimumRecommendedRules.ruleset + DsmSuite.Common.Model.Test + DsmSuite.Common.Model.Test + Copyright © 2019 + 1.0.0.0 - - - - - - - - - - - - - - - - - - + - - {6e26eaa0-d0d6-41ab-9aed-61542f7edfc5} - DsmSuite.Common.Model - + @@ -64,6 +34,4 @@ - - \ No newline at end of file diff --git a/DsmSuite.Common.Model.Test/Properties/AssemblyInfo.cs b/DsmSuite.Common.Model.Test/Properties/AssemblyInfo.cs deleted file mode 100644 index 632a7677..00000000 --- a/DsmSuite.Common.Model.Test/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,34 +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("DsmSuite.Common.Model.Test")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("DsmSuite.Common.Model.Test")] -[assembly: AssemblyCopyright("Copyright © 2019")] -[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)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("1dcce734-2b1f-4eea-9a88-85bcfe06a1df")] - -// 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.*")] diff --git a/DsmSuite.Common.Model/DsmSuite.Common.Model.csproj b/DsmSuite.Common.Model/DsmSuite.Common.Model.csproj index 3f9f4ea0..39dc07cb 100644 --- a/DsmSuite.Common.Model/DsmSuite.Common.Model.csproj +++ b/DsmSuite.Common.Model/DsmSuite.Common.Model.csproj @@ -1,42 +1,19 @@ - - - - + - Debug + net8.0 x64 - {6E26EAA0-D0D6-41AB-9AED-61542F7EDFC5} Library - Properties - DsmSuite.Common.Model - DsmSuite.Common.Model - v4.7.2 - 512 - + true + MinimumRecommendedRules.ruleset + DsmSuite.Common.Model + DsmSuite.Common.Model + Copyright © 2019 + 1.0.0.0 - - - - - - - - + - - - - - + - - - {c2eb943f-4bb8-47bb-bdc1-7f6b607fb977} - DsmSuite.Common.Util - - - - \ No newline at end of file diff --git a/DsmSuite.Common.Model/Properties/AssemblyInfo.cs b/DsmSuite.Common.Model/Properties/AssemblyInfo.cs deleted file mode 100644 index 29a84ea0..00000000 --- a/DsmSuite.Common.Model/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,34 +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("DsmSuite.Common.Model")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("DsmSuite.Common.Model")] -[assembly: AssemblyCopyright("Copyright © 2019")] -[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)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("6e26eaa0-d0d6-41ab-9aed-61542f7edfc5")] - -// 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.*")] diff --git a/DsmSuite.Common.Util.Test/DsmSuite.Common.Util.Test.csproj b/DsmSuite.Common.Util.Test/DsmSuite.Common.Util.Test.csproj index 8bfaa558..fe03bf9e 100644 --- a/DsmSuite.Common.Util.Test/DsmSuite.Common.Util.Test.csproj +++ b/DsmSuite.Common.Util.Test/DsmSuite.Common.Util.Test.csproj @@ -1,78 +1,16 @@ - - - - + - Debug + net8.0 x64 - {2C697652-F1AA-4335-8973-C5588840B8A6} Library - Properties - DsmSuite.Common.Util.Test - DsmSuite.Common.Util.Test - v4.7.2 - 512 - {3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - 10.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - $(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages - False - UnitTest - + DsmSuite.Common.Util.Test + DsmSuite.Common.Util.Test + Copyright © 2019 + 1.0.0.0 + true - - ..\packages\Castle.Core.4.2.1\lib\net45\Castle.Core.dll - True - - - ..\packages\Moq.4.7.145\lib\net45\Moq.dll - True - - - - - ..\packages\System.Threading.Tasks.Extensions.4.0.0\lib\portable-net45+win8+wp8+wpa81\System.Threading.Tasks.Extensions.dll - True - - - ..\packages\System.ValueTuple.4.4.0\lib\netstandard1.0\System.ValueTuple.dll - True - - - - - - - - - - - - False - - - - - - - - - - - - - - - - - - {c2eb943f-4bb8-47bb-bdc1-7f6b607fb977} - DsmSuite.Common.Util - - - - + @@ -92,12 +30,7 @@ - - - - mkdir c:\Temp\TestDir -copy /Y $(ProjectDir)TestFile.txt c:\Temp\TestFileCopy.txt -copy /Y $(ProjectDir)TestFile.txt c:\Temp\TestFileCopyAgain.txt -copy /Y $(ProjectDir)TestFile.zip c:\Temp\TestFileCopy.zip - + + + \ No newline at end of file diff --git a/DsmSuite.Common.Util.Test/FilePathTest.cs b/DsmSuite.Common.Util.Test/FilePathTest.cs index dbedbb8a..1b3fbe62 100644 --- a/DsmSuite.Common.Util.Test/FilePathTest.cs +++ b/DsmSuite.Common.Util.Test/FilePathTest.cs @@ -6,6 +6,7 @@ namespace DsmSuite.Common.Util.Test [TestClass] public class FilePathTest { + // todo Fix hardcoded temp paths. [TestMethod] public void WhenResolveFileIsCalledWithAnAbsoluteFilenameThenTheAbsoluteFileNameIsReturned() { diff --git a/DsmSuite.Common.Util.Test/Properties/AssemblyInfo.cs b/DsmSuite.Common.Util.Test/Properties/AssemblyInfo.cs deleted file mode 100644 index 63318d69..00000000 --- a/DsmSuite.Common.Util.Test/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,34 +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("DsmSuite.Common.Util.Test")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("DsmSuite.Common.Util.Test")] -[assembly: AssemblyCopyright("Copyright © 2019")] -[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)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("2c697652-f1aa-4335-8973-c5588840b8a6")] - -// 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.*")] diff --git a/DsmSuite.Common.Util.Test/TestFile.txt b/DsmSuite.Common.Util.Test/TestFile.txt deleted file mode 100644 index d9dcb429..00000000 --- a/DsmSuite.Common.Util.Test/TestFile.txt +++ /dev/null @@ -1,4 +0,0 @@ -line0 -line1 -line2 -line3 \ No newline at end of file diff --git a/DsmSuite.Common.Util.Test/TestFile.zip b/DsmSuite.Common.Util.Test/TestFile.zip deleted file mode 100644 index 9ac9304273a690910b275f83db5425409df010a8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 142 zcmWIWW@Zs#U|`^2Fj!yb|9TF~FAz@_h - - - + - Debug + net8.0 x64 - {C2EB943F-4BB8-47BB-BDC1-7F6B607FB977} Library - Properties - DsmSuite.Common.Util - DsmSuite.Common.Util - v4.7.2 - 512 - + true + DsmSuite.Common.Util + DsmSuite.Common.Util + Copyright © 2019 + 1.0.0.0 - - - - - - - - - + - - - - - - - - - - - - - \ No newline at end of file diff --git a/DsmSuite.Common.Util/Properties/AssemblyInfo.cs b/DsmSuite.Common.Util/Properties/AssemblyInfo.cs deleted file mode 100644 index 652a034e..00000000 --- a/DsmSuite.Common.Util/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,34 +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("DsmSuite.Common.Util")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("DsmSuite.Common.Util")] -[assembly: AssemblyCopyright("Copyright © 2019")] -[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)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("c2eb943f-4bb8-47bb-bdc1-7f6b607fb977")] - -// 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.*")] diff --git a/DsmSuite.DsmViewer.Application.Test/DsmSuite.DsmViewer.Application.Test.csproj b/DsmSuite.DsmViewer.Application.Test/DsmSuite.DsmViewer.Application.Test.csproj index 9427d362..4b1174a3 100644 --- a/DsmSuite.DsmViewer.Application.Test/DsmSuite.DsmViewer.Application.Test.csproj +++ b/DsmSuite.DsmViewer.Application.Test/DsmSuite.DsmViewer.Application.Test.csproj @@ -1,125 +1,41 @@ - - - - + - Debug + net8.0-windows x64 - {45B1889F-B934-4C5C-8AC4-35B28F7CF37E} Library - Properties - DsmSuite.DsmViewer.Application.Test - DsmSuite.DsmViewer.Application.Test - v4.7.2 - 512 - {3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - 10.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - $(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages - False - UnitTest - + true + MinimumRecommendedRules.ruleset + DsmSuite.DsmViewer.Application.Test + DsmSuite.DsmViewer.Application.Test + Copyright © 2019 + 1.0.0.0 + 1.0.0.0 - - - ..\packages\Castle.Core.5.1.1\lib\net462\Castle.Core.dll - - - ..\packages\Moq.4.20.69\lib\net462\Moq.dll - - - - - ..\packages\System.Runtime.CompilerServices.Unsafe.6.0.0\lib\net461\System.Runtime.CompilerServices.Unsafe.dll - - - ..\packages\System.Threading.Tasks.Extensions.4.5.4\lib\net461\System.Threading.Tasks.Extensions.dll - - - ..\packages\System.ValueTuple.4.5.0\lib\net47\System.ValueTuple.dll - - - - - - False - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + Always - + Always - - - {7106d2f0-804e-4f73-950c-266ffc096a87} - DsmSuite.Analyzer.Model - - - {6e26eaa0-d0d6-41ab-9aed-61542f7edfc5} - DsmSuite.Common.Model - - - {c2eb943f-4bb8-47bb-bdc1-7f6b607fb977} - DsmSuite.Common.Util - - - {f864bd74-a7e3-4349-be07-f0725a2ea589} - DsmSuite.DsmViewer.Application - - - {ae2405c6-54ca-43b1-bcf0-36b7010c0f0e} - DsmSuite.DsmViewer.Model - + + + + + - - + + @@ -139,13 +55,4 @@ - - - \ No newline at end of file diff --git a/DsmSuite.DsmViewer.Application.Test/Properties/AssemblyInfo.cs b/DsmSuite.DsmViewer.Application.Test/Properties/AssemblyInfo.cs deleted file mode 100644 index c1b522aa..00000000 --- a/DsmSuite.DsmViewer.Application.Test/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,35 +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("DsmSuite.DsmViewer.Application.Test")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("DsmSuite.DsmViewer.Application.Test")] -[assembly: AssemblyCopyright("Copyright © 2019")] -[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)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("45b1889f-b934-4c5c-8ac4-35b28f7cf37e")] - -// 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/DsmSuite.DsmViewer.Application.Test/app.config b/DsmSuite.DsmViewer.Application.Test/app.config deleted file mode 100644 index e3267e1c..00000000 --- a/DsmSuite.DsmViewer.Application.Test/app.config +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/DsmSuite.DsmViewer.Application.Test/packages.config b/DsmSuite.DsmViewer.Application.Test/packages.config deleted file mode 100644 index 2433564c..00000000 --- a/DsmSuite.DsmViewer.Application.Test/packages.config +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/DsmSuite.DsmViewer.Application/Actions/Management/ActionManager.cs b/DsmSuite.DsmViewer.Application/Actions/Management/ActionManager.cs index 0f096b7e..9b0579bd 100644 --- a/DsmSuite.DsmViewer.Application/Actions/Management/ActionManager.cs +++ b/DsmSuite.DsmViewer.Application/Actions/Management/ActionManager.cs @@ -3,7 +3,6 @@ using System.Collections.Generic; using DsmSuite.Common.Util; using DsmSuite.DsmViewer.Application.Interfaces; -using System.Runtime.InteropServices.WindowsRuntime; namespace DsmSuite.DsmViewer.Application.Actions.Management { diff --git a/DsmSuite.DsmViewer.Application/DsmSuite.DsmViewer.Application.csproj b/DsmSuite.DsmViewer.Application/DsmSuite.DsmViewer.Application.csproj index aad11881..1774c988 100644 --- a/DsmSuite.DsmViewer.Application/DsmSuite.DsmViewer.Application.csproj +++ b/DsmSuite.DsmViewer.Application/DsmSuite.DsmViewer.Application.csproj @@ -1,98 +1,23 @@ - - - - + - Debug + net8.0-windows x64 - {F864BD74-A7E3-4349-BE07-F0725A2EA589} Library - Properties - DsmSuite.DsmViewer.Application - DsmSuite.DsmViewer.Application - v4.7.2 - 512 - + true + MinimumRecommendedRules.ruleset + DsmSuite.DsmViewer.Application + DsmSuite.DsmViewer.Application + Copyright © 2019 + 1.0.0.0 + 1.0.0.0 - - - - - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - {7106d2f0-804e-4f73-950c-266ffc096a87} - DsmSuite.Analyzer.Model - - - {6e26eaa0-d0d6-41ab-9aed-61542f7edfc5} - DsmSuite.Common.Model - - - {c2eb943f-4bb8-47bb-bdc1-7f6b607fb977} - DsmSuite.Common.Util - - - {ae2405c6-54ca-43b1-bcf0-36b7010c0f0e} - DsmSuite.DsmViewer.Model - - - - - \ No newline at end of file + diff --git a/DsmSuite.DsmViewer.Application/Properties/AssemblyInfo.cs b/DsmSuite.DsmViewer.Application/Properties/AssemblyInfo.cs deleted file mode 100644 index d467424b..00000000 --- a/DsmSuite.DsmViewer.Application/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,35 +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("DsmSuite.DsmViewer.Application")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("DsmSuite.DsmViewer.Application")] -[assembly: AssemblyCopyright("Copyright © 2019")] -[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)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("f864bd74-a7e3-4349-be07-f0725a2ea589")] - -// 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/DsmSuite.DsmViewer.Model.Test/DsmSuite.DsmViewer.Model.Test.csproj b/DsmSuite.DsmViewer.Model.Test/DsmSuite.DsmViewer.Model.Test.csproj index af0a7005..b477759e 100644 --- a/DsmSuite.DsmViewer.Model.Test/DsmSuite.DsmViewer.Model.Test.csproj +++ b/DsmSuite.DsmViewer.Model.Test/DsmSuite.DsmViewer.Model.Test.csproj @@ -1,85 +1,32 @@ - - - - + - {32E0E5F6-3AA7-4E8B-8239-EB613C33CCC4} + net8.0 Library - Properties - DsmSuite.DsmViewer.Model.Test - DsmSuite.DsmViewer.Model.Test - v4.7.2 - 512 - {3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - 10.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - $(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages - False - UnitTest - + true + MinimumRecommendedRules.ruleset + DsmSuite.DsmViewer.Model.Test + DsmSuite.DsmViewer.Model.Test + Copyright © 2019 + 1.0.0.0 - - - ..\packages\Castle.Core.4.2.1\lib\net45\Castle.Core.dll - True - - - ..\packages\Moq.4.7.145\lib\net45\Moq.dll - True - - - - - ..\packages\System.Threading.Tasks.Extensions.4.0.0\lib\portable-net45+win8+wp8+wpa81\System.Threading.Tasks.Extensions.dll - True - - - ..\packages\System.ValueTuple.4.4.0\lib\netstandard1.0\System.ValueTuple.dll - True - - - - - - False - - - + - - - - - - - - - + - - {6e26eaa0-d0d6-41ab-9aed-61542f7edfc5} - DsmSuite.Common.Model - - - {c2eb943f-4bb8-47bb-bdc1-7f6b607fb977} - DsmSuite.Common.Util - - - {ae2405c6-54ca-43b1-bcf0-36b7010c0f0e} - DsmSuite.DsmViewer.Model - + + + - - + Always Designer @@ -102,13 +49,4 @@ - - - \ No newline at end of file diff --git a/DsmSuite.DsmViewer.Model.Test/Properties/AssemblyInfo.cs b/DsmSuite.DsmViewer.Model.Test/Properties/AssemblyInfo.cs deleted file mode 100644 index c48a1f11..00000000 --- a/DsmSuite.DsmViewer.Model.Test/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,34 +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("DsmSuite.DsmViewer.Model.Test")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("DsmSuite.DsmViewer.Model.Test")] -[assembly: AssemblyCopyright("Copyright © 2019")] -[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)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("32e0e5f6-3aa7-4e8b-8239-eb613c33ccc4")] - -// 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.*")] diff --git a/DsmSuite.DsmViewer.Model/DsmSuite.DsmViewer.Model.csproj b/DsmSuite.DsmViewer.Model/DsmSuite.DsmViewer.Model.csproj index 752de267..bda33740 100644 --- a/DsmSuite.DsmViewer.Model/DsmSuite.DsmViewer.Model.csproj +++ b/DsmSuite.DsmViewer.Model/DsmSuite.DsmViewer.Model.csproj @@ -1,73 +1,19 @@ - - - - + - {AE2405C6-54CA-43B1-BCF0-36B7010C0F0E} + net8.0 Library - Properties - DsmSuite.DsmViewer.Model - DsmSuite.DsmViewer.Model - v4.7.2 - 512 - + true + MinimumRecommendedRules.ruleset + DsmSuite.DsmViewer.Model + DsmSuite.DsmViewer.Model + Copyright © 2019 + 1.0.0.0 - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - + - - - {7106D2F0-804E-4F73-950C-266FFC096A87} - DsmSuite.Analyzer.Model - - - {6e26eaa0-d0d6-41ab-9aed-61542f7edfc5} - DsmSuite.Common.Model - - - {c2eb943f-4bb8-47bb-bdc1-7f6b607fb977} - DsmSuite.Common.Util - - - - - - \ No newline at end of file + diff --git a/DsmSuite.DsmViewer.Model/Properties/AssemblyInfo.cs b/DsmSuite.DsmViewer.Model/Properties/AssemblyInfo.cs deleted file mode 100644 index 47aaf1e4..00000000 --- a/DsmSuite.DsmViewer.Model/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,34 +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("DsmSuite.DsmViewer.Model")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("DsmSuite.DsmViewer.Model")] -[assembly: AssemblyCopyright("Copyright © 2019")] -[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)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("ae2405c6-54ca-43b1-bcf0-36b7010c0f0e")] - -// 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.*")] diff --git a/DsmSuite.DsmViewer.View/App.config b/DsmSuite.DsmViewer.View/App.config deleted file mode 100644 index ecdcf8a5..00000000 --- a/DsmSuite.DsmViewer.View/App.config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/DsmSuite.DsmViewer.View/DsmSuite.DsmViewer.View.csproj b/DsmSuite.DsmViewer.View/DsmSuite.DsmViewer.View.csproj index ab55b7bc..4817a0cb 100644 --- a/DsmSuite.DsmViewer.View/DsmSuite.DsmViewer.View.csproj +++ b/DsmSuite.DsmViewer.View/DsmSuite.DsmViewer.View.csproj @@ -1,264 +1,28 @@ - - - - + - Debug + net8.0-windows x64 - {DBF6C849-8506-444C-BE20-ECA87CA4A35C} WinExe - Properties - DsmSuite.DsmViewer.View - DsmSuite.DsmViewer.View - v4.7.2 - 512 - {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - 4 - true - + true + true + true + true + MinimumRecommendedRules.ruleset - - - - - - - - - - - - - - - - - 4.0 - - - - - + - - MSBuild:Compile - Designer - - - RelationEditDialog.xaml - - - SnapshotCreateDialog.xaml - - - - - - MatrixMetricsSelectorView.xaml - - - - MatrixTopCornerView.xaml - - - - - - MatrixView.xaml - - - - LegendView.xaml - - - ElementSearchBox.xaml - - - ToolView.xaml - - - - - - - - - - - - - - - - ElementEditDialog.xaml - - - ElementListView.xaml - - - ActionListView.xaml - - - ProgressWindow.xaml - - - RelationListView.xaml - - - SettingsDialog.xaml - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - MSBuild:Compile - Designer - - - App.xaml - Code - - - MainWindow.xaml - Code - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - MSBuild:Compile - Designer - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - - - Code - - - True - True - Resources.resx - - - True - Settings.settings - True - - - ResXFileCodeGenerator - Resources.Designer.cs - - - SettingsSingleFileGenerator - Settings.Designer.cs - - + + + + - - {c2eb943f-4bb8-47bb-bdc1-7f6b607fb977} - DsmSuite.Common.Util - - - {f864bd74-a7e3-4349-be07-f0725a2ea589} - DsmSuite.DsmViewer.Application - - - {ae2405c6-54ca-43b1-bcf0-36b7010c0f0e} - DsmSuite.DsmViewer.Model - - - {0b3fd709-0509-42fb-9852-f0221283255e} - DsmSuite.DsmViewer.ViewModel - + - + - - - \ No newline at end of file diff --git a/DsmSuite.DsmViewer.View/DsmSuite.DsmViewer.View_tcffgxdf_wpftmp.csproj b/DsmSuite.DsmViewer.View/DsmSuite.DsmViewer.View_tcffgxdf_wpftmp.csproj deleted file mode 100644 index 97352787..00000000 --- a/DsmSuite.DsmViewer.View/DsmSuite.DsmViewer.View_tcffgxdf_wpftmp.csproj +++ /dev/null @@ -1,195 +0,0 @@ - - - - - - Debug - x64 - {DBF6C849-8506-444C-BE20-ECA87CA4A35C} - WinExe - Properties - DsmSuite.DsmViewer.View - DsmSuite.DsmViewer.View - v4.7.2 - 512 - {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - 4 - true - - - - - - - - - - - RelationEditDialog.xaml - - - SnapshotCreateDialog.xaml - - - - - - MatrixMetricsSelectorView.xaml - - - - MatrixTopCornerView.xaml - - - - - - MatrixView.xaml - - - - LegendView.xaml - - - ElementSearchBox.xaml - - - ToolView.xaml - - - - - - - - - - - - - - - - ElementEditDialog.xaml - - - ElementListView.xaml - - - ActionListView.xaml - - - ProgressWindow.xaml - - - RelationListView.xaml - - - SettingsDialog.xaml - - - App.xaml - Code - - - MainWindow.xaml - Code - - - - - Code - - - True - True - Resources.resx - - - True - Settings.settings - True - - - ResXFileCodeGenerator - Resources.Designer.cs - - - SettingsSingleFileGenerator - Settings.Designer.cs - - - - - - - - - {c2eb943f-4bb8-47bb-bdc1-7f6b607fb977} - DsmSuite.Common.Util - - - {f864bd74-a7e3-4349-be07-f0725a2ea589} - DsmSuite.DsmViewer.Application - - - {ae2405c6-54ca-43b1-bcf0-36b7010c0f0e} - DsmSuite.DsmViewer.Model - - - {0b3fd709-0509-42fb-9852-f0221283255e} - DsmSuite.DsmViewer.ViewModel - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/DsmSuite.DsmViewer.View/Properties/AssemblyInfo.cs b/DsmSuite.DsmViewer.View/Properties/AssemblyInfo.cs deleted file mode 100644 index ab9b21f2..00000000 --- a/DsmSuite.DsmViewer.View/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,52 +0,0 @@ -using System.Reflection; -using System.Runtime.InteropServices; -using System.Windows; - -// 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("DsmSuite.DsmViewer.View")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("DsmSuite.DsmViewer.View")] -[assembly: AssemblyCopyright("Copyright © 2019")] -[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)] - -//In order to begin building localizable applications, set -//CultureYouAreCodingWith in your .csproj file -//inside a . For example, if you are using US english -//in your source files, set the to en-US. Then uncomment -//the NeutralResourceLanguage attribute below. Update the "en-US" in -//the line below to match the UICulture setting in the project file. - -//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)] - - -[assembly: ThemeInfo( - ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located - //(used if a resource is not found in the page, - // or application resource dictionaries) - ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located - //(used if a resource is not found in the page, - // app, or any theme specific resource dictionaries) -)] - - -// 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.*")] diff --git a/DsmSuite.DsmViewer.View/partition.design b/DsmSuite.DsmViewer.View/partition.design deleted file mode 100644 index 5b23a40e95e2ebc688abc8960fc4e3838ecb2515..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2964 zcmai$dr(wW9LIl`#oY$XYb}UO4=h1U0zwm&O!u-FDO->X`63%pTrqhBitF%@8ULW> zPQomOH`d-rqC`JV6j zo!>dT_qT9m(o3%=ELaqvg@d1EDnNn*UV&<-Vc_^6ViIDvCk)l zc3U2PCuUki#PrC6{`-^@F_#zkg}q>J{b23gZQs^4Hube#nZLX3A@Kgqxs=!3wy`Pa z^xDR&9j9i*{k!GUjvIsaOmkWH-m2BNUsD%tzL*^CY>23f&AJ}laieJ@w5QLpa8hMk zegEH%iOqjRU&xI4Xt3va&}UZ~v#$Ssd7$`egK)=UFBMxz1>y5bMc!S zYP$NnT?v22p5M{x%)Qg{n`R-&6k$Ts$qU2x-hXzEYtoYV_9L#QYx&n2pRPT6>F_<< z?RvSad;fT3MJ=&=vJWgsj&J{Q?f3T1uE?SEOy<%*){zy4xigtb1CZX`PnJ% z-8pARGH%rzonJKcO@FVw-x}uJ6kB%F8aD8STvpm1sioqmCR^!&x!Y>rwQXp!-3l(* zSVL;ev*+*Fye$?*z0EaS1LTn14k*s%_FKsFS@G>C&Ts0^7k3p9W=V0(@aEdYZRd`#`OB;i{rGr3HK!JcH(2Mlsm~W|~{-cHC32@@FMZBjyimei$KtR&!`F_oP{b|?;J6V)Y5l7j{ zVgdn4tLJ-)`#wg#PL^8}?DfG>jgAu&2uNBz-_zW8GWqi3KrK3W za2LZNY86lr)av^F#C>U(@zm1UrQZ)*DcJQr$dW0V$~-fq?q?{dLS2gLJX{x-^EARF{VFx>$ZaNcr^$^z+-veKq`| z;x8Wsso}TN7b!@OKtTO?yScAh3#QGYa6Cxyy0xdMRX{<&;-$ji4euM>Aru28o?>7# z6$9z`GS9(RI=$Y<3j?tzuz(}ZvJ}f23oi~ z%)_T7oMSz<b7I=QdH-ol61a3X|Rd)WMfYe6l2-- txdgED{t04mVe4?ZEx0^@LM*3@P#_Z*d3d}6vthlK!YZ(6&|;uc`X4!sJ?H=c diff --git a/DsmSuite.DsmViewer.View/show cycles.design b/DsmSuite.DsmViewer.View/show cycles.design deleted file mode 100644 index 8ad3ca100e3826776c8c8f7d77165ac8b9035da7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3152 zcmai$drTBp6vof6$|kHj+VzzfiB?+c3quvDgaW(ZB8ozxi-?Lv6a)kjs4jv?V;gKI zEmTb(YHZb}J_semSgOV%^+Br`sz9k}5vwS%DhSpGyX;QSxpx<5{bPj8>~HSO=``(lLs{5{%4B$ zVvXN7jXQ^xZnOC>{x~(e(q7zM{ArxgyShALddCP|!8wkBE7#tcQdXbRTwL>4s@O^^ES&$<#EdF{c*uGYKh4Yrm;x9v%?rg!^CL8~T~ zCHy*RG)HklRzv%j3I1ojV=K)&ZEf9E)+hD_$Nz|(+5L67wxB#BO0mF{;F%dML-OJ) z%?FdN&+6IrDCqc`)fxGz&6!L6&*t?WJ)Y6L@a@XoD;?vSwm+?iZd`G1_vucPchx*^ zT*KXgd(Vuya)d#Jr7Zhh8u(-X3^Uho?J z$3QGZK?Hb#4|r<*HQG5EeLx3vfPP_#P$HDYM8FJ)gK3b4pLuv?D9Fs%?flA!?B zKrT!GKiC4LW2R088DJSi&E`XMKof>?PZ$Y_;A2F69_lCHgy}dc1=itH97q5o=isfx zU#d8IF@)W4l%^Ob^zKRq9?29$~WNpa4c=0MV1i5{Mo!N?Ov@WY7}`P;Sr> z#9^<fHuqnJo&cv zd%}2d9nO)5L4&npq+Z!(kgT$3)F6sRceEL(l?fCm8Wr|*WC9(T%eR{QTIE9qsh|1w z$(P*FfsPuS2n7lxt(xx%?mHL`li6c*&_Kfrcm-RX0tG%csQI4azA}aL5F^!K5@5Uv ze1=`riUI|aK+X3w_Z4`&`wbf5D**%N-~q)NJjKI?0bpHfeznX`_)d`iW2>h0tJ#* z&G$U_9Yn)yEVF1kmDtZRiwP7+S~cH#?mLcrt!!_#aKH`wWlAR|P#|g5e1GGk{`JOTH|jBv0~vjx4FDdjMXVU6;A16&K1*i_Q#lfevl}3mGzj z0{5%#K_mC=lUof^pS%YhoVbl)H?=BIA=snp+roY6lrd{5cj@=T9qC)^6ev(VcUxV) zV8pTKnFGU0hC`@TfeOKS)p*;uubszBo9f{4Dv&nSDNvyL{M4}h9tp1Zqz2z* z>^->(eCA;dlmqLr_{c}2IJBcrzkyfX7M!z~)j~WjGW7vXju*fN{Pctz@r)KAI}8G0 zIaX9u&g9~KIT+x5{LIH7v+*e$=SabpEbPz5R#HS@Up~yo)>Zhlgeg~}ZWH!KqIx|l zN$1`Z18Z5&8tln~jab!vD*$YLaROglSTatx4wnaz%iiEQB5|IRpBH#hSPm{^1>Ovh IeW6tNAEPUSFaQ7m diff --git a/DsmSuite.DsmViewer.ViewModel.Test/DsmSuite.DsmViewer.ViewModel.Test.csproj b/DsmSuite.DsmViewer.ViewModel.Test/DsmSuite.DsmViewer.ViewModel.Test.csproj index 96bcc1b6..eff157ee 100644 --- a/DsmSuite.DsmViewer.ViewModel.Test/DsmSuite.DsmViewer.ViewModel.Test.csproj +++ b/DsmSuite.DsmViewer.ViewModel.Test/DsmSuite.DsmViewer.ViewModel.Test.csproj @@ -1,78 +1,34 @@ - - - - - + - Debug + net8.0-windows x64 - {7C213A5A-81E9-4C10-A3C4-80830D0954D4} Library - Properties - DsmSuite.DsmViewer.ViewModel.Test - DsmSuite.DsmViewer.ViewModel.Test - v4.7.2 - 512 - {3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - 10.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - $(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages - False - UnitTest - - - + true + MinimumRecommendedRules.ruleset + DsmSuite.DsmViewer.ViewModel.Test + DsmSuite.DsmViewer.ViewModel.Test + Copyright © 2019 + 1.0.0.0 - - - ..\packages\Castle.Core.5.1.1\lib\net462\Castle.Core.dll - - - ..\packages\Moq.4.20.69\lib\net462\Moq.dll - - - - - ..\packages\System.Runtime.CompilerServices.Unsafe.6.0.0\lib\net461\System.Runtime.CompilerServices.Unsafe.dll - - - ..\packages\System.Threading.Tasks.Extensions.4.5.4\lib\net461\System.Threading.Tasks.Extensions.dll - - - - - - - + - - - - - - - {c2eb943f-4bb8-47bb-bdc1-7f6b607fb977} - DsmSuite.Common.Util - + - {ae2405c6-54ca-43b1-bcf0-36b7010c0f0e} - DsmSuite.DsmViewer.Model + true - {0b3fd709-0509-42fb-9852-f0221283255e} - DsmSuite.DsmViewer.ViewModel + true - - + @@ -92,21 +48,4 @@ - - - - - - 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/DsmSuite.DsmViewer.ViewModel.Test/Properties/AssemblyInfo.cs b/DsmSuite.DsmViewer.ViewModel.Test/Properties/AssemblyInfo.cs deleted file mode 100644 index 21f046b3..00000000 --- a/DsmSuite.DsmViewer.ViewModel.Test/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,34 +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("DsmSuite.DsmViewer.ViewModel.Test")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("DsmSuite.DsmViewer.ViewModel.Test")] -[assembly: AssemblyCopyright("Copyright © 2019")] -[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)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("7c213a5a-81e9-4c10-a3c4-80830d0954d4")] - -// 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.*")] diff --git a/DsmSuite.DsmViewer.ViewModel.Test/UnitTest1.cs b/DsmSuite.DsmViewer.ViewModel.Test/UnitTest1.cs deleted file mode 100644 index 18138d52..00000000 --- a/DsmSuite.DsmViewer.ViewModel.Test/UnitTest1.cs +++ /dev/null @@ -1,13 +0,0 @@ -using Microsoft.VisualStudio.TestTools.UnitTesting; - -namespace DsmSuite.DsmViewer.ViewModel.Test -{ - [TestClass] - public class UnitTest1 - { - [TestMethod] - public void TestMethod1() - { - } - } -} diff --git a/DsmSuite.DsmViewer.ViewModel.Test/app.config b/DsmSuite.DsmViewer.ViewModel.Test/app.config deleted file mode 100644 index 1696df66..00000000 --- a/DsmSuite.DsmViewer.ViewModel.Test/app.config +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/DsmSuite.DsmViewer.ViewModel.Test/packages.config b/DsmSuite.DsmViewer.ViewModel.Test/packages.config deleted file mode 100644 index c0ba7c26..00000000 --- a/DsmSuite.DsmViewer.ViewModel.Test/packages.config +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/DsmSuite.DsmViewer.ViewModel/DsmSuite.DsmViewer.ViewModel.csproj b/DsmSuite.DsmViewer.ViewModel/DsmSuite.DsmViewer.ViewModel.csproj index f3e7fa3a..82c25aa4 100644 --- a/DsmSuite.DsmViewer.ViewModel/DsmSuite.DsmViewer.ViewModel.csproj +++ b/DsmSuite.DsmViewer.ViewModel/DsmSuite.DsmViewer.ViewModel.csproj @@ -1,92 +1,24 @@ - - - - + - Debug + net8.0-windows x64 - {0B3FD709-0509-42FB-9852-F0221283255E} Library - Properties - DsmSuite.DsmViewer.ViewModel - DsmSuite.DsmViewer.ViewModel - v4.7.2 - 512 - + true + true + true + true + MinimumRecommendedRules.ruleset + DsmSuite.DsmViewer.ViewModel + DsmSuite.DsmViewer.ViewModel + Copyright © 2019 + 1.0.0.0 - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - {c2eb943f-4bb8-47bb-bdc1-7f6b607fb977} - DsmSuite.Common.Util - - - {f864bd74-a7e3-4349-be07-f0725a2ea589} - DsmSuite.DsmViewer.Application - - - {ae2405c6-54ca-43b1-bcf0-36b7010c0f0e} - DsmSuite.DsmViewer.Model - - - - \ No newline at end of file diff --git a/DsmSuite.DsmViewer.ViewModel/Properties/AssemblyInfo.cs b/DsmSuite.DsmViewer.ViewModel/Properties/AssemblyInfo.cs deleted file mode 100644 index 9e0555be..00000000 --- a/DsmSuite.DsmViewer.ViewModel/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,34 +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("DsmSuite.DsmViewer.ViewModel")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("DsmSuite.DsmViewer.ViewModel")] -[assembly: AssemblyCopyright("Copyright © 2019")] -[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)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("0b3fd709-0509-42fb-9852-f0221283255e")] - -// 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.*")] diff --git a/DsmSuite.sln b/DsmSuite.sln index 4781e134..90fdcea3 100644 --- a/DsmSuite.sln +++ b/DsmSuite.sln @@ -1,17 +1,16 @@ - Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.3.32929.385 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DsmSuite.Analyzer.DotNet", "DsmSuite.Analyzer.DotNet\DsmSuite.Analyzer.DotNet.csproj", "{8FEA0BB6-A14F-494C-B21B-8A44AB8CFF47}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DsmSuite.Analyzer.DotNet", "DsmSuite.Analyzer.DotNet\DsmSuite.Analyzer.DotNet.csproj", "{8FEA0BB6-A14F-494C-B21B-8A44AB8CFF47}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DsmSuite.Analyzer.Model", "DsmSuite.Analyzer.Model\DsmSuite.Analyzer.Model.csproj", "{7106D2F0-804E-4F73-950C-266FFC096A87}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DsmSuite.Analyzer.Model", "DsmSuite.Analyzer.Model\DsmSuite.Analyzer.Model.csproj", "{7106D2F0-804E-4F73-950C-266FFC096A87}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DsmSuite.Analyzer.Model.Test", "DsmSuite.Analyzer.Model.Test\DsmSuite.Analyzer.Model.Test.csproj", "{C123D876-A195-4220-B3F1-3C3E85720D3F}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DsmSuite.Analyzer.Model.Test", "DsmSuite.Analyzer.Model.Test\DsmSuite.Analyzer.Model.Test.csproj", "{C123D876-A195-4220-B3F1-3C3E85720D3F}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DsmSuite.Analyzer.Uml", "DsmSuite.Analyzer.Uml\DsmSuite.Analyzer.Uml.csproj", "{20C7D1B2-F006-431A-99CD-AF4BB3A2DD69}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DsmSuite.Analyzer.Uml", "DsmSuite.Analyzer.Uml\DsmSuite.Analyzer.Uml.csproj", "{20C7D1B2-F006-431A-99CD-AF4BB3A2DD69}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DsmSuite.Analyzer.Jdeps", "DsmSuite.Analyzer.Jdeps\DsmSuite.Analyzer.Jdeps.csproj", "{04FC583C-392D-47C4-B557-535B01016210}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DsmSuite.Analyzer.Jdeps", "DsmSuite.Analyzer.Jdeps\DsmSuite.Analyzer.Jdeps.csproj", "{04FC583C-392D-47C4-B557-535B01016210}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "JdepsAnalyzer", "JdepsAnalyzer", "{9688F299-AC1D-482C-8116-69CF6849D6B6}" EndProject @@ -19,21 +18,21 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "DotNetAnalyzer", "DotNetAna EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "UmlAnalyzer", "UmlAnalyzer", "{1DB0D1BE-5B13-4518-812A-24E66CBD11A6}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DsmSuite.Analyzer.DotNet.Test", "DsmSuite.Analyzer.DotNet.Test\DsmSuite.Analyzer.DotNet.Test.csproj", "{07280D48-1239-4EB1-9B28-C358E8944A8E}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DsmSuite.Analyzer.DotNet.Test", "DsmSuite.Analyzer.DotNet.Test\DsmSuite.Analyzer.DotNet.Test.csproj", "{07280D48-1239-4EB1-9B28-C358E8944A8E}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DsmSuite.Analyzer.Jdeps.Test", "DsmSuite.Analyzer.Jdeps.Test\DsmSuite.Analyzer.Jdeps.Test.csproj", "{C792DC03-4697-4402-9FB9-D1872BDF736D}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DsmSuite.Analyzer.Jdeps.Test", "DsmSuite.Analyzer.Jdeps.Test\DsmSuite.Analyzer.Jdeps.Test.csproj", "{C792DC03-4697-4402-9FB9-D1872BDF736D}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DsmSuite.Analyzer.Uml.Test", "DsmSuite.Analyzer.Uml.Test\DsmSuite.Analyzer.Uml.Test.csproj", "{CB36149D-AC9B-4987-9AA0-A9030ECD2596}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DsmSuite.Analyzer.Uml.Test", "DsmSuite.Analyzer.Uml.Test\DsmSuite.Analyzer.Uml.Test.csproj", "{CB36149D-AC9B-4987-9AA0-A9030ECD2596}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Common", "Common", "{E6F477ED-BA20-4E27-BFF7-DB546F92103C}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DsmSuite.Analyzer.Transformations", "DsmSuite.Analyzer.Transformations\DsmSuite.Analyzer.Transformations.csproj", "{839EF27A-3261-473F-BA78-DE18DFA9B7AE}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DsmSuite.Analyzer.Transformations", "DsmSuite.Analyzer.Transformations\DsmSuite.Analyzer.Transformations.csproj", "{839EF27A-3261-473F-BA78-DE18DFA9B7AE}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DsmSuite.Analyzer.Transformations.Test", "DsmSuite.Analyzer.Transformations.Test\DsmSuite.Analyzer.Transformations.Test.csproj", "{8BABA3A9-0BF8-4E2B-8C7B-B2C5A94707A2}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DsmSuite.Analyzer.Transformations.Test", "DsmSuite.Analyzer.Transformations.Test\DsmSuite.Analyzer.Transformations.Test.csproj", "{8BABA3A9-0BF8-4E2B-8C7B-B2C5A94707A2}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Analyzers", "Analyzers", "{253991D0-5167-48FC-A767-5537AB5C18DE}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DsmSuite.Analyzer.DotNet.Test.Data", "DsmSuite.Analyzer.DotNet.Test.Data\DsmSuite.Analyzer.DotNet.Test.Data.csproj", "{0CDFA464-A451-4FDC-A58F-6E5D924B49E9}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DsmSuite.Analyzer.DotNet.Test.Data", "DsmSuite.Analyzer.DotNet.Test.Data\DsmSuite.Analyzer.DotNet.Test.Data.csproj", "{0CDFA464-A451-4FDC-A58F-6E5D924B49E9}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Viewer", "Viewer", "{2BC25D73-D38B-4B7C-841B-5B54B8716EAA}" EndProject @@ -45,19 +44,19 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Application", "Application" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Model", "Model", "{F193BB64-603D-4A3F-8BC0-2B8FE218F280}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DsmSuite.DsmViewer.Application", "DsmSuite.DsmViewer.Application\DsmSuite.DsmViewer.Application.csproj", "{F864BD74-A7E3-4349-BE07-F0725A2EA589}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DsmSuite.DsmViewer.Application", "DsmSuite.DsmViewer.Application\DsmSuite.DsmViewer.Application.csproj", "{F864BD74-A7E3-4349-BE07-F0725A2EA589}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DsmSuite.DsmViewer.Application.Test", "DsmSuite.DsmViewer.Application.Test\DsmSuite.DsmViewer.Application.Test.csproj", "{45B1889F-B934-4C5C-8AC4-35B28F7CF37E}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DsmSuite.DsmViewer.Application.Test", "DsmSuite.DsmViewer.Application.Test\DsmSuite.DsmViewer.Application.Test.csproj", "{45B1889F-B934-4C5C-8AC4-35B28F7CF37E}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DsmSuite.DsmViewer.Model", "DsmSuite.DsmViewer.Model\DsmSuite.DsmViewer.Model.csproj", "{AE2405C6-54CA-43B1-BCF0-36B7010C0F0E}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DsmSuite.DsmViewer.Model", "DsmSuite.DsmViewer.Model\DsmSuite.DsmViewer.Model.csproj", "{AE2405C6-54CA-43B1-BCF0-36B7010C0F0E}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DsmSuite.DsmViewer.Model.Test", "DsmSuite.DsmViewer.Model.Test\DsmSuite.DsmViewer.Model.Test.csproj", "{32E0E5F6-3AA7-4E8B-8239-EB613C33CCC4}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DsmSuite.DsmViewer.Model.Test", "DsmSuite.DsmViewer.Model.Test\DsmSuite.DsmViewer.Model.Test.csproj", "{32E0E5F6-3AA7-4E8B-8239-EB613C33CCC4}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DsmSuite.DsmViewer.View", "DsmSuite.DsmViewer.View\DsmSuite.DsmViewer.View.csproj", "{DBF6C849-8506-444C-BE20-ECA87CA4A35C}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DsmSuite.DsmViewer.View", "DsmSuite.DsmViewer.View\DsmSuite.DsmViewer.View.csproj", "{DBF6C849-8506-444C-BE20-ECA87CA4A35C}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DsmSuite.DsmViewer.ViewModel", "DsmSuite.DsmViewer.ViewModel\DsmSuite.DsmViewer.ViewModel.csproj", "{0B3FD709-0509-42FB-9852-F0221283255E}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DsmSuite.DsmViewer.ViewModel", "DsmSuite.DsmViewer.ViewModel\DsmSuite.DsmViewer.ViewModel.csproj", "{0B3FD709-0509-42FB-9852-F0221283255E}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DsmSuite.DsmViewer.ViewModel.Test", "DsmSuite.DsmViewer.ViewModel.Test\DsmSuite.DsmViewer.ViewModel.Test.csproj", "{7C213A5A-81E9-4C10-A3C4-80830D0954D4}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DsmSuite.DsmViewer.ViewModel.Test", "DsmSuite.DsmViewer.ViewModel.Test\DsmSuite.DsmViewer.ViewModel.Test.csproj", "{7C213A5A-81E9-4C10-A3C4-80830D0954D4}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Installer", "Installer", "{002578BA-17A9-4DF2-85E7-B354F346940B}" EndProject @@ -91,141 +90,225 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Model", "Model", "{BA392E57 EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Common", "Common", "{B65914AE-2560-4A02-9C56-8D03D82B64FA}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DsmSuite.Common.Util.Test", "DsmSuite.Common.Util.Test\DsmSuite.Common.Util.Test.csproj", "{2C697652-F1AA-4335-8973-C5588840B8A6}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DsmSuite.Common.Util.Test", "DsmSuite.Common.Util.Test\DsmSuite.Common.Util.Test.csproj", "{2C697652-F1AA-4335-8973-C5588840B8A6}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DsmSuite.Common.Util", "DsmSuite.Common.Util\DsmSuite.Common.Util.csproj", "{C2EB943F-4BB8-47BB-BDC1-7F6B607FB977}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DsmSuite.Common.Util", "DsmSuite.Common.Util\DsmSuite.Common.Util.csproj", "{C2EB943F-4BB8-47BB-BDC1-7F6B607FB977}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{7656A058-A888-4638-9FF0-CFCB56D1323A}" ProjectSection(SolutionItems) = preProject test.runsettings = test.runsettings EndProjectSection EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DsmSuite.Common.Model", "DsmSuite.Common.Model\DsmSuite.Common.Model.csproj", "{6E26EAA0-D0D6-41AB-9AED-61542F7EDFC5}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DsmSuite.Common.Model", "DsmSuite.Common.Model\DsmSuite.Common.Model.csproj", "{6E26EAA0-D0D6-41AB-9AED-61542F7EDFC5}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DsmSuite.Common.Model.Test", "DsmSuite.Common.Model.Test\DsmSuite.Common.Model.Test.csproj", "{1DCCE734-2B1F-4EEA-9A88-85BCFE06A1DF}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DsmSuite.Common.Model.Test", "DsmSuite.Common.Model.Test\DsmSuite.Common.Model.Test.csproj", "{1DCCE734-2B1F-4EEA-9A88-85BCFE06A1DF}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DsmSuite.Analyzer.DotNet.Lib", "DsmSuite.Analyzer.DotNet.Lib\DsmSuite.Analyzer.DotNet.Lib.csproj", "{E7777E3D-34E7-4ACB-928A-FB70D25F0C64}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DsmSuite.Analyzer.DotNet.Lib", "DsmSuite.Analyzer.DotNet.Lib\DsmSuite.Analyzer.DotNet.Lib.csproj", "{E7777E3D-34E7-4ACB-928A-FB70D25F0C64}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Compare", "Compare", "{F8AA6562-B5AC-4660-8B53-6708FBF43AFA}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DsmSuite.Analyzer.Compare", "DsmSuite.Analyzer.Compare\DsmSuite.Analyzer.Compare.csproj", "{F0F09701-6A36-479E-97B9-BCC0DEF3C050}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DsmSuite.Analyzer.Compare", "DsmSuite.Analyzer.Compare\DsmSuite.Analyzer.Compare.csproj", "{F0F09701-6A36-479E-97B9-BCC0DEF3C050}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DsmSuite.Analyzer.Compare.Test", "DsmSuite.Analyzer.Compare.Test\DsmSuite.Analyzer.Compare.Test.csproj", "{AE26E765-3E28-45C0-87FC-A45A88AE431B}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DsmSuite.Analyzer.Compare.Test", "DsmSuite.Analyzer.Compare.Test\DsmSuite.Analyzer.Compare.Test.csproj", "{AE26E765-3E28-45C0-87FC-A45A88AE431B}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DsmSuite.Analyzer.CompareLib", "DsmSuite.Analyzer.CompareLib\DsmSuite.Analyzer.CompareLib.csproj", "{4DEF3EDB-91A6-4C95-BF74-D11B3363BEE2}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DsmSuite.Analyzer.CompareLib", "DsmSuite.Analyzer.CompareLib\DsmSuite.Analyzer.CompareLib.csproj", "{4DEF3EDB-91A6-4C95-BF74-D11B3363BEE2}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU Debug|x64 = Debug|x64 + Release|Any CPU = Release|Any CPU Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {8FEA0BB6-A14F-494C-B21B-8A44AB8CFF47}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8FEA0BB6-A14F-494C-B21B-8A44AB8CFF47}.Debug|Any CPU.Build.0 = Debug|Any CPU {8FEA0BB6-A14F-494C-B21B-8A44AB8CFF47}.Debug|x64.ActiveCfg = Debug|x64 - {8FEA0BB6-A14F-494C-B21B-8A44AB8CFF47}.Debug|x64.Build.0 = Debug|x64 + {8FEA0BB6-A14F-494C-B21B-8A44AB8CFF47}.Release|Any CPU.ActiveCfg = Release|Any CPU + {8FEA0BB6-A14F-494C-B21B-8A44AB8CFF47}.Release|Any CPU.Build.0 = Release|Any CPU {8FEA0BB6-A14F-494C-B21B-8A44AB8CFF47}.Release|x64.ActiveCfg = Release|x64 {8FEA0BB6-A14F-494C-B21B-8A44AB8CFF47}.Release|x64.Build.0 = Release|x64 + {7106D2F0-804E-4F73-950C-266FFC096A87}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7106D2F0-804E-4F73-950C-266FFC096A87}.Debug|Any CPU.Build.0 = Debug|Any CPU {7106D2F0-804E-4F73-950C-266FFC096A87}.Debug|x64.ActiveCfg = Debug|x64 - {7106D2F0-804E-4F73-950C-266FFC096A87}.Debug|x64.Build.0 = Debug|x64 + {7106D2F0-804E-4F73-950C-266FFC096A87}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7106D2F0-804E-4F73-950C-266FFC096A87}.Release|Any CPU.Build.0 = Release|Any CPU {7106D2F0-804E-4F73-950C-266FFC096A87}.Release|x64.ActiveCfg = Release|x64 {7106D2F0-804E-4F73-950C-266FFC096A87}.Release|x64.Build.0 = Release|x64 + {C123D876-A195-4220-B3F1-3C3E85720D3F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C123D876-A195-4220-B3F1-3C3E85720D3F}.Debug|Any CPU.Build.0 = Debug|Any CPU {C123D876-A195-4220-B3F1-3C3E85720D3F}.Debug|x64.ActiveCfg = Debug|x64 - {C123D876-A195-4220-B3F1-3C3E85720D3F}.Debug|x64.Build.0 = Debug|x64 + {C123D876-A195-4220-B3F1-3C3E85720D3F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C123D876-A195-4220-B3F1-3C3E85720D3F}.Release|Any CPU.Build.0 = Release|Any CPU {C123D876-A195-4220-B3F1-3C3E85720D3F}.Release|x64.ActiveCfg = Release|x64 {C123D876-A195-4220-B3F1-3C3E85720D3F}.Release|x64.Build.0 = Release|x64 + {20C7D1B2-F006-431A-99CD-AF4BB3A2DD69}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {20C7D1B2-F006-431A-99CD-AF4BB3A2DD69}.Debug|Any CPU.Build.0 = Debug|Any CPU {20C7D1B2-F006-431A-99CD-AF4BB3A2DD69}.Debug|x64.ActiveCfg = Debug|x64 - {20C7D1B2-F006-431A-99CD-AF4BB3A2DD69}.Debug|x64.Build.0 = Debug|x64 + {20C7D1B2-F006-431A-99CD-AF4BB3A2DD69}.Release|Any CPU.ActiveCfg = Release|Any CPU + {20C7D1B2-F006-431A-99CD-AF4BB3A2DD69}.Release|Any CPU.Build.0 = Release|Any CPU {20C7D1B2-F006-431A-99CD-AF4BB3A2DD69}.Release|x64.ActiveCfg = Release|x64 {20C7D1B2-F006-431A-99CD-AF4BB3A2DD69}.Release|x64.Build.0 = Release|x64 + {04FC583C-392D-47C4-B557-535B01016210}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {04FC583C-392D-47C4-B557-535B01016210}.Debug|Any CPU.Build.0 = Debug|Any CPU {04FC583C-392D-47C4-B557-535B01016210}.Debug|x64.ActiveCfg = Debug|x64 - {04FC583C-392D-47C4-B557-535B01016210}.Debug|x64.Build.0 = Debug|x64 + {04FC583C-392D-47C4-B557-535B01016210}.Release|Any CPU.ActiveCfg = Release|Any CPU + {04FC583C-392D-47C4-B557-535B01016210}.Release|Any CPU.Build.0 = Release|Any CPU {04FC583C-392D-47C4-B557-535B01016210}.Release|x64.ActiveCfg = Release|x64 {04FC583C-392D-47C4-B557-535B01016210}.Release|x64.Build.0 = Release|x64 + {07280D48-1239-4EB1-9B28-C358E8944A8E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {07280D48-1239-4EB1-9B28-C358E8944A8E}.Debug|Any CPU.Build.0 = Debug|Any CPU {07280D48-1239-4EB1-9B28-C358E8944A8E}.Debug|x64.ActiveCfg = Debug|x64 - {07280D48-1239-4EB1-9B28-C358E8944A8E}.Debug|x64.Build.0 = Debug|x64 + {07280D48-1239-4EB1-9B28-C358E8944A8E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {07280D48-1239-4EB1-9B28-C358E8944A8E}.Release|Any CPU.Build.0 = Release|Any CPU {07280D48-1239-4EB1-9B28-C358E8944A8E}.Release|x64.ActiveCfg = Release|x64 {07280D48-1239-4EB1-9B28-C358E8944A8E}.Release|x64.Build.0 = Release|x64 + {C792DC03-4697-4402-9FB9-D1872BDF736D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C792DC03-4697-4402-9FB9-D1872BDF736D}.Debug|Any CPU.Build.0 = Debug|Any CPU {C792DC03-4697-4402-9FB9-D1872BDF736D}.Debug|x64.ActiveCfg = Debug|x64 - {C792DC03-4697-4402-9FB9-D1872BDF736D}.Debug|x64.Build.0 = Debug|x64 + {C792DC03-4697-4402-9FB9-D1872BDF736D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C792DC03-4697-4402-9FB9-D1872BDF736D}.Release|Any CPU.Build.0 = Release|Any CPU {C792DC03-4697-4402-9FB9-D1872BDF736D}.Release|x64.ActiveCfg = Release|x64 {C792DC03-4697-4402-9FB9-D1872BDF736D}.Release|x64.Build.0 = Release|x64 + {CB36149D-AC9B-4987-9AA0-A9030ECD2596}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {CB36149D-AC9B-4987-9AA0-A9030ECD2596}.Debug|Any CPU.Build.0 = Debug|Any CPU {CB36149D-AC9B-4987-9AA0-A9030ECD2596}.Debug|x64.ActiveCfg = Debug|x64 - {CB36149D-AC9B-4987-9AA0-A9030ECD2596}.Debug|x64.Build.0 = Debug|x64 + {CB36149D-AC9B-4987-9AA0-A9030ECD2596}.Release|Any CPU.ActiveCfg = Release|Any CPU + {CB36149D-AC9B-4987-9AA0-A9030ECD2596}.Release|Any CPU.Build.0 = Release|Any CPU {CB36149D-AC9B-4987-9AA0-A9030ECD2596}.Release|x64.ActiveCfg = Release|x64 {CB36149D-AC9B-4987-9AA0-A9030ECD2596}.Release|x64.Build.0 = Release|x64 + {839EF27A-3261-473F-BA78-DE18DFA9B7AE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {839EF27A-3261-473F-BA78-DE18DFA9B7AE}.Debug|Any CPU.Build.0 = Debug|Any CPU {839EF27A-3261-473F-BA78-DE18DFA9B7AE}.Debug|x64.ActiveCfg = Debug|x64 - {839EF27A-3261-473F-BA78-DE18DFA9B7AE}.Debug|x64.Build.0 = Debug|x64 + {839EF27A-3261-473F-BA78-DE18DFA9B7AE}.Release|Any CPU.ActiveCfg = Release|Any CPU + {839EF27A-3261-473F-BA78-DE18DFA9B7AE}.Release|Any CPU.Build.0 = Release|Any CPU {839EF27A-3261-473F-BA78-DE18DFA9B7AE}.Release|x64.ActiveCfg = Release|x64 {839EF27A-3261-473F-BA78-DE18DFA9B7AE}.Release|x64.Build.0 = Release|x64 + {8BABA3A9-0BF8-4E2B-8C7B-B2C5A94707A2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8BABA3A9-0BF8-4E2B-8C7B-B2C5A94707A2}.Debug|Any CPU.Build.0 = Debug|Any CPU {8BABA3A9-0BF8-4E2B-8C7B-B2C5A94707A2}.Debug|x64.ActiveCfg = Debug|x64 - {8BABA3A9-0BF8-4E2B-8C7B-B2C5A94707A2}.Debug|x64.Build.0 = Debug|x64 + {8BABA3A9-0BF8-4E2B-8C7B-B2C5A94707A2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {8BABA3A9-0BF8-4E2B-8C7B-B2C5A94707A2}.Release|Any CPU.Build.0 = Release|Any CPU {8BABA3A9-0BF8-4E2B-8C7B-B2C5A94707A2}.Release|x64.ActiveCfg = Release|x64 {8BABA3A9-0BF8-4E2B-8C7B-B2C5A94707A2}.Release|x64.Build.0 = Release|x64 + {0CDFA464-A451-4FDC-A58F-6E5D924B49E9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0CDFA464-A451-4FDC-A58F-6E5D924B49E9}.Debug|Any CPU.Build.0 = Debug|Any CPU {0CDFA464-A451-4FDC-A58F-6E5D924B49E9}.Debug|x64.ActiveCfg = Debug|x64 - {0CDFA464-A451-4FDC-A58F-6E5D924B49E9}.Debug|x64.Build.0 = Debug|x64 + {0CDFA464-A451-4FDC-A58F-6E5D924B49E9}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0CDFA464-A451-4FDC-A58F-6E5D924B49E9}.Release|Any CPU.Build.0 = Release|Any CPU {0CDFA464-A451-4FDC-A58F-6E5D924B49E9}.Release|x64.ActiveCfg = Release|x64 {0CDFA464-A451-4FDC-A58F-6E5D924B49E9}.Release|x64.Build.0 = Release|x64 + {F864BD74-A7E3-4349-BE07-F0725A2EA589}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F864BD74-A7E3-4349-BE07-F0725A2EA589}.Debug|Any CPU.Build.0 = Debug|Any CPU {F864BD74-A7E3-4349-BE07-F0725A2EA589}.Debug|x64.ActiveCfg = Debug|x64 - {F864BD74-A7E3-4349-BE07-F0725A2EA589}.Debug|x64.Build.0 = Debug|x64 + {F864BD74-A7E3-4349-BE07-F0725A2EA589}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F864BD74-A7E3-4349-BE07-F0725A2EA589}.Release|Any CPU.Build.0 = Release|Any CPU {F864BD74-A7E3-4349-BE07-F0725A2EA589}.Release|x64.ActiveCfg = Release|x64 {F864BD74-A7E3-4349-BE07-F0725A2EA589}.Release|x64.Build.0 = Release|x64 + {45B1889F-B934-4C5C-8AC4-35B28F7CF37E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {45B1889F-B934-4C5C-8AC4-35B28F7CF37E}.Debug|Any CPU.Build.0 = Debug|Any CPU {45B1889F-B934-4C5C-8AC4-35B28F7CF37E}.Debug|x64.ActiveCfg = Debug|x64 - {45B1889F-B934-4C5C-8AC4-35B28F7CF37E}.Debug|x64.Build.0 = Debug|x64 + {45B1889F-B934-4C5C-8AC4-35B28F7CF37E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {45B1889F-B934-4C5C-8AC4-35B28F7CF37E}.Release|Any CPU.Build.0 = Release|Any CPU {45B1889F-B934-4C5C-8AC4-35B28F7CF37E}.Release|x64.ActiveCfg = Release|x64 {45B1889F-B934-4C5C-8AC4-35B28F7CF37E}.Release|x64.Build.0 = Release|x64 + {AE2405C6-54CA-43B1-BCF0-36B7010C0F0E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {AE2405C6-54CA-43B1-BCF0-36B7010C0F0E}.Debug|Any CPU.Build.0 = Debug|Any CPU {AE2405C6-54CA-43B1-BCF0-36B7010C0F0E}.Debug|x64.ActiveCfg = Debug|x64 - {AE2405C6-54CA-43B1-BCF0-36B7010C0F0E}.Debug|x64.Build.0 = Debug|x64 + {AE2405C6-54CA-43B1-BCF0-36B7010C0F0E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {AE2405C6-54CA-43B1-BCF0-36B7010C0F0E}.Release|Any CPU.Build.0 = Release|Any CPU {AE2405C6-54CA-43B1-BCF0-36B7010C0F0E}.Release|x64.ActiveCfg = Release|x64 {AE2405C6-54CA-43B1-BCF0-36B7010C0F0E}.Release|x64.Build.0 = Release|x64 + {32E0E5F6-3AA7-4E8B-8239-EB613C33CCC4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {32E0E5F6-3AA7-4E8B-8239-EB613C33CCC4}.Debug|Any CPU.Build.0 = Debug|Any CPU {32E0E5F6-3AA7-4E8B-8239-EB613C33CCC4}.Debug|x64.ActiveCfg = Debug|x64 - {32E0E5F6-3AA7-4E8B-8239-EB613C33CCC4}.Debug|x64.Build.0 = Debug|x64 + {32E0E5F6-3AA7-4E8B-8239-EB613C33CCC4}.Release|Any CPU.ActiveCfg = Release|Any CPU + {32E0E5F6-3AA7-4E8B-8239-EB613C33CCC4}.Release|Any CPU.Build.0 = Release|Any CPU {32E0E5F6-3AA7-4E8B-8239-EB613C33CCC4}.Release|x64.ActiveCfg = Release|x64 {32E0E5F6-3AA7-4E8B-8239-EB613C33CCC4}.Release|x64.Build.0 = Release|x64 + {DBF6C849-8506-444C-BE20-ECA87CA4A35C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DBF6C849-8506-444C-BE20-ECA87CA4A35C}.Debug|Any CPU.Build.0 = Debug|Any CPU {DBF6C849-8506-444C-BE20-ECA87CA4A35C}.Debug|x64.ActiveCfg = Debug|x64 - {DBF6C849-8506-444C-BE20-ECA87CA4A35C}.Debug|x64.Build.0 = Debug|x64 + {DBF6C849-8506-444C-BE20-ECA87CA4A35C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DBF6C849-8506-444C-BE20-ECA87CA4A35C}.Release|Any CPU.Build.0 = Release|Any CPU {DBF6C849-8506-444C-BE20-ECA87CA4A35C}.Release|x64.ActiveCfg = Release|x64 {DBF6C849-8506-444C-BE20-ECA87CA4A35C}.Release|x64.Build.0 = Release|x64 + {0B3FD709-0509-42FB-9852-F0221283255E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0B3FD709-0509-42FB-9852-F0221283255E}.Debug|Any CPU.Build.0 = Debug|Any CPU {0B3FD709-0509-42FB-9852-F0221283255E}.Debug|x64.ActiveCfg = Debug|x64 - {0B3FD709-0509-42FB-9852-F0221283255E}.Debug|x64.Build.0 = Debug|x64 + {0B3FD709-0509-42FB-9852-F0221283255E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0B3FD709-0509-42FB-9852-F0221283255E}.Release|Any CPU.Build.0 = Release|Any CPU {0B3FD709-0509-42FB-9852-F0221283255E}.Release|x64.ActiveCfg = Release|x64 {0B3FD709-0509-42FB-9852-F0221283255E}.Release|x64.Build.0 = Release|x64 + {7C213A5A-81E9-4C10-A3C4-80830D0954D4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7C213A5A-81E9-4C10-A3C4-80830D0954D4}.Debug|Any CPU.Build.0 = Debug|Any CPU {7C213A5A-81E9-4C10-A3C4-80830D0954D4}.Debug|x64.ActiveCfg = Debug|x64 - {7C213A5A-81E9-4C10-A3C4-80830D0954D4}.Debug|x64.Build.0 = Debug|x64 + {7C213A5A-81E9-4C10-A3C4-80830D0954D4}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7C213A5A-81E9-4C10-A3C4-80830D0954D4}.Release|Any CPU.Build.0 = Release|Any CPU {7C213A5A-81E9-4C10-A3C4-80830D0954D4}.Release|x64.ActiveCfg = Release|x64 {7C213A5A-81E9-4C10-A3C4-80830D0954D4}.Release|x64.Build.0 = Release|x64 + {4641D099-C87D-4B5D-8B50-E5C074E619D0}.Debug|Any CPU.ActiveCfg = Debug|x64 {4641D099-C87D-4B5D-8B50-E5C074E619D0}.Debug|x64.ActiveCfg = Debug|x64 {4641D099-C87D-4B5D-8B50-E5C074E619D0}.Debug|x64.Build.0 = Debug|x64 + {4641D099-C87D-4B5D-8B50-E5C074E619D0}.Release|Any CPU.ActiveCfg = Release|x64 {4641D099-C87D-4B5D-8B50-E5C074E619D0}.Release|x64.ActiveCfg = Release|x64 {4641D099-C87D-4B5D-8B50-E5C074E619D0}.Release|x64.Build.0 = Release|x64 + {2C697652-F1AA-4335-8973-C5588840B8A6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2C697652-F1AA-4335-8973-C5588840B8A6}.Debug|Any CPU.Build.0 = Debug|Any CPU {2C697652-F1AA-4335-8973-C5588840B8A6}.Debug|x64.ActiveCfg = Debug|x64 {2C697652-F1AA-4335-8973-C5588840B8A6}.Debug|x64.Build.0 = Debug|x64 + {2C697652-F1AA-4335-8973-C5588840B8A6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2C697652-F1AA-4335-8973-C5588840B8A6}.Release|Any CPU.Build.0 = Release|Any CPU {2C697652-F1AA-4335-8973-C5588840B8A6}.Release|x64.ActiveCfg = Release|x64 {2C697652-F1AA-4335-8973-C5588840B8A6}.Release|x64.Build.0 = Release|x64 - {C2EB943F-4BB8-47BB-BDC1-7F6B607FB977}.Debug|x64.ActiveCfg = Debug|x64 - {C2EB943F-4BB8-47BB-BDC1-7F6B607FB977}.Debug|x64.Build.0 = Debug|x64 + {C2EB943F-4BB8-47BB-BDC1-7F6B607FB977}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C2EB943F-4BB8-47BB-BDC1-7F6B607FB977}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C2EB943F-4BB8-47BB-BDC1-7F6B607FB977}.Debug|x64.ActiveCfg = Debug|Any CPU + {C2EB943F-4BB8-47BB-BDC1-7F6B607FB977}.Debug|x64.Build.0 = Debug|Any CPU + {C2EB943F-4BB8-47BB-BDC1-7F6B607FB977}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C2EB943F-4BB8-47BB-BDC1-7F6B607FB977}.Release|Any CPU.Build.0 = Release|Any CPU {C2EB943F-4BB8-47BB-BDC1-7F6B607FB977}.Release|x64.ActiveCfg = Release|x64 {C2EB943F-4BB8-47BB-BDC1-7F6B607FB977}.Release|x64.Build.0 = Release|x64 + {6E26EAA0-D0D6-41AB-9AED-61542F7EDFC5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6E26EAA0-D0D6-41AB-9AED-61542F7EDFC5}.Debug|Any CPU.Build.0 = Debug|Any CPU {6E26EAA0-D0D6-41AB-9AED-61542F7EDFC5}.Debug|x64.ActiveCfg = Debug|x64 - {6E26EAA0-D0D6-41AB-9AED-61542F7EDFC5}.Debug|x64.Build.0 = Debug|x64 + {6E26EAA0-D0D6-41AB-9AED-61542F7EDFC5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6E26EAA0-D0D6-41AB-9AED-61542F7EDFC5}.Release|Any CPU.Build.0 = Release|Any CPU {6E26EAA0-D0D6-41AB-9AED-61542F7EDFC5}.Release|x64.ActiveCfg = Release|x64 {6E26EAA0-D0D6-41AB-9AED-61542F7EDFC5}.Release|x64.Build.0 = Release|x64 + {1DCCE734-2B1F-4EEA-9A88-85BCFE06A1DF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1DCCE734-2B1F-4EEA-9A88-85BCFE06A1DF}.Debug|Any CPU.Build.0 = Debug|Any CPU {1DCCE734-2B1F-4EEA-9A88-85BCFE06A1DF}.Debug|x64.ActiveCfg = Debug|x64 - {1DCCE734-2B1F-4EEA-9A88-85BCFE06A1DF}.Debug|x64.Build.0 = Debug|x64 + {1DCCE734-2B1F-4EEA-9A88-85BCFE06A1DF}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1DCCE734-2B1F-4EEA-9A88-85BCFE06A1DF}.Release|Any CPU.Build.0 = Release|Any CPU {1DCCE734-2B1F-4EEA-9A88-85BCFE06A1DF}.Release|x64.ActiveCfg = Release|x64 {1DCCE734-2B1F-4EEA-9A88-85BCFE06A1DF}.Release|x64.Build.0 = Release|x64 + {E7777E3D-34E7-4ACB-928A-FB70D25F0C64}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E7777E3D-34E7-4ACB-928A-FB70D25F0C64}.Debug|Any CPU.Build.0 = Debug|Any CPU {E7777E3D-34E7-4ACB-928A-FB70D25F0C64}.Debug|x64.ActiveCfg = Debug|x64 - {E7777E3D-34E7-4ACB-928A-FB70D25F0C64}.Debug|x64.Build.0 = Debug|x64 + {E7777E3D-34E7-4ACB-928A-FB70D25F0C64}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E7777E3D-34E7-4ACB-928A-FB70D25F0C64}.Release|Any CPU.Build.0 = Release|Any CPU {E7777E3D-34E7-4ACB-928A-FB70D25F0C64}.Release|x64.ActiveCfg = Release|x64 {E7777E3D-34E7-4ACB-928A-FB70D25F0C64}.Release|x64.Build.0 = Release|x64 + {F0F09701-6A36-479E-97B9-BCC0DEF3C050}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F0F09701-6A36-479E-97B9-BCC0DEF3C050}.Debug|Any CPU.Build.0 = Debug|Any CPU {F0F09701-6A36-479E-97B9-BCC0DEF3C050}.Debug|x64.ActiveCfg = Debug|x64 - {F0F09701-6A36-479E-97B9-BCC0DEF3C050}.Debug|x64.Build.0 = Debug|x64 + {F0F09701-6A36-479E-97B9-BCC0DEF3C050}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F0F09701-6A36-479E-97B9-BCC0DEF3C050}.Release|Any CPU.Build.0 = Release|Any CPU {F0F09701-6A36-479E-97B9-BCC0DEF3C050}.Release|x64.ActiveCfg = Release|x64 {F0F09701-6A36-479E-97B9-BCC0DEF3C050}.Release|x64.Build.0 = Release|x64 + {AE26E765-3E28-45C0-87FC-A45A88AE431B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {AE26E765-3E28-45C0-87FC-A45A88AE431B}.Debug|Any CPU.Build.0 = Debug|Any CPU {AE26E765-3E28-45C0-87FC-A45A88AE431B}.Debug|x64.ActiveCfg = Debug|x64 - {AE26E765-3E28-45C0-87FC-A45A88AE431B}.Debug|x64.Build.0 = Debug|x64 + {AE26E765-3E28-45C0-87FC-A45A88AE431B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {AE26E765-3E28-45C0-87FC-A45A88AE431B}.Release|Any CPU.Build.0 = Release|Any CPU {AE26E765-3E28-45C0-87FC-A45A88AE431B}.Release|x64.ActiveCfg = Release|x64 {AE26E765-3E28-45C0-87FC-A45A88AE431B}.Release|x64.Build.0 = Release|x64 + {4DEF3EDB-91A6-4C95-BF74-D11B3363BEE2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4DEF3EDB-91A6-4C95-BF74-D11B3363BEE2}.Debug|Any CPU.Build.0 = Debug|Any CPU {4DEF3EDB-91A6-4C95-BF74-D11B3363BEE2}.Debug|x64.ActiveCfg = Debug|x64 - {4DEF3EDB-91A6-4C95-BF74-D11B3363BEE2}.Debug|x64.Build.0 = Debug|x64 + {4DEF3EDB-91A6-4C95-BF74-D11B3363BEE2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4DEF3EDB-91A6-4C95-BF74-D11B3363BEE2}.Release|Any CPU.Build.0 = Release|Any CPU {4DEF3EDB-91A6-4C95-BF74-D11B3363BEE2}.Release|x64.ActiveCfg = Release|x64 {4DEF3EDB-91A6-4C95-BF74-D11B3363BEE2}.Release|x64.Build.0 = Release|x64 EndGlobalSection diff --git a/Hierarchical.graphml b/Hierarchical.graphml deleted file mode 100644 index 4d925f26..00000000 --- a/Hierarchical.graphml +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/PropertySheets/DsmSuite.Common.props b/PropertySheets/DsmSuite.Common.props deleted file mode 100644 index 2a13b347..00000000 --- a/PropertySheets/DsmSuite.Common.props +++ /dev/null @@ -1,27 +0,0 @@ - - - - true - ..\build\bin\ - ..\build\obj\ - $(BaseIntermediateOutputPath)$(Configuration)\ - DEBUG;TRACE - full - x64 - prompt - MinimumRecommendedRules.ruleset - true - - - ..\build\bin\ - ..\build\obj\ - $(BaseIntermediateOutputPath)$(Configuration)\ - TRACE - true - pdbonly - x64 - prompt - MinimumRecommendedRules.ruleset - true - - diff --git a/UpgradeLog.htm b/UpgradeLog.htm deleted file mode 100644 index 1d9fbb4c..00000000 --- a/UpgradeLog.htm +++ /dev/null @@ -1,288 +0,0 @@ - - - - Migration Report -

- Migration Report -

Overview

ProjectPathErrorsWarningsMessages
DsmSuite.Analyzer.Cpp.Test.DataDsmSuite.Analyzer.Cpp.Test.Data\DsmSuite.Analyzer.Cpp.Test.Data.vcxproj100
DsmSuite.InstallerDsmSuite.Installer\DsmSuite.Installer.wixproj100
AnalyzersAnalyzers000
ApplicationApplication000
CommonCommon000
CompareCompare000
CppAnalyzerCppAnalyzer000
DotNetAnalyzerDotNetAnalyzer000
InstallerInstaller000
JdepsAnalyzerJdepsAnalyzer000
ModelModel000
Solution ItemsSolution Items000
UmlAnalyzerUmlAnalyzer000
ViewView000
ViewerViewer000
ViewModelViewModel000
SolutionDsmSuite.sln001

Solution and projects

\ No newline at end of file diff --git a/UpgradeLog2.htm b/UpgradeLog2.htm deleted file mode 100644 index 11b02015..00000000 --- a/UpgradeLog2.htm +++ /dev/null @@ -1,286 +0,0 @@ - - - - Migration Report -

- Migration Report -

\ No newline at end of file diff --git a/create_test_report.bat b/create_test_report.bat deleted file mode 100644 index 99b52713..00000000 --- a/create_test_report.bat +++ /dev/null @@ -1 +0,0 @@ -packages\ReportGenerator.4.3.6\tools\net47\reportgenerator.exe -reports:results.xml -targetdir:build\coverage \ No newline at end of file diff --git a/moqnote..txt b/moqnote..txt deleted file mode 100644 index cc1f90df..00000000 --- a/moqnote..txt +++ /dev/null @@ -1 +0,0 @@ -https://github.com/moq/moq4/issues/566 \ No newline at end of file diff --git a/run_tests_dsmsuite_opencover.bat b/run_tests_dsmsuite_opencover.bat deleted file mode 100644 index 3fc1d047..00000000 --- a/run_tests_dsmsuite_opencover.bat +++ /dev/null @@ -1 +0,0 @@ -packages\OpenCover.4.7.922\tools\OpenCover.Console.exe -target:run_tests_dsmsuite.bat -register:user -filter:"+[DsmSuite*]* -[*Test]*" \ No newline at end of file