diff --git a/app/.vs/DD_PM_WINDREAM/DesignTimeBuild/.dtbcache b/app/.vs/DD_PM_WINDREAM/DesignTimeBuild/.dtbcache deleted file mode 100644 index 715c91b..0000000 Binary files a/app/.vs/DD_PM_WINDREAM/DesignTimeBuild/.dtbcache and /dev/null differ diff --git a/app/.vs/DD_PM_WINDREAM/FileContentIndex/read.lock b/app/.vs/DD_PM_WINDREAM/FileContentIndex/read.lock deleted file mode 100644 index e69de29..0000000 diff --git a/app/.vs/DD_PM_WINDREAM/v16/TestStore/0/000-0000.testlog b/app/.vs/DD_PM_WINDREAM/v16/TestStore/0/000-0000.testlog deleted file mode 100644 index b127f06..0000000 Binary files a/app/.vs/DD_PM_WINDREAM/v16/TestStore/0/000-0000.testlog and /dev/null differ diff --git a/app/.vs/DD_PM_WINDREAM/v16/TestStore/0/testlog.manifest b/app/.vs/DD_PM_WINDREAM/v16/TestStore/0/testlog.manifest deleted file mode 100644 index b6ec9cf..0000000 Binary files a/app/.vs/DD_PM_WINDREAM/v16/TestStore/0/testlog.manifest and /dev/null differ diff --git a/app/.vs/ProjectSettings.json b/app/.vs/ProjectSettings.json deleted file mode 100644 index f8b4888..0000000 --- a/app/.vs/ProjectSettings.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "CurrentProjectSetting": null -} \ No newline at end of file diff --git a/app/.vs/VSWorkspaceState.json b/app/.vs/VSWorkspaceState.json deleted file mode 100644 index c8a8006..0000000 --- a/app/.vs/VSWorkspaceState.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "ExpandedNodes": [ - "" - ], - "SelectedNode": "\\DD_PM_WINDREAM.sln", - "PreviewInSolutionExplorer": false -} \ No newline at end of file diff --git a/app/.vs/slnx.sqlite b/app/.vs/slnx.sqlite deleted file mode 100644 index 5b5ed5f..0000000 Binary files a/app/.vs/slnx.sqlite and /dev/null differ diff --git a/app/SetupVS19/Product.wxs b/app/SetupVS19/Product.wxs index 9890ce8..5e6b2f3 100644 --- a/app/SetupVS19/Product.wxs +++ b/app/SetupVS19/Product.wxs @@ -142,181 +142,94 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/app/TaskFlow/My Project/AssemblyInfo.vb b/app/TaskFlow/My Project/AssemblyInfo.vb index 127fba6..23f0dc7 100644 --- a/app/TaskFlow/My Project/AssemblyInfo.vb +++ b/app/TaskFlow/My Project/AssemblyInfo.vb @@ -32,6 +32,6 @@ Imports System.Runtime.InteropServices ' übernehmen, indem Sie "*" eingeben: ' - + diff --git a/app/TaskFlow/TaskFlow.vbproj b/app/TaskFlow/TaskFlow.vbproj index d281403..52f54d9 100644 --- a/app/TaskFlow/TaskFlow.vbproj +++ b/app/TaskFlow/TaskFlow.vbproj @@ -1379,6 +1379,35 @@ + + @echo off +echo ======================================== +echo GdPicture DLL Copy Script +echo ======================================== + +for /d %25%25p in ("$(SolutionDir)packages\GdPicture.runtimes.windows.*") do ( + echo [*] Paket: %25%25~nxp + echo Von: %25%25p\runtimes\win-x64\native + echo Nach: $(TargetDir) + echo. + + xcopy /Y /I /F "%25%25p\runtimes\win-x64\native\*.dll" "$(TargetDir)" | find ".dll" + echo. + + echo [*] Designer-Cache: + for /d %25%25d in ("%25LOCALAPPDATA%25\Microsoft\VisualStudio\17.0_*\ProjectAssemblies") do ( + echo %25%25d + xcopy /Y /Q "%25%25p\runtimes\win-x64\native\*.dll" "%25%25d\" 2>nul + xcopy /Y /Q "$(TargetDir)GdPicture*.dll" "%25%25d\" 2>nul + echo [OK] Aktualisiert + ) +) + +echo. +echo [OK] Fertig - Dateien in Target: +dir "$(TargetDir)GdPicture.NET.14.*.dll" /B 2>nul +echo ======================================== +