From b01a9edc1e6e97815cb9b2129dae769dc9d30ac3 Mon Sep 17 00:00:00 2001 From: Chris Glavan Date: Mon, 18 Mar 2024 11:42:04 -0400 Subject: [PATCH] ~Upgraded CSLA library to v3.0.5 --- .../VEPROMS User Interface/VEPROMS_UI.csproj | 5 ++-- .../VEPROMS.CSLA.Library.csproj | 2 +- PROMS/VEPROMS.CSLA.Library/app.config | 23 ++++++++++++++++ PROMS/VEPROMS.CSLA.Library/packages.config | 26 +++++++++++++++++++ .../Volian.Controls.Library.csproj | 2 +- .../Volian.Print.Library.csproj | 2 +- PROMS/Volian.Print.Library/app.config | 15 +++++++++++ PROMS/Volian.Print.Library/vlnParagraph.cs | 6 +++-- 8 files changed, 74 insertions(+), 7 deletions(-) create mode 100644 PROMS/VEPROMS.CSLA.Library/app.config create mode 100644 PROMS/VEPROMS.CSLA.Library/packages.config create mode 100644 PROMS/Volian.Print.Library/app.config diff --git a/PROMS/VEPROMS User Interface/VEPROMS_UI.csproj b/PROMS/VEPROMS User Interface/VEPROMS_UI.csproj index d511f0be..01f603eb 100644 --- a/PROMS/VEPROMS User Interface/VEPROMS_UI.csproj +++ b/PROMS/VEPROMS User Interface/VEPROMS_UI.csproj @@ -105,8 +105,9 @@ False - - ..\..\..\..\3rdPartyLibraries\CSLA\Csla.dll + + False + C:\Users\Chris.VLN\Downloads\csla-3-0-5\cslacs\Csla\bin\Debug\Csla.dll False diff --git a/PROMS/VEPROMS.CSLA.Library/VEPROMS.CSLA.Library.csproj b/PROMS/VEPROMS.CSLA.Library/VEPROMS.CSLA.Library.csproj index 14ae24e0..15071caf 100644 --- a/PROMS/VEPROMS.CSLA.Library/VEPROMS.CSLA.Library.csproj +++ b/PROMS/VEPROMS.CSLA.Library/VEPROMS.CSLA.Library.csproj @@ -85,7 +85,7 @@ False - ..\..\..\..\3rdPartyLibraries\CSLA\Csla.dll + C:\Users\Chris.VLN\Downloads\csla-3-0-5\cslacs\Csla\bin\Debug\Csla.dll False diff --git a/PROMS/VEPROMS.CSLA.Library/app.config b/PROMS/VEPROMS.CSLA.Library/app.config new file mode 100644 index 00000000..4b2e0f1f --- /dev/null +++ b/PROMS/VEPROMS.CSLA.Library/app.config @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/PROMS/VEPROMS.CSLA.Library/packages.config b/PROMS/VEPROMS.CSLA.Library/packages.config new file mode 100644 index 00000000..345cd9c8 --- /dev/null +++ b/PROMS/VEPROMS.CSLA.Library/packages.config @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/PROMS/Volian.Controls.Library/Volian.Controls.Library.csproj b/PROMS/Volian.Controls.Library/Volian.Controls.Library.csproj index 9c76fbf7..708f2197 100644 --- a/PROMS/Volian.Controls.Library/Volian.Controls.Library.csproj +++ b/PROMS/Volian.Controls.Library/Volian.Controls.Library.csproj @@ -95,7 +95,7 @@ False - ..\..\..\..\3rdPartyLibraries\CSLA\Csla.dll + C:\Users\Chris.VLN\Downloads\csla-3-0-5\cslacs\Csla\bin\Debug\Csla.dll False diff --git a/PROMS/Volian.Print.Library/Volian.Print.Library.csproj b/PROMS/Volian.Print.Library/Volian.Print.Library.csproj index 12ed5491..dddee375 100644 --- a/PROMS/Volian.Print.Library/Volian.Print.Library.csproj +++ b/PROMS/Volian.Print.Library/Volian.Print.Library.csproj @@ -70,7 +70,7 @@ False - ..\..\..\..\3rdPartyLibraries\CSLA\Csla.dll + C:\Users\Chris.VLN\Downloads\csla-3-0-5\cslacs\Csla\bin\Debug\Csla.dll ..\FlexableMessageBox\bin\Debug\FlexableMessageBox.dll diff --git a/PROMS/Volian.Print.Library/app.config b/PROMS/Volian.Print.Library/app.config new file mode 100644 index 00000000..7be68eba --- /dev/null +++ b/PROMS/Volian.Print.Library/app.config @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/PROMS/Volian.Print.Library/vlnParagraph.cs b/PROMS/Volian.Print.Library/vlnParagraph.cs index f00363f0..d056d8e7 100644 --- a/PROMS/Volian.Print.Library/vlnParagraph.cs +++ b/PROMS/Volian.Print.Library/vlnParagraph.cs @@ -1407,7 +1407,8 @@ namespace Volian.Print.Library } } } - StepConfig sc = new StepConfig(MyItemInfo as StepInfo); + StepInfo si = (StepInfo)MyItemInfo; + StepConfig sc = new StepConfig(si.MyContent.Config); if (sc != null && sc.Step_ImageWidth != 0) { Width = sc.Step_ImageWidth; @@ -4184,7 +4185,8 @@ namespace Volian.Print.Library { Width *= (h2 / h1); } - StepConfig sc = new StepConfig(MyItemInfo as StepInfo); + StepInfo si = (StepInfo)MyItemInfo; + StepConfig sc = new StepConfig(si.MyContent.Config); if (sc != null && sc.Step_ImageWidth != 0) { Width = sc.Step_ImageWidth;