[mapguide-commits] r10160 - in branches/4.0/MgDev: . Server Server/RepositoryAdmin/app

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Sun Jul 27 06:38:04 PDT 2025


Author: jng
Date: 2025-07-27 06:38:04 -0700 (Sun, 27 Jul 2025)
New Revision: 10160

Modified:
   branches/4.0/MgDev/CMakeLists.txt
   branches/4.0/MgDev/Server/CMakeLists.txt
   branches/4.0/MgDev/Server/RepositoryAdmin/app/MapGuide.RepositoryAdmin.csproj
Log:
Re-target MapGuide.RepositoryAdmin to net8.0 and ensure this is built in Linux. Fixes #2879

Modified: branches/4.0/MgDev/CMakeLists.txt
===================================================================
--- branches/4.0/MgDev/CMakeLists.txt	2025-07-27 06:47:59 UTC (rev 10159)
+++ branches/4.0/MgDev/CMakeLists.txt	2025-07-27 13:38:04 UTC (rev 10160)
@@ -123,6 +123,7 @@
 set(MG_WWWROOT "${MG_INSTALL_WEB_PREFIX}/www")
 set(MG_INSTALL_SERVER_PREFIX "server")
 set(MG_SERVER_BIN_DIR "${MG_INSTALL_SERVER_PREFIX}/bin")
+set(MG_SERVER_REPOADMIN_DIR "${MG_INSTALL_SERVER_PREFIX}/RepositoryAdmin")
 set(MG_INSTALL_COORDSYS_PREFIX "share/gis/coordsys")
 # Absolute versions however are for stamping various template configuration files
 # (which sadly do require absolute paths most of the time)

Modified: branches/4.0/MgDev/Server/CMakeLists.txt
===================================================================
--- branches/4.0/MgDev/Server/CMakeLists.txt	2025-07-27 06:47:59 UTC (rev 10159)
+++ branches/4.0/MgDev/Server/CMakeLists.txt	2025-07-27 13:38:04 UTC (rev 10160)
@@ -7,8 +7,8 @@
 set_install_subdir("server/")
 
 add_subdirectory(src)
+add_subdirectory(RepositoryAdmin)
 
-install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/RepositoryAdmin DESTINATION ${MG_INSTALL_SERVER_PREFIX} COMPONENT ${MG_COMPONENT})
 install_empty_directory("Logs" ${MG_INSTALL_SERVER_PREFIX})
 install_empty_directory("Packages" ${MG_INSTALL_SERVER_PREFIX})
 install_empty_directory("Repositories" ${MG_INSTALL_SERVER_PREFIX})

Modified: branches/4.0/MgDev/Server/RepositoryAdmin/app/MapGuide.RepositoryAdmin.csproj
===================================================================
--- branches/4.0/MgDev/Server/RepositoryAdmin/app/MapGuide.RepositoryAdmin.csproj	2025-07-27 06:47:59 UTC (rev 10159)
+++ branches/4.0/MgDev/Server/RepositoryAdmin/app/MapGuide.RepositoryAdmin.csproj	2025-07-27 13:38:04 UTC (rev 10160)
@@ -2,7 +2,7 @@
 
   <PropertyGroup>
     <OutputType>Exe</OutputType>
-    <TargetFramework>net9.0</TargetFramework>
+    <TargetFramework>net8.0</TargetFramework>
     <ImplicitUsings>enable</ImplicitUsings>
     <Nullable>enable</Nullable>
 	<EnableTrimAnalyzer>true</EnableTrimAnalyzer>



More information about the mapguide-commits mailing list