From 318be76451a8bdbdcf8e50e103d935210c68f375 Mon Sep 17 00:00:00 2001 From: Developer01 Date: Mon, 29 Dec 2025 13:32:58 +0100 Subject: [PATCH] Modernize Base.vbproj to SDK style and update dependencies Converted Base.vbproj to the SDK-style project format targeting net8.0-windows, enabling Windows Forms and implicit usings. Replaced direct assembly references and packages.config with PackageReference for NLog and NuGet.CommandLine. Removed legacy property groups, redundant references, and unnecessary compile/include entries. Deleted the obsolete packages.config file. Retained the post-build event and essential project metadata. This update streamlines project management and aligns with modern .NET practices. --- Base/Base.vbproj | 113 +++++-------------------------------------- Base/packages.config | 5 -- 2 files changed, 12 insertions(+), 106 deletions(-) delete mode 100644 Base/packages.config diff --git a/Base/Base.vbproj b/Base/Base.vbproj index dd8a0bcd..e3c0ab9c 100644 --- a/Base/Base.vbproj +++ b/Base/Base.vbproj @@ -1,151 +1,62 @@ - - - + - Debug - AnyCPU - {6EA0C51F-C2B1-4462-8198-3DE0B32B74F8} + net8.0-windows Library DigitalData.Modules.Base DigitalData.Modules.Base - 512 Windows - v4.6.2 - true - + true + true + enable + powershell.exe -command "& { &'$(SolutionDir)copy-binary.ps1' '$(TargetPath)' '$(TargetFileName)' '$(ConfigurationName)' '$(ProjectName)' }" - true - full - true - true - bin\Debug\ DigitalData.Modules.Base.xml 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 - pdbonly false - true - true - bin\Release\ DigitalData.Modules.Base.xml 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 - - On - - - Binary - - - Off - - - On - ..\Logging\bin\Debug\DigitalData.Modules.Logging.dll - - ..\packages\NLog.5.0.5\lib\net46\NLog.dll - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - + True Application.myapp True - + True True Resources.resx - + True Settings.settings True - - - - - - VbMyResourcesResXFileCodeGenerator - Resources.Designer.vb - My.Resources - Designer - - + MyApplicationCodeGenerator Application.Designer.vb - - SettingsSingleFileGenerator - My - Settings.Designer.vb - - - - - - powershell.exe -command "& { &'$(SolutionDir)copy-binary.ps1' '$(TargetPath)' '$(TargetFileName)' '$(ConfigurationName)' '$(ProjectName)' }" - \ No newline at end of file diff --git a/Base/packages.config b/Base/packages.config deleted file mode 100644 index 59415cc4..00000000 --- a/Base/packages.config +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file