From b64695cefc2f388ac58ccc3ea571127fc479490f Mon Sep 17 00:00:00 2001 From: Developer01 Date: Mon, 29 Dec 2025 13:41:32 +0100 Subject: [PATCH] Migrate Database.vbproj to SDK-style and PackageReference Converted Database.vbproj to the modern SDK-style project format targeting .NET 8.0, replacing explicit assembly references and the use of packages.config with PackageReference entries for dependencies such as EntityFramework, Firebird, NLog, and System.Data.Odbc. Removed legacy MSBuild properties, imports, and targets, and deleted the obsolete packages.config file. This streamlines dependency management and modernizes the project structure. --- Database/Database.vbproj | 117 +++++---------------------------------- Database/packages.config | 8 --- 2 files changed, 15 insertions(+), 110 deletions(-) delete mode 100644 Database/packages.config diff --git a/Database/Database.vbproj b/Database/Database.vbproj index c2ed2d95..a95b6ec1 100644 --- a/Database/Database.vbproj +++ b/Database/Database.vbproj @@ -1,51 +1,22 @@ - - - - + - Debug - AnyCPU - {EAF0EA75-5FA7-485D-89C7-B2D843B03A96} + net8.0 Library DigitalData.Modules.Database DigitalData.Modules.Database - 512 Windows - v4.6.2 - - - + enable + powershell.exe -command "& { &'$(SolutionDir)copy-binary.ps1' '$(TargetPath)' '$(TargetFileName)' '$(ConfigurationName)' '$(ProjectName)' }" - true - full - true - true - bin\Debug\ DigitalData.Modules.Database.xml 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 - pdbonly false - true - true - bin\Release\ DigitalData.Modules.Database.xml 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 - - On - - - Binary - - - Off - - - On - ..\Encryption\bin\Debug\DigitalData.Modules.Encryption.dll @@ -54,83 +25,41 @@ False ..\Logging\bin\Debug\DigitalData.Modules.Logging.dll - - ..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.dll - - - ..\packages\EntityFramework.Firebird.6.4.0\lib\net452\EntityFramework.Firebird.dll - - - ..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.SqlServer.dll - - - ..\packages\FirebirdSql.Data.FirebirdClient.7.5.0\lib\net452\FirebirdSql.Data.FirebirdClient.dll - - - ..\packages\NLog.5.0.5\lib\net46\NLog.dll - P:\Visual Studio Projekte\Bibliotheken\Oracle.ManagedDataAccess.dll - - - - ..\packages\System.Data.Odbc.6.0.1\lib\net461\System.Data.Odbc.dll - - - - - - - - - - - - - - - - - + + + + + - - - - - - - - - - - + True Application.myapp True - + True True Resources.resx - + True Settings.settings True - - + VbMyResourcesResXFileCodeGenerator Resources.Designer.vb My.Resources @@ -138,30 +67,14 @@ - - Designer - - + MyApplicationCodeGenerator Application.Designer.vb - + SettingsSingleFileGenerator My Settings.Designer.vb - - - - - Dieses Projekt verweist auf mindestens ein NuGet-Paket, das auf diesem Computer fehlt. Verwenden Sie die Wiederherstellung von NuGet-Paketen, um die fehlenden Dateien herunterzuladen. Weitere Informationen finden Sie unter "http://go.microsoft.com/fwlink/?LinkID=322105". Die fehlende Datei ist "{0}". - - - - - - - powershell.exe -command "& { &'$(SolutionDir)copy-binary.ps1' '$(TargetPath)' '$(TargetFileName)' '$(ConfigurationName)' '$(ProjectName)' }" - \ No newline at end of file diff --git a/Database/packages.config b/Database/packages.config deleted file mode 100644 index 84e51e65..00000000 --- a/Database/packages.config +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file