From 00a491d93733d4625ad329b2ba8237f445364b3f Mon Sep 17 00:00:00 2001 From: Mirta Date: Wed, 30 Dec 2020 16:39:52 +0200 Subject: merge --- .../Tango.PPC.Packages.Auth2/Auth2.cs | 79 ------------------- .../Properties/AssemblyInfo.cs | 36 --------- .../Tango.PPC.Packages.Auth2.csproj | 88 ---------------------- .../Tango.PPC.Packages.Auth2/app.config | 39 ---------- .../Tango.PPC.Packages.Auth2/packages.config | 4 - .../CefInstaller.cs | 58 -------------- .../Properties/AssemblyInfo.cs | 36 --------- .../Tango.PPC.Packages.CefInstaller.csproj | 77 ------------------- .../App.config | 49 ------------ .../JobRunsStartTimePatch.cs | 41 ---------- .../Properties/AssemblyInfo.cs | 36 --------- ...Tango.PPC.Packages.JobRunsStartTimePatch.csproj | 88 ---------------------- .../packages.config | 4 - .../Properties/AssemblyInfo.cs | 36 --------- .../SamplePostPackage.cs | 23 ------ .../Tango.PPC.Packages.SamplePostPackage.csproj | 70 ----------------- .../Properties/AssemblyInfo.cs | 36 --------- .../SamplePrePackage.cs | 23 ------ .../Tango.PPC.Packages.SamplePrePackage.csproj | 70 ----------------- 19 files changed, 893 deletions(-) delete mode 100644 Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.Auth2/Auth2.cs delete mode 100644 Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.Auth2/Properties/AssemblyInfo.cs delete mode 100644 Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.Auth2/Tango.PPC.Packages.Auth2.csproj delete mode 100644 Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.Auth2/app.config delete mode 100644 Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.Auth2/packages.config delete mode 100644 Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.CefInstaller/CefInstaller.cs delete mode 100644 Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.CefInstaller/Properties/AssemblyInfo.cs delete mode 100644 Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.CefInstaller/Tango.PPC.Packages.CefInstaller.csproj delete mode 100644 Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.JobRunsStartTimePatch/App.config delete mode 100644 Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.JobRunsStartTimePatch/JobRunsStartTimePatch.cs delete mode 100644 Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.JobRunsStartTimePatch/Properties/AssemblyInfo.cs delete mode 100644 Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.JobRunsStartTimePatch/Tango.PPC.Packages.JobRunsStartTimePatch.csproj delete mode 100644 Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.JobRunsStartTimePatch/packages.config delete mode 100644 Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.SamplePostPackage/Properties/AssemblyInfo.cs delete mode 100644 Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.SamplePostPackage/SamplePostPackage.cs delete mode 100644 Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.SamplePostPackage/Tango.PPC.Packages.SamplePostPackage.csproj delete mode 100644 Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.SamplePrePackage/Properties/AssemblyInfo.cs delete mode 100644 Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.SamplePrePackage/SamplePrePackage.cs delete mode 100644 Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.SamplePrePackage/Tango.PPC.Packages.SamplePrePackage.csproj (limited to 'Software/Visual_Studio/PPC/UpdatePackages') diff --git a/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.Auth2/Auth2.cs b/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.Auth2/Auth2.cs deleted file mode 100644 index 6ba278511..000000000 --- a/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.Auth2/Auth2.cs +++ /dev/null @@ -1,79 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading; -using System.Threading.Tasks; -using Tango.BL; -using Tango.Core; -using Tango.PPC.Common.UpdatePackages; -using Tango.PPC.Shared.Updates; - -namespace Tango.PPC.Packages.Auth2 -{ - [PPCPackage(PackageType.Pre, "Applying Auth2 Patch", false)] - public class Auth2 : ExtendedObject, IPPCPackage - { - public Task Run(PackageContext context) - { - return Task.Factory.StartNew(() => - { - LogManager.Log("Starting Auth2 package procedure..."); - - using (ObservablesContext db = ObservablesContext.CreateDefault()) - { - using (var transaction = db.Database.BeginTransaction()) - { - LogManager.Log("Setting all jobs users to null..."); - context.ReportProgress("Modifying jobs..."); - db.Database.ExecuteSqlCommand("ALTER TABLE JOBS ALTER COLUMN USER_GUID VARCHAR(36) NULL"); - db.Database.ExecuteSqlCommand("UPDATE JOBS SET USER_GUID = NULL"); - - Thread.Sleep(1000); - - LogManager.Log("Setting all job runs users to null..."); - context.ReportProgress("Modifying job runs..."); - db.Database.ExecuteSqlCommand("UPDATE JOB_RUNS SET USER_GUID = NULL"); - - Thread.Sleep(1000); - - LogManager.Log("Setting all events users to null..."); - context.ReportProgress("Modifying events..."); - db.Database.ExecuteSqlCommand("UPDATE MACHINES_EVENTS SET USER_GUID = NULL"); - - Thread.Sleep(1000); - - LogManager.Log("Removing all users..."); - context.ReportProgress("Modifying users..."); - db.Database.ExecuteSqlCommand("DELETE FROM USERS"); - - Thread.Sleep(1000); - - LogManager.Log("Removing redundant addresses..."); - context.ReportProgress("Modifying addresses..."); - db.Database.ExecuteSqlCommand(@" -DELETE ADDRESSES FROM ADDRESSES -FULL JOIN ORGANIZATIONS ON ORGANIZATIONS.ADDRESS_GUID = ADDRESSES.GUID -WHERE ORGANIZATIONS.ADDRESS_GUID IS NULL"); - - Thread.Sleep(1000); - - LogManager.Log("Removing redundant contacts..."); - context.ReportProgress("Modifying contacts..."); - db.Database.ExecuteSqlCommand(@" -DELETE CONTACTS FROM CONTACTS -FULL JOIN ORGANIZATIONS ON ORGANIZATIONS.CONTACT_GUID = CONTACTS.GUID -WHERE ORGANIZATIONS.CONTACT_GUID IS NULL"); - - Thread.Sleep(1000); - - LogManager.Log("Committing transaction..."); - context.ReportProgress("Committing transaction..."); - transaction.Commit(); - } - } - - }); - } - } -} diff --git a/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.Auth2/Properties/AssemblyInfo.cs b/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.Auth2/Properties/AssemblyInfo.cs deleted file mode 100644 index 998c2463e..000000000 --- a/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.Auth2/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("Tango.PPC.Packages.Auth2")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("Tango.PPC.Packages.Auth2")] -[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("ea4233f1-4b7b-4ccf-a6de-2d17612eba90")] - -// 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/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.Auth2/Tango.PPC.Packages.Auth2.csproj b/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.Auth2/Tango.PPC.Packages.Auth2.csproj deleted file mode 100644 index bd91c2b60..000000000 --- a/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.Auth2/Tango.PPC.Packages.Auth2.csproj +++ /dev/null @@ -1,88 +0,0 @@ - - - - - Debug - AnyCPU - {EA4233F1-4B7B-4CCF-A6DE-2D17612EBA90} - Library - Properties - Tango.PPC.Packages.Auth2 - Tango.PPC.Packages.Auth2 - v4.6.1 - 512 - true - - - true - full - false - ..\..\..\Build\PPC\Debug\Packages\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - ..\..\..\Build\PPC\Release\Packages\ - TRACE - prompt - 4 - - - - ..\..\..\packages\EntityFramework.6.2.0\lib\net45\EntityFramework.dll - False - - - ..\..\..\packages\EntityFramework.6.2.0\lib\net45\EntityFramework.SqlServer.dll - False - - - - - - - - - - - - - - - - - - {F441FEEE-322A-4943-B566-110E12FD3B72} - Tango.BL - False - - - {A34EE0F0-649D-41C8-8489-B6F1CC6924EE} - Tango.Core - False - - - {bc932dbd-7cdb-488c-99e4-f02cf441f55e} - Tango.Logging - False - - - {0be74eee-22cb-4dba-b896-793b9e1a3ac0} - Tango.PPC.Common - False - - - {208c8bd8-72c6-4e3c-acaa-351091a2acc7} - Tango.PPC.Shared - False - - - - - - - - \ No newline at end of file diff --git a/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.Auth2/app.config b/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.Auth2/app.config deleted file mode 100644 index 4e9a59d89..000000000 --- a/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.Auth2/app.config +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.Auth2/packages.config b/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.Auth2/packages.config deleted file mode 100644 index b3daf0d6c..000000000 --- a/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.Auth2/packages.config +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.CefInstaller/CefInstaller.cs b/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.CefInstaller/CefInstaller.cs deleted file mode 100644 index a4ea5dc4f..000000000 --- a/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.CefInstaller/CefInstaller.cs +++ /dev/null @@ -1,58 +0,0 @@ -using System; -using System.Collections.Generic; -using System.IO.Compression; -using System.Linq; -using System.Reflection; -using System.Text; -using System.Threading; -using System.Threading.Tasks; -using Tango.Core; -using Tango.Core.Helpers; -using Tango.PPC.Common.UpdatePackages; -using Tango.PPC.Shared.Updates; -using Tango.Transport.Web; - -namespace Tango.PPC.Packages.CefInstaller -{ - [PPCPackage(PackageType.Post, "Installing Web Browser", true)] - public class CefInstaller : ExtendedObject, IPPCPackage - { - public Task Run(PackageContext context) - { - return Task.Factory.StartNew(() => - { - LogManager.Log("Downloading cef binaries..."); - - var zipFile = TemporaryManager.CreateImaginaryFile(); - - try - { - using (AutoFileDownloader downloader = new AutoFileDownloader("https://tangostorage.blob.core.windows.net/resources/CefSharpOutput.zip", "https://tango.azureedge.net/resources/CefSharpOutput.zip", zipFile)) - { - downloader.Progress += (x, e) => - { - context.ReportProgress("Downloading cef binaries...", false, e.Current, e.Total); - }; - - downloader.Download().GetAwaiter().GetResult(); - } - - using (ZipArchive zip = ZipFile.OpenRead(zipFile)) - { - zip.ExtractToDirectory(context.ApplicationManager.StartPath, true); - } - } - catch (Exception ex) - { - LogManager.Log(ex, "Error installing cef binaries."); - throw; - } - finally - { - zipFile.Delete(); - } - - }); - } - } -} diff --git a/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.CefInstaller/Properties/AssemblyInfo.cs b/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.CefInstaller/Properties/AssemblyInfo.cs deleted file mode 100644 index 9ddf67db3..000000000 --- a/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.CefInstaller/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("Tango.PPC.Packages.CefInstaller")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("Tango.PPC.Packages.CefInstaller")] -[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("df64460a-6617-4338-872a-dc43fd994c48")] - -// 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/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.CefInstaller/Tango.PPC.Packages.CefInstaller.csproj b/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.CefInstaller/Tango.PPC.Packages.CefInstaller.csproj deleted file mode 100644 index 8e7ec8253..000000000 --- a/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.CefInstaller/Tango.PPC.Packages.CefInstaller.csproj +++ /dev/null @@ -1,77 +0,0 @@ - - - - - Debug - AnyCPU - {DF64460A-6617-4338-872A-DC43FD994C48} - Library - Properties - Tango.PPC.Packages.CefInstaller - Tango.PPC.Packages.CefInstaller - v4.6.1 - 512 - true - - - true - full - false - ..\..\..\Build\PPC\Debug\Packages\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - ..\..\..\Build\PPC\Release\Packages\ - TRACE - prompt - 4 - - - - - - - - - - - - - - - - - - - - {A34EE0F0-649D-41C8-8489-B6F1CC6924EE} - Tango.Core - False - - - {bc932dbd-7cdb-488c-99e4-f02cf441f55e} - Tango.Logging - False - - - {74e700b0-1156-4126-be40-ee450d3c3026} - Tango.Transport - False - - - {0be74eee-22cb-4dba-b896-793b9e1a3ac0} - Tango.PPC.Common - False - - - {208c8bd8-72c6-4e3c-acaa-351091a2acc7} - Tango.PPC.Shared - False - - - - \ No newline at end of file diff --git a/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.JobRunsStartTimePatch/App.config b/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.JobRunsStartTimePatch/App.config deleted file mode 100644 index 9a2bcbea4..000000000 --- a/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.JobRunsStartTimePatch/App.config +++ /dev/null @@ -1,49 +0,0 @@ - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.JobRunsStartTimePatch/JobRunsStartTimePatch.cs b/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.JobRunsStartTimePatch/JobRunsStartTimePatch.cs deleted file mode 100644 index eb5aef8ef..000000000 --- a/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.JobRunsStartTimePatch/JobRunsStartTimePatch.cs +++ /dev/null @@ -1,41 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading; -using System.Threading.Tasks; -using Tango.BL; -using Tango.Core; -using Tango.PPC.Common.UpdatePackages; -using Tango.PPC.Shared.Updates; - -namespace Tango.PPC.Packages.JobRunsStartTimePatch -{ - [PPCPackage(PackageType.Pre, "JobRuns StartTime Patch", false)] - public class JobRunsStartTimePatch : ExtendedObject, IPPCPackage - { - public Task Run(PackageContext context) - { - return Task.Factory.StartNew(() => - { - try - { - LogManager.Log("Fixing corrupted job runs start time values..."); - - context.ReportProgress("Applying corrupted job runs start date patch..."); - - Thread.Sleep(5000); //Just so we can see something happened. - - using (ObservablesContext db = ObservablesContext.CreateDefault()) - { - db.Database.ExecuteSqlCommand("UPDATE JOB_RUNS SET START_DATE = ACTUAL_START_DATE WHERE START_DATE = '0001-01-01 00:00:00.000';"); - } - } - catch (Exception ex) - { - LogManager.Log(ex, "Error occurred while trying to apply job runs start date patch."); - } - }); - } - } -} diff --git a/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.JobRunsStartTimePatch/Properties/AssemblyInfo.cs b/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.JobRunsStartTimePatch/Properties/AssemblyInfo.cs deleted file mode 100644 index 5d8c8d19b..000000000 --- a/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.JobRunsStartTimePatch/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("Tango.PPC.Packages.JobRunsStartTimePatch")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("Tango.PPC.Packages.JobRunsStartTimePatch")] -[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("59643abc-df9a-497f-8a7c-4a131c7cf438")] - -// 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/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.JobRunsStartTimePatch/Tango.PPC.Packages.JobRunsStartTimePatch.csproj b/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.JobRunsStartTimePatch/Tango.PPC.Packages.JobRunsStartTimePatch.csproj deleted file mode 100644 index 81435b4ba..000000000 --- a/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.JobRunsStartTimePatch/Tango.PPC.Packages.JobRunsStartTimePatch.csproj +++ /dev/null @@ -1,88 +0,0 @@ - - - - - Debug - AnyCPU - {59643ABC-DF9A-497F-8A7C-4A131C7CF438} - Library - Properties - Tango.PPC.Packages.JobRunsStartTimePatch - Tango.PPC.Packages.JobRunsStartTimePatch - v4.6.1 - 512 - true - - - true - full - false - ..\..\..\Build\PPC\Debug\Packages\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - ..\..\..\Build\PPC\Release\Packages\ - TRACE - prompt - 4 - - - - ..\..\..\packages\EntityFramework.6.2.0\lib\net45\EntityFramework.dll - False - - - ..\..\..\packages\EntityFramework.6.2.0\lib\net45\EntityFramework.SqlServer.dll - False - - - - - - - - - - - - - - - - - - {F441FEEE-322A-4943-B566-110E12FD3B72} - Tango.BL - False - - - {A34EE0F0-649D-41C8-8489-B6F1CC6924EE} - Tango.Core - False - - - {bc932dbd-7cdb-488c-99e4-f02cf441f55e} - Tango.Logging - False - - - {0be74eee-22cb-4dba-b896-793b9e1a3ac0} - Tango.PPC.Common - False - - - {208C8BD8-72C6-4E3C-ACAA-351091A2ACC7} - Tango.PPC.Shared - False - - - - - - - - \ No newline at end of file diff --git a/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.JobRunsStartTimePatch/packages.config b/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.JobRunsStartTimePatch/packages.config deleted file mode 100644 index b3daf0d6c..000000000 --- a/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.JobRunsStartTimePatch/packages.config +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.SamplePostPackage/Properties/AssemblyInfo.cs b/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.SamplePostPackage/Properties/AssemblyInfo.cs deleted file mode 100644 index ce0d97e8c..000000000 --- a/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.SamplePostPackage/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("Tango.PPC.Packages.SamplePostPackage")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("Tango.PPC.Packages.SamplePostPackage")] -[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("da391b02-ae28-4ea1-a80f-d0f4c8029ffa")] - -// 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/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.SamplePostPackage/SamplePostPackage.cs b/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.SamplePostPackage/SamplePostPackage.cs deleted file mode 100644 index f6fb2c935..000000000 --- a/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.SamplePostPackage/SamplePostPackage.cs +++ /dev/null @@ -1,23 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using Tango.Core; -using Tango.PPC.Common.UpdatePackages; -using Tango.PPC.Shared.Updates; - -namespace Tango.PPC.Packages.SamplePostPackage -{ - [PPCPackage(PackageType.Post, "Sample Post Package", false)] - public class SamplePostPackage : ExtendedObject, IPPCPackage - { - public Task Run(PackageContext context) - { - return Task.Factory.StartNew(() => - { - LogManager.Log("Hi from 'Sample Post Package'.. !!! ____________"); - }); - } - } -} diff --git a/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.SamplePostPackage/Tango.PPC.Packages.SamplePostPackage.csproj b/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.SamplePostPackage/Tango.PPC.Packages.SamplePostPackage.csproj deleted file mode 100644 index d528c5c14..000000000 --- a/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.SamplePostPackage/Tango.PPC.Packages.SamplePostPackage.csproj +++ /dev/null @@ -1,70 +0,0 @@ - - - - - Debug - AnyCPU - {DA391B02-AE28-4EA1-A80F-D0F4C8029FFA} - Library - Properties - Tango.PPC.Packages.SamplePostPackage - Tango.PPC.Packages.SamplePostPackage - v4.6.1 - 512 - true - - - true - full - false - ..\..\..\Build\PPC\Debug\Packages\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - ..\..\..\Build\PPC\Release\Packages\ - TRACE - prompt - 4 - - - - - - - - - - - - - - - - - - {a34ee0f0-649d-41c8-8489-b6f1cc6924ee} - Tango.Core - False - - - {bc932dbd-7cdb-488c-99e4-f02cf441f55e} - Tango.Logging - False - - - {0be74eee-22cb-4dba-b896-793b9e1a3ac0} - Tango.PPC.Common - False - - - {208c8bd8-72c6-4e3c-acaa-351091a2acc7} - Tango.PPC.Shared - False - - - - \ No newline at end of file diff --git a/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.SamplePrePackage/Properties/AssemblyInfo.cs b/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.SamplePrePackage/Properties/AssemblyInfo.cs deleted file mode 100644 index 24117be29..000000000 --- a/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.SamplePrePackage/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("Tango.PPC.Packages.SamplePrePackage")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("Tango.PPC.Packages.SamplePrePackage")] -[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("2cd12594-3522-4658-a65f-190ee58b6afa")] - -// 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/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.SamplePrePackage/SamplePrePackage.cs b/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.SamplePrePackage/SamplePrePackage.cs deleted file mode 100644 index 1913d3f28..000000000 --- a/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.SamplePrePackage/SamplePrePackage.cs +++ /dev/null @@ -1,23 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using Tango.Core; -using Tango.PPC.Common.UpdatePackages; -using Tango.PPC.Shared.Updates; - -namespace Tango.PPC.Packages.SamplePrePackage -{ - [PPCPackage(PackageType.Pre, "Sample Pre Package", false)] - public class SamplePrePackage : ExtendedObject, IPPCPackage - { - public Task Run(PackageContext context) - { - return Task.Factory.StartNew(() => - { - LogManager.Log("Hi from 'Sample Pre Package'.. !!! ____________"); - }); - } - } -} diff --git a/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.SamplePrePackage/Tango.PPC.Packages.SamplePrePackage.csproj b/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.SamplePrePackage/Tango.PPC.Packages.SamplePrePackage.csproj deleted file mode 100644 index 4437a05c4..000000000 --- a/Software/Visual_Studio/PPC/UpdatePackages/Tango.PPC.Packages.SamplePrePackage/Tango.PPC.Packages.SamplePrePackage.csproj +++ /dev/null @@ -1,70 +0,0 @@ - - - - - Debug - AnyCPU - {2CD12594-3522-4658-A65F-190EE58B6AFA} - Library - Properties - Tango.PPC.Packages.SamplePrePackage - Tango.PPC.Packages.SamplePrePackage - v4.6.1 - 512 - true - - - true - full - false - ..\..\..\Build\PPC\Debug\Packages\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - ..\..\..\Build\PPC\Release\Packages\ - TRACE - prompt - 4 - - - - - - - - - - - - - - - - - - {A34EE0F0-649D-41C8-8489-B6F1CC6924EE} - Tango.Core - False - - - {bc932dbd-7cdb-488c-99e4-f02cf441f55e} - Tango.Logging - False - - - {0be74eee-22cb-4dba-b896-793b9e1a3ac0} - Tango.PPC.Common - False - - - {208c8bd8-72c6-4e3c-acaa-351091a2acc7} - Tango.PPC.Shared - False - - - - \ No newline at end of file -- cgit v1.3.1