From 6809aa12ef977b5045dcc9783306ea557958ad60 Mon Sep 17 00:00:00 2001 From: Dennis Beuchler Date: Thu, 8 Oct 2020 10:44:32 +0200 Subject: [PATCH] Added net45, net standard 2.0 and net standard 2.1 compatibility --- .../Moryx.AbstractionLayer.TestTools.csproj | 96 ++----- .../Moryx.AbstractionLayer.TestTools.nuspec | 15 -- .../Properties/AssemblyInfo.cs | 16 -- .../Resources/ResourceGraphMock.cs | 3 +- .../packages.config | 9 - .../Moryx.AbstractionLayer.csproj | 240 ++---------------- .../Moryx.AbstractionLayer.nuspec | 19 -- .../Properties/AssemblyInfo.cs | 28 -- src/Moryx.AbstractionLayer/app.config | 11 - src/Moryx.AbstractionLayer/packages.config | 6 - .../Moryx.Notifications.csproj | 107 +------- .../Moryx.Notifications.nuspec | 15 -- .../Properties/AssemblyInfo.cs | 28 -- src/Moryx.Notifications/app.config | 11 - src/Moryx.Notifications/packages.config | 10 - .../Moryx.Products.Management.csproj | 231 ++--------------- .../Moryx.Products.Management.nuspec | 15 -- .../Properties/AssemblyInfo.cs | 33 +-- src/Moryx.Products.Management/app.config | 40 --- src/Moryx.Products.Management/packages.config | 15 -- src/Moryx.Products.Model/App.config | 42 +-- .../Moryx.Products.Model.csproj | 170 +------------ .../Moryx.Products.Model.nuspec | 15 -- .../Properties/AssemblyInfo.cs | 30 --- src/Moryx.Products.Model/packages.config | 20 -- .../Moryx.Products.Samples.csproj | 158 +----------- .../Properties/AssemblyInfo.cs | 36 --- src/Moryx.Products.Samples/app.config | 60 ----- src/Moryx.Products.Samples/packages.config | 19 -- .../Moryx.Resources.Interaction.csproj | 111 ++------ .../Moryx.Resources.Interaction.nuspec | 15 -- .../Properties/AssemblyInfo.cs | 20 +- src/Moryx.Resources.Interaction/app.config | 11 - .../packages.config | 9 - .../Moryx.Resources.Management.csproj | 223 ++-------------- .../Moryx.Resources.Management.nuspec | 15 -- .../Properties/AssemblyInfo.cs | 32 +-- src/Moryx.Resources.Management/app.config | 45 +--- .../packages.config | 27 -- .../Moryx.Resources.Samples.csproj | 105 +------- .../Properties/AssemblyInfo.cs | 36 --- src/Moryx.Resources.Samples/packages.config | 9 - src/StartProject/App.config | 69 ----- src/StartProject/Program.cs | 4 +- src/StartProject/Properties/AssemblyInfo.cs | 36 --- src/StartProject/StartProject.csproj | 238 ++--------------- .../Moryx.AbstractionLayer.Tests.csproj | 114 +-------- .../Properties/AssemblyInfo.cs | 36 --- .../Moryx.AbstractionLayer.Tests/app.config | 43 ---- .../packages.config | 11 - .../Moryx.Notifications.Tests.csproj | 99 +------- .../Properties/AssemblyInfo.cs | 36 --- .../Moryx.Notifications.Tests/app.config | 23 -- .../Moryx.Notifications.Tests/packages.config | 10 - .../Moryx.Products.IntegrationTests.csproj | 149 +---------- .../Properties/AssemblyInfo.cs | 36 --- .../app.config | 65 ----- .../packages.config | 17 -- .../Moryx.Resources.Management.Tests.csproj | 160 ++---------- .../Properties/AssemblyInfo.cs | 36 --- .../app.config | 73 ------ .../packages.config | 20 -- 62 files changed, 207 insertions(+), 3224 deletions(-) delete mode 100644 src/Moryx.AbstractionLayer.TestTools/Moryx.AbstractionLayer.TestTools.nuspec delete mode 100644 src/Moryx.AbstractionLayer.TestTools/Properties/AssemblyInfo.cs delete mode 100644 src/Moryx.AbstractionLayer.TestTools/packages.config delete mode 100644 src/Moryx.AbstractionLayer/Moryx.AbstractionLayer.nuspec delete mode 100644 src/Moryx.AbstractionLayer/Properties/AssemblyInfo.cs delete mode 100644 src/Moryx.AbstractionLayer/app.config delete mode 100644 src/Moryx.AbstractionLayer/packages.config delete mode 100644 src/Moryx.Notifications/Moryx.Notifications.nuspec delete mode 100644 src/Moryx.Notifications/Properties/AssemblyInfo.cs delete mode 100644 src/Moryx.Notifications/app.config delete mode 100644 src/Moryx.Notifications/packages.config delete mode 100644 src/Moryx.Products.Management/Moryx.Products.Management.nuspec delete mode 100644 src/Moryx.Products.Management/packages.config delete mode 100644 src/Moryx.Products.Model/Moryx.Products.Model.nuspec delete mode 100644 src/Moryx.Products.Model/Properties/AssemblyInfo.cs delete mode 100644 src/Moryx.Products.Model/packages.config delete mode 100644 src/Moryx.Products.Samples/Properties/AssemblyInfo.cs delete mode 100644 src/Moryx.Products.Samples/app.config delete mode 100644 src/Moryx.Products.Samples/packages.config delete mode 100644 src/Moryx.Resources.Interaction/Moryx.Resources.Interaction.nuspec delete mode 100644 src/Moryx.Resources.Interaction/app.config delete mode 100644 src/Moryx.Resources.Interaction/packages.config delete mode 100644 src/Moryx.Resources.Management/Moryx.Resources.Management.nuspec delete mode 100644 src/Moryx.Resources.Management/packages.config delete mode 100644 src/Moryx.Resources.Samples/Properties/AssemblyInfo.cs delete mode 100644 src/Moryx.Resources.Samples/packages.config delete mode 100644 src/StartProject/App.config delete mode 100644 src/StartProject/Properties/AssemblyInfo.cs delete mode 100644 src/Tests/Moryx.AbstractionLayer.Tests/Properties/AssemblyInfo.cs delete mode 100644 src/Tests/Moryx.AbstractionLayer.Tests/app.config delete mode 100644 src/Tests/Moryx.AbstractionLayer.Tests/packages.config delete mode 100644 src/Tests/Moryx.Notifications.Tests/Properties/AssemblyInfo.cs delete mode 100644 src/Tests/Moryx.Notifications.Tests/app.config delete mode 100644 src/Tests/Moryx.Notifications.Tests/packages.config delete mode 100644 src/Tests/Moryx.Products.IntegrationTests/Properties/AssemblyInfo.cs delete mode 100644 src/Tests/Moryx.Products.IntegrationTests/app.config delete mode 100644 src/Tests/Moryx.Products.IntegrationTests/packages.config delete mode 100644 src/Tests/Moryx.Resources.Management.Tests/Properties/AssemblyInfo.cs delete mode 100644 src/Tests/Moryx.Resources.Management.Tests/app.config delete mode 100644 src/Tests/Moryx.Resources.Management.Tests/packages.config diff --git a/src/Moryx.AbstractionLayer.TestTools/Moryx.AbstractionLayer.TestTools.csproj b/src/Moryx.AbstractionLayer.TestTools/Moryx.AbstractionLayer.TestTools.csproj index f4b38088..e4412ed6 100644 --- a/src/Moryx.AbstractionLayer.TestTools/Moryx.AbstractionLayer.TestTools.csproj +++ b/src/Moryx.AbstractionLayer.TestTools/Moryx.AbstractionLayer.TestTools.csproj @@ -1,87 +1,21 @@ - - - + + + + - Debug - AnyCPU - {1516374C-976F-49FC-A911-29EDC481C657} - Library - Properties - Moryx.AbstractionLayer.TestTools - Moryx.AbstractionLayer.TestTools - v4.6.1 - 512 + netstandard2.0;net45 + true + Additional AbstractionLayer implementations for Tests + true - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - bin\Debug\Moryx.AbstractionLayer.TestTools.XML - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - bin\Release\Moryx.AbstractionLayer.TestTools.XML - - - - ..\..\packages\Castle.Core.4.4.1\lib\net45\Castle.Core.dll - - - ..\..\packages\Castle.Windsor.5.0.1\lib\net45\Castle.Windsor.dll - - - ..\..\packages\Moryx.3.0.0-dev.105\lib\netstandard2.0\Moryx.dll - - - ..\..\packages\Moryx.TestTools.UnitTest.3.0.0-dev.105\lib\netstandard2.0\Moryx.TestTools.UnitTest.dll - - - ..\..\packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll - - - - ..\..\packages\System.ComponentModel.Annotations.4.7.0\lib\net461\System.ComponentModel.Annotations.dll - - - - - - - - Properties\GlobalAssemblyInfo.cs - - - - - - - + - - {841f50c1-dec0-48d8-92d1-f860450940d8} - Moryx.AbstractionLayer - + + - - - + + - - - \ No newline at end of file + + diff --git a/src/Moryx.AbstractionLayer.TestTools/Moryx.AbstractionLayer.TestTools.nuspec b/src/Moryx.AbstractionLayer.TestTools/Moryx.AbstractionLayer.TestTools.nuspec deleted file mode 100644 index 949a2dab..00000000 --- a/src/Moryx.AbstractionLayer.TestTools/Moryx.AbstractionLayer.TestTools.nuspec +++ /dev/null @@ -1,15 +0,0 @@ - - - - $id$ - $version$ - $title$ - PHOENIXCONTACT - $author$ - Apache-2.0 - false - https://www.phoenixcontact.com/favicon.ico - - $description$ - - \ No newline at end of file diff --git a/src/Moryx.AbstractionLayer.TestTools/Properties/AssemblyInfo.cs b/src/Moryx.AbstractionLayer.TestTools/Properties/AssemblyInfo.cs deleted file mode 100644 index 3645339a..00000000 --- a/src/Moryx.AbstractionLayer.TestTools/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,16 +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("Moryx.AbstractionLayer.TestTools")] -[assembly: AssemblyDescription("Additional AbstractionLayer implementations for Tests")] - -// 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("1516374c-976f-49fc-a911-29edc481c657")] \ No newline at end of file diff --git a/src/Moryx.AbstractionLayer.TestTools/Resources/ResourceGraphMock.cs b/src/Moryx.AbstractionLayer.TestTools/Resources/ResourceGraphMock.cs index 0b2ff2bf..fd0442f3 100644 --- a/src/Moryx.AbstractionLayer.TestTools/Resources/ResourceGraphMock.cs +++ b/src/Moryx.AbstractionLayer.TestTools/Resources/ResourceGraphMock.cs @@ -4,7 +4,6 @@ using System; using System.Collections.Generic; using System.Linq; -using System.Management.Instrumentation; using Moryx.AbstractionLayer.Resources; using Moryx.TestTools.UnitTest; using Moryx.Tools; @@ -66,7 +65,7 @@ public Resource Instantiate(string type) var instance = Activator.CreateInstance(_typeMap[type]) as Resource; if (instance == null) { - throw new InstanceNotFoundException($"Cannot instantiate {type}"); + throw new InvalidOperationException($"Cannot instantiate {type}"); } SetReferenceCollections(instance); diff --git a/src/Moryx.AbstractionLayer.TestTools/packages.config b/src/Moryx.AbstractionLayer.TestTools/packages.config deleted file mode 100644 index 99b4b401..00000000 --- a/src/Moryx.AbstractionLayer.TestTools/packages.config +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/Moryx.AbstractionLayer/Moryx.AbstractionLayer.csproj b/src/Moryx.AbstractionLayer/Moryx.AbstractionLayer.csproj index df3b8cf1..e841a08f 100644 --- a/src/Moryx.AbstractionLayer/Moryx.AbstractionLayer.csproj +++ b/src/Moryx.AbstractionLayer/Moryx.AbstractionLayer.csproj @@ -1,238 +1,30 @@ - - - + + + + - Debug - AnyCPU - {841F50C1-DEC0-48D8-92D1-F860450940D8} - Library - Properties - Moryx.AbstractionLayer - Moryx.AbstractionLayer - v4.6.1 - 512 - - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - bin\Debug\Moryx.AbstractionLayer.XML - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - bin\Release\Moryx.AbstractionLayer.XML + netstandard2.0;net45 + true + AbstractionLayer + true + - - ..\..\packages\Moryx.3.0.0-dev.105\lib\netstandard2.0\Moryx.dll - - - ..\..\packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll - - - - ..\..\packages\System.ComponentModel.Annotations.4.7.0\lib\net461\System.ComponentModel.Annotations.dll - - - - + + - - Properties\GlobalAssemblyInfo.cs - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - True + True - Axes.tt - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - True - True Strings.resx - - - - - - - - - - - - - - TextTemplatingFileGenerator - Axes.cs - - - + - - - - - - - ResXFileCodeGenerator + + PublicResXFileCodeGenerator Strings.Designer.cs - - - - - - - \ No newline at end of file + diff --git a/src/Moryx.AbstractionLayer/Moryx.AbstractionLayer.nuspec b/src/Moryx.AbstractionLayer/Moryx.AbstractionLayer.nuspec deleted file mode 100644 index 7de18dc8..00000000 --- a/src/Moryx.AbstractionLayer/Moryx.AbstractionLayer.nuspec +++ /dev/null @@ -1,19 +0,0 @@ - - - - $id$ - $version$ - $title$ - PHOENIXCONTACT - $author$ - Apache-2.0 - false - https://www.phoenixcontact.com/favicon.ico - - $description$ - - - - - - \ No newline at end of file diff --git a/src/Moryx.AbstractionLayer/Properties/AssemblyInfo.cs b/src/Moryx.AbstractionLayer/Properties/AssemblyInfo.cs deleted file mode 100644 index 503ced60..00000000 --- a/src/Moryx.AbstractionLayer/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,28 +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("Moryx.AbstractionLayer")] -[assembly: AssemblyDescription("AbstractionLayer")] -[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("ee84a48b-511f-43ff-9af0-b7ebf81a7b9b")] - -// 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.*")] diff --git a/src/Moryx.AbstractionLayer/app.config b/src/Moryx.AbstractionLayer/app.config deleted file mode 100644 index 489867c1..00000000 --- a/src/Moryx.AbstractionLayer/app.config +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/src/Moryx.AbstractionLayer/packages.config b/src/Moryx.AbstractionLayer/packages.config deleted file mode 100644 index 352637dd..00000000 --- a/src/Moryx.AbstractionLayer/packages.config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/Moryx.Notifications/Moryx.Notifications.csproj b/src/Moryx.Notifications/Moryx.Notifications.csproj index 32aad45b..01a25741 100644 --- a/src/Moryx.Notifications/Moryx.Notifications.csproj +++ b/src/Moryx.Notifications/Moryx.Notifications.csproj @@ -1,98 +1,17 @@ - - - + + + + - Debug - AnyCPU - {4FB1BCA9-BD6D-478A-93C5-5CD4DE2A2337} - Library - Properties - Moryx.Notifications - Moryx.Notifications - v4.6.1 - 512 - + netstandard2.0;net45 + true + Notifications + true - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - bin\Debug\Moryx.Notifications.XML - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - bin\Release\Moryx.Notifications.XML - - - - ..\..\packages\Castle.Core.4.4.1\lib\net45\Castle.Core.dll - - - ..\..\packages\Castle.Windsor.5.0.1\lib\net45\Castle.Windsor.dll - - - ..\..\packages\Moryx.3.0.0-dev.105\lib\netstandard2.0\Moryx.dll - - - ..\..\packages\Moryx.Runtime.3.0.0-dev.105\lib\netstandard2.0\Moryx.Runtime.dll - - - ..\..\packages\Moryx.Tools.Wcf.3.0.0-dev.105\lib\net461\Moryx.Tools.Wcf.dll - - - ..\..\packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll - - - - ..\..\packages\System.ComponentModel.Annotations.4.7.0\lib\net461\System.ComponentModel.Annotations.dll - - - - - - - + - - Properties\GlobalAssemblyInfo.cs - - - - - - - - - - - - + + - - - - - - - - - - - - - \ No newline at end of file + + diff --git a/src/Moryx.Notifications/Moryx.Notifications.nuspec b/src/Moryx.Notifications/Moryx.Notifications.nuspec deleted file mode 100644 index 949a2dab..00000000 --- a/src/Moryx.Notifications/Moryx.Notifications.nuspec +++ /dev/null @@ -1,15 +0,0 @@ - - - - $id$ - $version$ - $title$ - PHOENIXCONTACT - $author$ - Apache-2.0 - false - https://www.phoenixcontact.com/favicon.ico - - $description$ - - \ No newline at end of file diff --git a/src/Moryx.Notifications/Properties/AssemblyInfo.cs b/src/Moryx.Notifications/Properties/AssemblyInfo.cs deleted file mode 100644 index 99f48ff1..00000000 --- a/src/Moryx.Notifications/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,28 +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("Moryx.Notification")] -[assembly: AssemblyDescription("Notifications")] -[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("ee5fb87f-b056-42cb-ad7b-131ac08ac926")] - -// 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.*")] \ No newline at end of file diff --git a/src/Moryx.Notifications/app.config b/src/Moryx.Notifications/app.config deleted file mode 100644 index 489867c1..00000000 --- a/src/Moryx.Notifications/app.config +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/src/Moryx.Notifications/packages.config b/src/Moryx.Notifications/packages.config deleted file mode 100644 index d9ae24da..00000000 --- a/src/Moryx.Notifications/packages.config +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/src/Moryx.Products.Management/Moryx.Products.Management.csproj b/src/Moryx.Products.Management/Moryx.Products.Management.csproj index e3074004..d688475a 100644 --- a/src/Moryx.Products.Management/Moryx.Products.Management.csproj +++ b/src/Moryx.Products.Management/Moryx.Products.Management.csproj @@ -1,218 +1,27 @@ - - - - + + + + - Debug - AnyCPU - {650756A0-E077-4632-8DA8-27214B5ACDA4} - Library - Properties - Moryx.Products.Management - Moryx.Products.Management - v4.6.1 - 512 - - - + net45 + true + MORYX Runtime Module: ProductManagement + true - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - bin\Debug\Moryx.Products.Management.xml - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - bin\Release\Moryx.Products.Management.xml - - - - ..\..\packages\Castle.Core.4.4.1\lib\net45\Castle.Core.dll - - - ..\..\packages\Castle.WcfIntegrationFacility.5.0.1\lib\net45\Castle.Facilities.WcfIntegration.dll - - - ..\..\packages\Castle.Windsor.5.0.1\lib\net45\Castle.Windsor.dll - - - ..\..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.dll - - - ..\..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.SqlServer.dll - - - ..\..\packages\Moryx.3.0.0-dev.105\lib\netstandard2.0\Moryx.dll - - - ..\..\packages\Moryx.Container.3.0.0-dev.105\lib\netstandard2.0\Moryx.Container.dll - - - ..\..\packages\Moryx.Model.3.0.0-dev.105\lib\net461\Moryx.Model.dll - - - ..\..\packages\Moryx.Runtime.3.0.0-dev.105\lib\netstandard2.0\Moryx.Runtime.dll - - - ..\..\packages\Moryx.Runtime.Wcf.3.0.0-dev.105\lib\net461\Moryx.Runtime.Wcf.dll - - - ..\..\packages\Moryx.Tools.Wcf.3.0.0-dev.105\lib\net461\Moryx.Tools.Wcf.dll - - - ..\..\packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll - - - - ..\..\packages\System.ComponentModel.Annotations.4.7.0\lib\net461\System.ComponentModel.Annotations.dll - - - - - - - - - - - - - - + - - Properties\GlobalAssemblyInfo.cs - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - {841f50c1-dec0-48d8-92d1-f860450940d8} - Moryx.AbstractionLayer - True - - - {99a470c6-1224-4475-937e-e7ca0266205c} - Moryx.Products.Model - True - + + + - - - - - - - - - - - - - - - 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/src/Moryx.Products.Management/Moryx.Products.Management.nuspec b/src/Moryx.Products.Management/Moryx.Products.Management.nuspec deleted file mode 100644 index 949a2dab..00000000 --- a/src/Moryx.Products.Management/Moryx.Products.Management.nuspec +++ /dev/null @@ -1,15 +0,0 @@ - - - - $id$ - $version$ - $title$ - PHOENIXCONTACT - $author$ - Apache-2.0 - false - https://www.phoenixcontact.com/favicon.ico - - $description$ - - \ No newline at end of file diff --git a/src/Moryx.Products.Management/Properties/AssemblyInfo.cs b/src/Moryx.Products.Management/Properties/AssemblyInfo.cs index ccbc2c08..cd002e49 100644 --- a/src/Moryx.Products.Management/Properties/AssemblyInfo.cs +++ b/src/Moryx.Products.Management/Properties/AssemblyInfo.cs @@ -1,38 +1,7 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; +using System.Runtime.CompilerServices; using Moryx.AbstractionLayer; using Moryx.Modules; -using Moryx.Products; -using Moryx.Products.Management; -// 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("Moryx.Products.Management")] -[assembly: AssemblyDescription("Moryx Runtime Module: ProductManagement")] -[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("f31704fe-753b-45e8-a7fd-adc4bdbaac24")] - -// 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.*")] - -// Moryx attributes [assembly: Bundle(AbstractionLayerBundle.Name, AbstractionLayerBundle.Version)] [assembly: InternalsVisibleTo("DynamicProxyGenAssembly2")] [assembly: InternalsVisibleTo("Moryx.Products.IntegrationTests")] diff --git a/src/Moryx.Products.Management/app.config b/src/Moryx.Products.Management/app.config index 82b81857..74612722 100644 --- a/src/Moryx.Products.Management/app.config +++ b/src/Moryx.Products.Management/app.config @@ -4,46 +4,6 @@
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/Moryx.Products.Management/packages.config b/src/Moryx.Products.Management/packages.config deleted file mode 100644 index b53835df..00000000 --- a/src/Moryx.Products.Management/packages.config +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/Moryx.Products.Model/App.config b/src/Moryx.Products.Model/App.config index 1b5803ba..47f3fb83 100644 --- a/src/Moryx.Products.Model/App.config +++ b/src/Moryx.Products.Model/App.config @@ -1,7 +1,7 @@  - + @@ -14,46 +14,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/Moryx.Products.Model/Moryx.Products.Model.csproj b/src/Moryx.Products.Model/Moryx.Products.Model.csproj index acda9029..a50d5744 100644 --- a/src/Moryx.Products.Model/Moryx.Products.Model.csproj +++ b/src/Moryx.Products.Model/Moryx.Products.Model.csproj @@ -1,163 +1,21 @@ - - - - + + + + - Debug - AnyCPU - {99A470C6-1224-4475-937E-E7CA0266205C} - Library - Properties - Moryx.Products.Model - Moryx.Products.Model - v4.6.1 - 512 - - - + netstandard2.1;net45 + true + Model for products + true - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - bin\Release\Moryx.Products.Model.XML - - - - ..\..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.dll - - - ..\..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.SqlServer.dll - - - ..\..\packages\EntityFramework6.Npgsql.6.4.1\lib\net461\EntityFramework6.Npgsql.dll - - - ..\..\packages\Microsoft.Bcl.AsyncInterfaces.1.1.1\lib\net461\Microsoft.Bcl.AsyncInterfaces.dll - - - ..\..\packages\Moryx.3.0.0-dev.105\lib\netstandard2.0\Moryx.dll - - - ..\..\packages\Moryx.Model.3.0.0-dev.105\lib\net461\Moryx.Model.dll - - - ..\..\packages\Moryx.Model.PostgreSQL.3.0.0-dev.105\lib\net461\Moryx.Model.PostgreSQL.dll - - - ..\..\packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll - - - ..\..\packages\Npgsql.4.1.4\lib\net461\Npgsql.dll - - - - ..\..\packages\System.Buffers.4.5.1\lib\net461\System.Buffers.dll - - - ..\..\packages\System.ComponentModel.Annotations.4.7.0\lib\net461\System.ComponentModel.Annotations.dll - - - - - - - ..\..\packages\System.Memory.4.5.4\lib\net461\System.Memory.dll - - - ..\..\packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll - - - ..\..\packages\System.Runtime.CompilerServices.Unsafe.4.7.1\lib\net461\System.Runtime.CompilerServices.Unsafe.dll - - - ..\..\packages\System.Text.Encodings.Web.4.7.1\lib\net461\System.Text.Encodings.Web.dll - - - ..\..\packages\System.Text.Json.4.7.2\lib\net461\System.Text.Json.dll - - - ..\..\packages\System.Threading.Tasks.Extensions.4.5.4\lib\net461\System.Threading.Tasks.Extensions.dll - - - - ..\..\packages\System.ValueTuple.4.5.0\lib\net461\System.ValueTuple.dll - True - - - + - - Properties\GlobalAssemblyInfo.cs - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - Designer - - - - - + + - - - - - 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/src/Moryx.Products.Model/Moryx.Products.Model.nuspec b/src/Moryx.Products.Model/Moryx.Products.Model.nuspec deleted file mode 100644 index 949a2dab..00000000 --- a/src/Moryx.Products.Model/Moryx.Products.Model.nuspec +++ /dev/null @@ -1,15 +0,0 @@ - - - - $id$ - $version$ - $title$ - PHOENIXCONTACT - $author$ - Apache-2.0 - false - https://www.phoenixcontact.com/favicon.ico - - $description$ - - \ No newline at end of file diff --git a/src/Moryx.Products.Model/Properties/AssemblyInfo.cs b/src/Moryx.Products.Model/Properties/AssemblyInfo.cs deleted file mode 100644 index 18d3a12a..00000000 --- a/src/Moryx.Products.Model/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,30 +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. -using Moryx.Modules; - -[assembly: AssemblyTitle("Moryx.Products.Model")] -[assembly: AssemblyDescription("Model for products")] -[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("497c8e16-343c-4f8e-8414-b8f24e64b5bf")] - -// 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.*")] diff --git a/src/Moryx.Products.Model/packages.config b/src/Moryx.Products.Model/packages.config deleted file mode 100644 index 46d9ed11..00000000 --- a/src/Moryx.Products.Model/packages.config +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/Moryx.Products.Samples/Moryx.Products.Samples.csproj b/src/Moryx.Products.Samples/Moryx.Products.Samples.csproj index 5d67770c..0d3f98c7 100644 --- a/src/Moryx.Products.Samples/Moryx.Products.Samples.csproj +++ b/src/Moryx.Products.Samples/Moryx.Products.Samples.csproj @@ -1,155 +1,17 @@ - - - - + + - Debug - AnyCPU - {00916431-5038-44B8-8BDA-4A1B13636F32} - Library - Properties - Moryx.Products.Samples - Moryx.Products.Samples - v4.6.1 - 512 - - - + net45 + true - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - false - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - - - ..\..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.dll - - - ..\..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.SqlServer.dll - - - ..\..\packages\EntityFramework6.Npgsql.6.4.1\lib\net461\EntityFramework6.Npgsql.dll - - - ..\..\packages\Microsoft.Bcl.AsyncInterfaces.1.1.1\lib\net461\Microsoft.Bcl.AsyncInterfaces.dll - - - ..\..\packages\Moryx.3.0.0-dev.105\lib\netstandard2.0\Moryx.dll - - - ..\..\packages\Moryx.Model.3.0.0-dev.105\lib\net461\Moryx.Model.dll - - - ..\..\packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll - - - ..\..\packages\Npgsql.4.1.4\lib\net461\Npgsql.dll - - - - ..\..\packages\System.Buffers.4.5.1\lib\net461\System.Buffers.dll - - - ..\..\packages\System.ComponentModel.Annotations.4.7.0\lib\net461\System.ComponentModel.Annotations.dll - - - - - ..\..\packages\System.Memory.4.5.4\lib\net461\System.Memory.dll - - - ..\..\packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll - - - ..\..\packages\System.Runtime.CompilerServices.Unsafe.4.7.1\lib\net461\System.Runtime.CompilerServices.Unsafe.dll - - - - ..\..\packages\System.Text.Encodings.Web.4.7.1\lib\net461\System.Text.Encodings.Web.dll - - - ..\..\packages\System.Text.Json.4.7.2\lib\net461\System.Text.Json.dll - - - ..\..\packages\System.Threading.Tasks.Extensions.4.5.4\lib\net461\System.Threading.Tasks.Extensions.dll - - - ..\..\packages\System.ValueTuple.4.5.0\lib\net461\System.ValueTuple.dll - - - - - - - - - - - - - - - - - - - - - + - - {841F50C1-DEC0-48D8-92D1-F860450940D8} - Moryx.AbstractionLayer - False - - - {99A470C6-1224-4475-937E-E7CA0266205C} - Moryx.Products.Model - False - - - {650756A0-E077-4632-8DA8-27214B5ACDA4} - Moryx.Products.Management - False - + + + - - - + - - - - 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/src/Moryx.Products.Samples/Properties/AssemblyInfo.cs b/src/Moryx.Products.Samples/Properties/AssemblyInfo.cs deleted file mode 100644 index 00041ab9..00000000 --- a/src/Moryx.Products.Samples/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("Moryx.Products.TestPlugins")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("PHOENIX CONTACT GmbH & Co. KG")] -[assembly: AssemblyProduct("Moryx.Products.TestPlugins")] -[assembly: AssemblyCopyright("Copyright © PHOENIX CONTACT GmbH & Co. KG 2016")] -[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("c626628e-efc4-403a-bda4-5b0a305f052e")] - -// 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/src/Moryx.Products.Samples/app.config b/src/Moryx.Products.Samples/app.config deleted file mode 100644 index e11c5546..00000000 --- a/src/Moryx.Products.Samples/app.config +++ /dev/null @@ -1,60 +0,0 @@ - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/Moryx.Products.Samples/packages.config b/src/Moryx.Products.Samples/packages.config deleted file mode 100644 index f8844055..00000000 --- a/src/Moryx.Products.Samples/packages.config +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/Moryx.Resources.Interaction/Moryx.Resources.Interaction.csproj b/src/Moryx.Resources.Interaction/Moryx.Resources.Interaction.csproj index 510897e2..f3065a3d 100644 --- a/src/Moryx.Resources.Interaction/Moryx.Resources.Interaction.csproj +++ b/src/Moryx.Resources.Interaction/Moryx.Resources.Interaction.csproj @@ -1,103 +1,22 @@ - - - + + + + - Debug - AnyCPU - {583CBD84-DD9F-4834-A89C-1625A05EE15D} - Library - Properties - Moryx.Resources.Interaction - Moryx.Resources.Interaction - v4.6.1 - 512 - + net45 + true + Provides the default implementation if the resource interaction + true - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - bin\Debug\Moryx.Resources.Interaction.XML - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - bin\Release\Moryx.Resources.Interaction.XML - - - - ..\..\packages\Castle.Core.4.4.1\lib\net45\Castle.Core.dll - - - ..\..\packages\Castle.Windsor.5.0.1\lib\net45\Castle.Windsor.dll - - - ..\..\packages\Moryx.3.0.0-dev.105\lib\netstandard2.0\Moryx.dll - - - ..\..\packages\Moryx.Tools.Wcf.3.0.0-dev.105\lib\net461\Moryx.Tools.Wcf.dll - - - ..\..\packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll - - - - ..\..\packages\System.ComponentModel.Annotations.4.7.0\lib\net461\System.ComponentModel.Annotations.dll - - - - - - - - - - - - Properties\GlobalAssemblyInfo.cs - - - - - - - - - - - - - - - - - + - - {841f50c1-dec0-48d8-92d1-f860450940d8} - Moryx.AbstractionLayer - + + + - - - - + + - - + \ No newline at end of file diff --git a/src/Moryx.Resources.Interaction/Moryx.Resources.Interaction.nuspec b/src/Moryx.Resources.Interaction/Moryx.Resources.Interaction.nuspec deleted file mode 100644 index 949a2dab..00000000 --- a/src/Moryx.Resources.Interaction/Moryx.Resources.Interaction.nuspec +++ /dev/null @@ -1,15 +0,0 @@ - - - - $id$ - $version$ - $title$ - PHOENIXCONTACT - $author$ - Apache-2.0 - false - https://www.phoenixcontact.com/favicon.ico - - $description$ - - \ No newline at end of file diff --git a/src/Moryx.Resources.Interaction/Properties/AssemblyInfo.cs b/src/Moryx.Resources.Interaction/Properties/AssemblyInfo.cs index 99b68834..3d1e581f 100644 --- a/src/Moryx.Resources.Interaction/Properties/AssemblyInfo.cs +++ b/src/Moryx.Resources.Interaction/Properties/AssemblyInfo.cs @@ -1,22 +1,4 @@ -using System.Reflection; -using System.Runtime.InteropServices; -using Moryx.AbstractionLayer; -using Moryx.AbstractionLayer.Resources; +using Moryx.AbstractionLayer; using Moryx.Modules; -// 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("Moryx.Resources.Interaction")] -[assembly: AssemblyDescription("Provides the default implementation if the resource interaction")] -[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("583cbd84-dd9f-4834-a89c-1625a05ee15d")] - [assembly: Bundle(AbstractionLayerBundle.Name, AbstractionLayerBundle.Version)] \ No newline at end of file diff --git a/src/Moryx.Resources.Interaction/app.config b/src/Moryx.Resources.Interaction/app.config deleted file mode 100644 index 489867c1..00000000 --- a/src/Moryx.Resources.Interaction/app.config +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/src/Moryx.Resources.Interaction/packages.config b/src/Moryx.Resources.Interaction/packages.config deleted file mode 100644 index 0613b403..00000000 --- a/src/Moryx.Resources.Interaction/packages.config +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/Moryx.Resources.Management/Moryx.Resources.Management.csproj b/src/Moryx.Resources.Management/Moryx.Resources.Management.csproj index d1296cf3..435cc8ec 100644 --- a/src/Moryx.Resources.Management/Moryx.Resources.Management.csproj +++ b/src/Moryx.Resources.Management/Moryx.Resources.Management.csproj @@ -1,213 +1,24 @@ - - - - + + + + - Debug - AnyCPU - {4CA4F6B5-4C26-4B99-8FB9-937971883083} - Library - Properties - Moryx.Resources.Management - Moryx.Resources.Management - v4.6.1 - 512 - - - + net45 + true + MORYX Runtime Module: ResourceManagement + true - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - bin\Release\Moryx.Resources.Management.XML - - - - ..\..\packages\Castle.Core.4.4.1\lib\net45\Castle.Core.dll - - - ..\..\packages\Castle.WcfIntegrationFacility.5.0.1\lib\net45\Castle.Facilities.WcfIntegration.dll - - - ..\..\packages\Castle.Windsor.5.0.1\lib\net45\Castle.Windsor.dll - - - ..\..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.dll - - - ..\..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.SqlServer.dll - - - ..\..\packages\EntityFramework6.Npgsql.6.4.1\lib\net461\EntityFramework6.Npgsql.dll - - - ..\..\packages\Microsoft.Bcl.AsyncInterfaces.1.1.1\lib\net461\Microsoft.Bcl.AsyncInterfaces.dll - - - ..\..\packages\Moryx.3.0.0-dev.105\lib\netstandard2.0\Moryx.dll - - - ..\..\packages\Moryx.Container.3.0.0-dev.105\lib\netstandard2.0\Moryx.Container.dll - - - ..\..\packages\Moryx.Model.3.0.0-dev.105\lib\net461\Moryx.Model.dll - - - ..\..\packages\Moryx.Model.PostgreSQL.3.0.0-dev.105\lib\net461\Moryx.Model.PostgreSQL.dll - - - ..\..\packages\Moryx.Runtime.3.0.0-dev.105\lib\netstandard2.0\Moryx.Runtime.dll - - - ..\..\packages\Moryx.Runtime.Wcf.3.0.0-dev.105\lib\net461\Moryx.Runtime.Wcf.dll - - - ..\..\packages\Moryx.Tools.Wcf.3.0.0-dev.105\lib\net461\Moryx.Tools.Wcf.dll - - - ..\..\packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll - - - ..\..\packages\Npgsql.4.1.4\lib\net461\Npgsql.dll - - - - ..\..\packages\System.Buffers.4.5.1\lib\net461\System.Buffers.dll - - - ..\..\packages\System.ComponentModel.Annotations.4.7.0\lib\net461\System.ComponentModel.Annotations.dll - - - - - - - - - ..\..\packages\System.Memory.4.5.4\lib\net461\System.Memory.dll - - - ..\..\packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll - - - ..\..\packages\System.Runtime.CompilerServices.Unsafe.4.7.1\lib\net461\System.Runtime.CompilerServices.Unsafe.dll - - - - - - - - - ..\..\packages\System.Text.Encodings.Web.4.7.1\lib\net461\System.Text.Encodings.Web.dll - - - ..\..\packages\System.Text.Json.4.7.2\lib\net461\System.Text.Json.dll - - - ..\..\packages\System.Threading.Tasks.Extensions.4.5.4\lib\net461\System.Threading.Tasks.Extensions.dll - - - ..\..\packages\System.ValueTuple.4.5.0\lib\net461\System.ValueTuple.dll - True - - - + - - Properties\GlobalAssemblyInfo.cs - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - + + + + - - - {841f50c1-dec0-48d8-92d1-f860450940d8} - Moryx.AbstractionLayer - True - - - {4FB1BCA9-BD6D-478A-93C5-5CD4DE2A2337} - Moryx.Notifications - True - - - - - - - - - - - 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/src/Moryx.Resources.Management/Moryx.Resources.Management.nuspec b/src/Moryx.Resources.Management/Moryx.Resources.Management.nuspec deleted file mode 100644 index 949a2dab..00000000 --- a/src/Moryx.Resources.Management/Moryx.Resources.Management.nuspec +++ /dev/null @@ -1,15 +0,0 @@ - - - - $id$ - $version$ - $title$ - PHOENIXCONTACT - $author$ - Apache-2.0 - false - https://www.phoenixcontact.com/favicon.ico - - $description$ - - \ No newline at end of file diff --git a/src/Moryx.Resources.Management/Properties/AssemblyInfo.cs b/src/Moryx.Resources.Management/Properties/AssemblyInfo.cs index 734fd956..e58cdf41 100644 --- a/src/Moryx.Resources.Management/Properties/AssemblyInfo.cs +++ b/src/Moryx.Resources.Management/Properties/AssemblyInfo.cs @@ -1,38 +1,8 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; +using System.Runtime.CompilerServices; using Moryx.AbstractionLayer; -using Moryx.AbstractionLayer.Resources; using Moryx.Modules; using Moryx.Resources.Management; -// 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("Moryx.Resources.Management")] -[assembly: AssemblyDescription("Moryx Runtime Module: ResourceManager")] -[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("f14d282b-a0e8-46d7-92b0-a173be7ce3da")] - -// 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.*")] - -// Moryx attributes [assembly: Bundle(AbstractionLayerBundle.Name, AbstractionLayerBundle.Version)] [assembly: InternalsVisibleTo("DynamicProxyGenAssembly2")] [assembly: InternalsVisibleTo(ResourceProxyBuilder.AssemblyName)] diff --git a/src/Moryx.Resources.Management/app.config b/src/Moryx.Resources.Management/app.config index 71541011..2f5db4c7 100644 --- a/src/Moryx.Resources.Management/app.config +++ b/src/Moryx.Resources.Management/app.config @@ -1,52 +1,9 @@  - - - - +
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/Moryx.Resources.Management/packages.config b/src/Moryx.Resources.Management/packages.config deleted file mode 100644 index 5b00c040..00000000 --- a/src/Moryx.Resources.Management/packages.config +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/Moryx.Resources.Samples/Moryx.Resources.Samples.csproj b/src/Moryx.Resources.Samples/Moryx.Resources.Samples.csproj index e91e45de..81242732 100644 --- a/src/Moryx.Resources.Samples/Moryx.Resources.Samples.csproj +++ b/src/Moryx.Resources.Samples/Moryx.Resources.Samples.csproj @@ -1,102 +1,17 @@ - - - + + - Debug - AnyCPU - {23F6025E-1348-4ABF-A908-C5D360F9D486} - Library - Properties - Moryx.Resources.Samples - Moryx.Resources.Samples - v4.6.1 - 512 - + net45 + true - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - bin\Release\Moryx.Resources.Samples.XML - - - - ..\..\packages\Castle.Core.4.4.1\lib\net45\Castle.Core.dll - - - ..\..\packages\Castle.Windsor.5.0.1\lib\net45\Castle.Windsor.dll - - - ..\..\packages\Moryx.3.0.0-dev.105\lib\netstandard2.0\Moryx.dll - - - ..\..\packages\Moryx.Tools.Wcf.3.0.0-dev.105\lib\net461\Moryx.Tools.Wcf.dll - - - ..\..\packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll - - - - ..\..\packages\System.ComponentModel.Annotations.4.7.0\lib\net461\System.ComponentModel.Annotations.dll - - - - - - - - - - - - - - - - - - - - - - - + - - {841F50C1-DEC0-48D8-92D1-F860450940D8} - Moryx.AbstractionLayer - False - - - {583cbd84-dd9f-4834-a89c-1625a05ee15d} - Moryx.Resources.Interaction - False - + + + - - + - - + \ No newline at end of file diff --git a/src/Moryx.Resources.Samples/Properties/AssemblyInfo.cs b/src/Moryx.Resources.Samples/Properties/AssemblyInfo.cs deleted file mode 100644 index c28343ee..00000000 --- a/src/Moryx.Resources.Samples/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("Moryx.Resources.Samples")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("PHOENIX CONTACT GmbH & Co. KG")] -[assembly: AssemblyProduct("Moryx.Resources.Samples")] -[assembly: AssemblyCopyright("Copyright © PHOENIX CONTACT GmbH & Co. KG 2017")] -[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("23f6025e-1348-4abf-a908-c5d360f9d486")] - -// 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/src/Moryx.Resources.Samples/packages.config b/src/Moryx.Resources.Samples/packages.config deleted file mode 100644 index 0613b403..00000000 --- a/src/Moryx.Resources.Samples/packages.config +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/StartProject/App.config b/src/StartProject/App.config deleted file mode 100644 index 1f0feb4e..00000000 --- a/src/StartProject/App.config +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/StartProject/Program.cs b/src/StartProject/Program.cs index 749549cc..32f63075 100644 --- a/src/StartProject/Program.cs +++ b/src/StartProject/Program.cs @@ -4,9 +4,9 @@ namespace StartProject { class Program { - static void Main(string[] args) + static int Main(string[] args) { - new HeartOfGold(args).Run(); + return (int)new HeartOfGold(args).Run(); } } } diff --git a/src/StartProject/Properties/AssemblyInfo.cs b/src/StartProject/Properties/AssemblyInfo.cs deleted file mode 100644 index 598edfac..00000000 --- a/src/StartProject/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("AbstractionLayer")] -[assembly: AssemblyDescription("StartProject of the AbstractionLayer. This is for debugging only.")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("PHOENIX CONTACT GmbH & Co. KG")] -[assembly: AssemblyProduct("StartProject")] -[assembly: AssemblyCopyright("Copyright © PHOENIX CONTACT GmbH & Co. KG 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("08b7686d-63c7-498c-90f0-b756e93575dd")] - -// 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/src/StartProject/StartProject.csproj b/src/StartProject/StartProject.csproj index a5c798f4..bbe2c2fd 100644 --- a/src/StartProject/StartProject.csproj +++ b/src/StartProject/StartProject.csproj @@ -1,230 +1,24 @@ - - - - + + - Debug - AnyCPU - {08B7686D-63C7-498C-90F0-B756E93575DD} + net45 + StartProject of the AbstractionLayer. This is for debugging only. Exe - Properties - StartProject - StartProject - v4.6.1 - 512 - true - - publish\ - true - Disk - false - Foreground - 7 - Days - false - false - true - 0 - 1.0.0.%2a - false - false - true - - - - AnyCPU - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - AnyCPU - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - ..\..\packages\Castle.Core.4.4.1\lib\net45\Castle.Core.dll - - - ..\..\packages\Castle.WcfIntegrationFacility.5.0.1\lib\net45\Castle.Facilities.WcfIntegration.dll - - - ..\..\packages\Castle.Windsor.5.0.1\lib\net45\Castle.Windsor.dll - - - ..\..\packages\CommandLineParser.2.8.0\lib\net461\CommandLine.dll - - - ..\..\packages\Common.Logging.3.4.1\lib\net40\Common.Logging.dll - True - - - ..\..\packages\Common.Logging.Core.3.4.1\lib\net40\Common.Logging.Core.dll - True - - - ..\..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.dll - - - ..\..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.SqlServer.dll - - - ..\..\packages\EntityFramework6.Npgsql.6.4.1\lib\net461\EntityFramework6.Npgsql.dll - - - ..\..\packages\Microsoft.Bcl.AsyncInterfaces.1.1.1\lib\net461\Microsoft.Bcl.AsyncInterfaces.dll - - - - ..\..\packages\Moryx.3.0.0-dev.105\lib\netstandard2.0\Moryx.dll - - - ..\..\packages\Moryx.Container.3.0.0-dev.105\lib\netstandard2.0\Moryx.Container.dll - - - ..\..\packages\Moryx.Model.3.0.0-dev.105\lib\net461\Moryx.Model.dll - - - ..\..\packages\Moryx.Model.PostgreSQL.3.0.0-dev.105\lib\net461\Moryx.Model.PostgreSQL.dll - - - ..\..\packages\Moryx.Runtime.3.0.0-dev.105\lib\netstandard2.0\Moryx.Runtime.dll - - - ..\..\packages\Moryx.Runtime.Kernel.3.0.0-dev.105\lib\netstandard2.0\Moryx.Runtime.Kernel.dll - - - ..\..\packages\Moryx.Runtime.Maintenance.3.0.0-dev.105\lib\net461\Moryx.Runtime.Maintenance.dll - - - ..\..\packages\Moryx.Runtime.Maintenance.Web.3.0.0-dev.32\lib\net461\Moryx.Runtime.Maintenance.Web.dll - - - ..\..\packages\Moryx.Runtime.Wcf.3.0.0-dev.105\lib\net461\Moryx.Runtime.Wcf.dll - - - ..\..\packages\Moryx.Tools.Wcf.3.0.0-dev.105\lib\net461\Moryx.Tools.Wcf.dll - - - ..\..\packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll - - - ..\..\packages\Npgsql.4.1.4\lib\net461\Npgsql.dll - - - - ..\..\packages\System.Buffers.4.5.1\lib\net461\System.Buffers.dll - - - ..\..\packages\System.ComponentModel.Annotations.4.7.0\lib\net461\System.ComponentModel.Annotations.dll - - - - - - - ..\..\packages\System.Memory.4.5.4\lib\net461\System.Memory.dll - - - ..\..\packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll - - - ..\..\packages\System.Runtime.CompilerServices.Unsafe.4.7.1\lib\net461\System.Runtime.CompilerServices.Unsafe.dll - - - ..\..\packages\System.Text.Encodings.Web.4.7.1\lib\net461\System.Text.Encodings.Web.dll - - - ..\..\packages\System.Text.Json.4.7.2\lib\net461\System.Text.Json.dll - - - ..\..\packages\System.Threading.Tasks.Extensions.4.5.4\lib\net461\System.Threading.Tasks.Extensions.dll - - - - ..\..\packages\System.ValueTuple.4.5.0\lib\net461\System.ValueTuple.dll - True - - - - - - - - - - - + - - {841f50c1-dec0-48d8-92d1-f860450940d8} - Moryx.AbstractionLayer - - - {4fb1bca9-bd6d-478a-93c5-5cd4de2a2337} - Moryx.Notifications - - - {650756a0-e077-4632-8da8-27214b5acda4} - Moryx.Products.Management - - - {99a470c6-1224-4475-937e-e7ca0266205c} - Moryx.Products.Model - - - {00916431-5038-44b8-8bda-4a1b13636f32} - Moryx.Products.Samples - - - {583cbd84-dd9f-4834-a89c-1625a05ee15d} - Moryx.Resources.Interaction - - - {4ca4f6b5-4c26-4b99-8fb9-937971883083} - Moryx.Resources.Management - - - {23f6025e-1348-4abf-a908-c5d360f9d486} - Moryx.Resources.Samples - + + + + + - - False - Microsoft .NET Framework 4.6.1 %28x86 and x64%29 - true - - - False - .NET Framework 3.5 SP1 - false - + + + + + - - - - 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/src/Tests/Moryx.AbstractionLayer.Tests/Moryx.AbstractionLayer.Tests.csproj b/src/Tests/Moryx.AbstractionLayer.Tests/Moryx.AbstractionLayer.Tests.csproj index b5d0c60e..8dbff253 100644 --- a/src/Tests/Moryx.AbstractionLayer.Tests/Moryx.AbstractionLayer.Tests.csproj +++ b/src/Tests/Moryx.AbstractionLayer.Tests/Moryx.AbstractionLayer.Tests.csproj @@ -1,108 +1,20 @@ - - - - - + + - Debug - AnyCPU - {E7BCFD1C-D140-467E-BDFB-C7013DC59171} - Library - Properties - Moryx.AbstractionLayer.Tests - Moryx.AbstractionLayer.Tests - v4.6.1 - 512 - - - - - - true + net45 + false full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 + - - ..\..\..\packages\Castle.Core.4.4.1\lib\net45\Castle.Core.dll - - - ..\..\..\packages\Moq.4.14.5\lib\net45\Moq.dll - - - ..\..\..\packages\Moryx.3.0.0-dev.105\lib\netstandard2.0\Moryx.dll - - - ..\..\..\packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll - - - ..\..\..\packages\NUnit.3.12.0\lib\net45\nunit.framework.dll - - - - ..\..\..\packages\System.ComponentModel.Annotations.4.7.0\lib\net461\System.ComponentModel.Annotations.dll - - - - - - ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.7.1\lib\net461\System.Runtime.CompilerServices.Unsafe.dll - - - ..\..\..\packages\System.Threading.Tasks.Extensions.4.5.4\lib\net461\System.Threading.Tasks.Extensions.dll - - - - - - - - - - - - - - {841F50C1-DEC0-48D8-92D1-F860450940D8} - Moryx.AbstractionLayer - - - {00916431-5038-44b8-8bda-4a1b13636f32} - Moryx.Products.Samples - - - - - - + + + + - + + - - - - 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/src/Tests/Moryx.AbstractionLayer.Tests/Properties/AssemblyInfo.cs b/src/Tests/Moryx.AbstractionLayer.Tests/Properties/AssemblyInfo.cs deleted file mode 100644 index 2a15ad69..00000000 --- a/src/Tests/Moryx.AbstractionLayer.Tests/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("Moryx.AbstractionLayer.Constrains.Tests")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("PHOENIX CONTACT GmbH & Co. KG")] -[assembly: AssemblyProduct("Moryx.AbstractionLayer.Constrains.Tests")] -[assembly: AssemblyCopyright("Copyright © PHOENIX CONTACT GmbH & Co. KG 2017")] -[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("e7bcfd1c-d140-467e-bdfb-c7013dc59171")] - -// 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/src/Tests/Moryx.AbstractionLayer.Tests/app.config b/src/Tests/Moryx.AbstractionLayer.Tests/app.config deleted file mode 100644 index eb639f38..00000000 --- a/src/Tests/Moryx.AbstractionLayer.Tests/app.config +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/Tests/Moryx.AbstractionLayer.Tests/packages.config b/src/Tests/Moryx.AbstractionLayer.Tests/packages.config deleted file mode 100644 index 9e12cd9e..00000000 --- a/src/Tests/Moryx.AbstractionLayer.Tests/packages.config +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/src/Tests/Moryx.Notifications.Tests/Moryx.Notifications.Tests.csproj b/src/Tests/Moryx.Notifications.Tests/Moryx.Notifications.Tests.csproj index 28440a97..4d58c052 100644 --- a/src/Tests/Moryx.Notifications.Tests/Moryx.Notifications.Tests.csproj +++ b/src/Tests/Moryx.Notifications.Tests/Moryx.Notifications.Tests.csproj @@ -1,95 +1,20 @@ - - - - - + + - Debug - AnyCPU - {93650069-26E9-4E0D-A336-9D02F1039346} Library - Properties - Moryx.Notifications.Tests - Moryx.Notifications.Tests - v4.6.1 - 512 - - - - - - true + netcoreapp3.1 full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 + - - ..\..\..\packages\Castle.Core.4.4.1\lib\net45\Castle.Core.dll - - - ..\..\..\packages\Moq.4.14.5\lib\net45\Moq.dll - - - ..\..\..\packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll - - - ..\..\..\packages\NUnit.3.12.0\lib\net45\nunit.framework.dll - - - - ..\..\..\packages\System.ComponentModel.Annotations.4.7.0\lib\net461\System.ComponentModel.Annotations.dll - - - - - - ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.7.1\lib\net461\System.Runtime.CompilerServices.Unsafe.dll - - - ..\..\..\packages\System.Threading.Tasks.Extensions.4.5.4\lib\net461\System.Threading.Tasks.Extensions.dll - - - - - - - - - {4fb1bca9-bd6d-478a-93c5-5cd4de2a2337} - Moryx.Notifications - - - - - + + + + + - + - - - - 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/src/Tests/Moryx.Notifications.Tests/Properties/AssemblyInfo.cs b/src/Tests/Moryx.Notifications.Tests/Properties/AssemblyInfo.cs deleted file mode 100644 index dac19942..00000000 --- a/src/Tests/Moryx.Notifications.Tests/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("Moryx.Notifications.Tests")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("PHOENIX CONTACT GmbH & Co. KG")] -[assembly: AssemblyProduct("Moryx.Notifications.Tests")] -[assembly: AssemblyCopyright("Copyright © PHOENIX CONTACT GmbH & Co. KG 2017")] -[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("93650069-26e9-4e0d-a336-9d02f1039346")] - -// 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/src/Tests/Moryx.Notifications.Tests/app.config b/src/Tests/Moryx.Notifications.Tests/app.config deleted file mode 100644 index afd4cf3e..00000000 --- a/src/Tests/Moryx.Notifications.Tests/app.config +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/Tests/Moryx.Notifications.Tests/packages.config b/src/Tests/Moryx.Notifications.Tests/packages.config deleted file mode 100644 index c0814351..00000000 --- a/src/Tests/Moryx.Notifications.Tests/packages.config +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/src/Tests/Moryx.Products.IntegrationTests/Moryx.Products.IntegrationTests.csproj b/src/Tests/Moryx.Products.IntegrationTests/Moryx.Products.IntegrationTests.csproj index 24dcb927..c116a7ae 100644 --- a/src/Tests/Moryx.Products.IntegrationTests/Moryx.Products.IntegrationTests.csproj +++ b/src/Tests/Moryx.Products.IntegrationTests/Moryx.Products.IntegrationTests.csproj @@ -1,143 +1,20 @@ - - - - - - + + - Debug - AnyCPU - {88D15860-19C3-4E02-A7F1-2E1EACE87963} - Library - Properties - Moryx.Products.IntegrationTests - Moryx.Products.IntegrationTests - v4.6.1 - 512 - - - - - - true + net45 + false full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 + - - ..\..\..\packages\Castle.Core.4.4.1\lib\net45\Castle.Core.dll - - - ..\..\..\packages\Effort.EF6.2.2.10\lib\net45\Effort.dll - - - ..\..\..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.dll - - - ..\..\..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.SqlServer.dll - - - ..\..\..\packages\Moq.4.14.5\lib\net45\Moq.dll - - - ..\..\..\packages\Moryx.3.0.0-dev.105\lib\netstandard2.0\Moryx.dll - - - ..\..\..\packages\Moryx.Model.3.0.0-dev.105\lib\net461\Moryx.Model.dll - - - ..\..\..\packages\Moryx.Model.InMemory.3.0.0-dev.105\lib\net461\Moryx.Model.InMemory.dll - - - ..\..\..\packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll - - - ..\..\..\packages\NMemory.3.1.1\lib\net45\NMemory.dll - - - ..\..\..\packages\NUnit.3.12.0\lib\net45\nunit.framework.dll - - - - ..\..\..\packages\System.ComponentModel.Annotations.4.7.0\lib\net461\System.ComponentModel.Annotations.dll - - - - - - ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.7.1\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\net461\System.ValueTuple.dll - - - - - - - - - - - - {841F50C1-DEC0-48D8-92D1-F860450940D8} - Moryx.AbstractionLayer - - - {650756a0-e077-4632-8da8-27214b5acda4} - Moryx.Products.Management - - - {99a470c6-1224-4475-937e-e7ca0266205c} - Moryx.Products.Model - - - {00916431-5038-44B8-8BDA-4A1B13636F32} - Moryx.Products.Samples - - - - - Designer - - - - Designer - + + + + + - + - - - - 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/src/Tests/Moryx.Products.IntegrationTests/Properties/AssemblyInfo.cs b/src/Tests/Moryx.Products.IntegrationTests/Properties/AssemblyInfo.cs deleted file mode 100644 index 28c16828..00000000 --- a/src/Tests/Moryx.Products.IntegrationTests/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("Moryx.Products.IntegrationTest")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("PHOENIX CONTACT GmbH & Co. KG")] -[assembly: AssemblyProduct("Moryx.Products.IntegrationTest")] -[assembly: AssemblyCopyright("Copyright © PHOENIX CONTACT GmbH & Co. KG 2016")] -[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("71835392-f77f-4533-95a4-448e4bb01dd8")] - -// 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/src/Tests/Moryx.Products.IntegrationTests/app.config b/src/Tests/Moryx.Products.IntegrationTests/app.config deleted file mode 100644 index fd54bca0..00000000 --- a/src/Tests/Moryx.Products.IntegrationTests/app.config +++ /dev/null @@ -1,65 +0,0 @@ - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/Tests/Moryx.Products.IntegrationTests/packages.config b/src/Tests/Moryx.Products.IntegrationTests/packages.config deleted file mode 100644 index c0c23159..00000000 --- a/src/Tests/Moryx.Products.IntegrationTests/packages.config +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/Tests/Moryx.Resources.Management.Tests/Moryx.Resources.Management.Tests.csproj b/src/Tests/Moryx.Resources.Management.Tests/Moryx.Resources.Management.Tests.csproj index e3642d77..c18e39fc 100644 --- a/src/Tests/Moryx.Resources.Management.Tests/Moryx.Resources.Management.Tests.csproj +++ b/src/Tests/Moryx.Resources.Management.Tests/Moryx.Resources.Management.Tests.csproj @@ -1,152 +1,22 @@ - - - - - - + + - Debug - AnyCPU - {65D88A79-9239-4BF6-AAD3-29E432A9DEDB} - Library - Properties - Moryx.Resources.Management.Tests - Moryx.Resources.Management.Tests - v4.6.1 - 512 - - - - - - true + net45 + false full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 + - - ..\..\..\packages\Castle.Core.4.4.1\lib\net45\Castle.Core.dll - - - ..\..\..\packages\Castle.Windsor.5.0.1\lib\net45\Castle.Windsor.dll - - - ..\..\..\packages\Effort.EF6.2.2.10\lib\net45\Effort.dll - - - ..\..\..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.dll - - - ..\..\..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.SqlServer.dll - - - ..\..\..\packages\Moq.4.14.5\lib\net45\Moq.dll - - - ..\..\..\packages\Moryx.3.0.0-dev.105\lib\netstandard2.0\Moryx.dll - - - ..\..\..\packages\Moryx.Model.3.0.0-dev.105\lib\net461\Moryx.Model.dll - - - ..\..\..\packages\Moryx.Model.InMemory.3.0.0-dev.105\lib\net461\Moryx.Model.InMemory.dll - - - ..\..\..\packages\Moryx.Runtime.3.0.0-dev.105\lib\netstandard2.0\Moryx.Runtime.dll - - - ..\..\..\packages\Moryx.TestTools.UnitTest.3.0.0-dev.105\lib\netstandard2.0\Moryx.TestTools.UnitTest.dll - - - ..\..\..\packages\Moryx.Tools.Wcf.3.0.0-dev.105\lib\net461\Moryx.Tools.Wcf.dll - - - ..\..\..\packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll - - - ..\..\..\packages\NMemory.3.1.1\lib\net45\NMemory.dll - - - ..\..\..\packages\NUnit.3.12.0\lib\net45\nunit.framework.dll - - - - ..\..\..\packages\System.ComponentModel.Annotations.4.7.0\lib\net461\System.ComponentModel.Annotations.dll - - - - - - ..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.7.1\lib\net461\System.Runtime.CompilerServices.Unsafe.dll - - - - ..\..\..\packages\System.Threading.Tasks.Extensions.4.5.4\lib\net461\System.Threading.Tasks.Extensions.dll - - - - - - - - - - - - - - - - - - - {841f50c1-dec0-48d8-92d1-f860450940d8} - Moryx.AbstractionLayer - - - {1516374c-976f-49fc-a911-29edc481c657} - Moryx.AbstractionLayer.TestTools - - - {4ca4f6b5-4c26-4b99-8fb9-937971883083} - Moryx.Resources.Management - - - - - - + + + + + - + + + - - - - 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/src/Tests/Moryx.Resources.Management.Tests/Properties/AssemblyInfo.cs b/src/Tests/Moryx.Resources.Management.Tests/Properties/AssemblyInfo.cs deleted file mode 100644 index b2563cf8..00000000 --- a/src/Tests/Moryx.Resources.Management.Tests/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("Moryx.Resources.Management.Tests")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("PHOENIX CONTACT GmbH & Co. KG")] -[assembly: AssemblyProduct("Moryx.Resources.Management.Tests")] -[assembly: AssemblyCopyright("Copyright © PHOENIX CONTACT GmbH & Co. KG 2017")] -[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("65d88a79-9239-4bf6-aad3-29e432a9dedb")] - -// 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/src/Tests/Moryx.Resources.Management.Tests/app.config b/src/Tests/Moryx.Resources.Management.Tests/app.config deleted file mode 100644 index f4225886..00000000 --- a/src/Tests/Moryx.Resources.Management.Tests/app.config +++ /dev/null @@ -1,73 +0,0 @@ - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/Tests/Moryx.Resources.Management.Tests/packages.config b/src/Tests/Moryx.Resources.Management.Tests/packages.config deleted file mode 100644 index faa4ac1b..00000000 --- a/src/Tests/Moryx.Resources.Management.Tests/packages.config +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - \ No newline at end of file