Added
Link Here
|
0 |
- |
1 |
--- packaging/functions.sh.orig 2023-08-13 22:34:45 UTC |
|
|
2 |
+++ packaging/functions.sh |
3 |
@@ -33,9 +33,9 @@ install_assemblies_mono() { |
4 |
echo "Building assemblies" |
5 |
ORIG_PWD=$(pwd) |
6 |
cd "${SRC_PATH}" || exit 1 |
7 |
- msbuild -verbosity:m -nologo -t:Clean |
8 |
+ msbuild -verbosity:m -nologo -t:Clean -p:DiscoverEditorConfigFiles=false |
9 |
rm -rf "${SRC_PATH:?}/bin" |
10 |
- msbuild -verbosity:m -nologo -t:Build -restore -p:Configuration=Release -p:TargetPlatform="${TARGETPLATFORM}" |
11 |
+ msbuild -verbosity:m -nologo -t:Build -restore -p:DiscoverEditorConfigFiles=false -p:Configuration=Release -p:TargetPlatform="${TARGETPLATFORM}" |
12 |
if [ "${TARGETPLATFORM}" = "unix-generic" ]; then |
13 |
./configure-system-libraries.sh |
14 |
fi |
15 |
@@ -163,9 +163,9 @@ install_windows_launcher() |
16 |
ICON_PATH="${7}" |
17 |
FAQ_URL="${8}" |
18 |
|
19 |
- msbuild -verbosity:m -nologo -t:Clean "${SRC_PATH}/OpenRA.WindowsLauncher/OpenRA.WindowsLauncher.csproj" |
20 |
+ msbuild -verbosity:m -nologo -t:Clean -p:DiscoverEditorConfigFiles=false "${SRC_PATH}/OpenRA.WindowsLauncher/OpenRA.WindowsLauncher.csproj" |
21 |
rm -rf "${SRC_PATH:?}/bin" |
22 |
- msbuild -t:Build "${SRC_PATH}/OpenRA.WindowsLauncher/OpenRA.WindowsLauncher.csproj" -restore -p:Configuration=Release -p:TargetPlatform="${TARGETPLATFORM}" -p:LauncherName="${LAUNCHER_NAME}" -p:LauncherIcon="${ICON_PATH}" -p:ModID="${MOD_ID}" -p:DisplayName="${MOD_NAME}" -p:FaqUrl="${FAQ_URL}" |
23 |
+ msbuild -t:Build "${SRC_PATH}/OpenRA.WindowsLauncher/OpenRA.WindowsLauncher.csproj" -restore -p:DiscoverEditorConfigFiles=false -p:Configuration=Release -p:TargetPlatform="${TARGETPLATFORM}" -p:LauncherName="${LAUNCHER_NAME}" -p:LauncherIcon="${ICON_PATH}" -p:ModID="${MOD_ID}" -p:DisplayName="${MOD_NAME}" -p:FaqUrl="${FAQ_URL}" |
24 |
install -m755 "${SRC_PATH}/bin/${LAUNCHER_NAME}.exe" "${DEST_PATH}" |
25 |
install -m644 "${SRC_PATH}/bin/${LAUNCHER_NAME}.exe.config" "${DEST_PATH}" |
26 |
|