From 36b3578dec01ae83e4465e7eaddf083f99105ecd Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Wed, 10 Mar 2010 18:30:47 +1300 Subject: [PATCH] fix installer --- OpenRA.Server/OpenRA.Server.csproj | 71 ------------------------ OpenRA.Server/Properties/AssemblyInfo.cs | 36 ------------ packaging/windows/OpenRA.nsi | 13 ----- 3 files changed, 120 deletions(-) delete mode 100644 OpenRA.Server/OpenRA.Server.csproj delete mode 100644 OpenRA.Server/Properties/AssemblyInfo.cs diff --git a/OpenRA.Server/OpenRA.Server.csproj b/OpenRA.Server/OpenRA.Server.csproj deleted file mode 100644 index 7000149649..0000000000 --- a/OpenRA.Server/OpenRA.Server.csproj +++ /dev/null @@ -1,71 +0,0 @@ - - - - Debug - AnyCPU - 9.0.30729 - 2.0 - {76F621A1-3D8E-4A99-9F7E-B071EB657817} - Library - Properties - OpenRA.Server - OpenRA.Server - v3.5 - 512 - - - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - x86 - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - - 3.5 - - - 3.5 - - - 3.5 - - - - - - - - - - {BDAEAB25-991E-46A7-AF1E-4F0E03358DAA} - OpenRA.FileFormats - - - - - - - - - \ No newline at end of file diff --git a/OpenRA.Server/Properties/AssemblyInfo.cs b/OpenRA.Server/Properties/AssemblyInfo.cs deleted file mode 100644 index 8654a6d4e1..0000000000 --- a/OpenRA.Server/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("OpenRA.Server")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("OpenRA.Server")] -[assembly: AssemblyCopyright("Copyright © 2009")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("09d30fc4-df3f-4f6a-b9bd-1819c2a23c62")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/packaging/windows/OpenRA.nsi b/packaging/windows/OpenRA.nsi index b3c03834d2..1e82d9473f 100644 --- a/packaging/windows/OpenRA.nsi +++ b/packaging/windows/OpenRA.nsi @@ -124,16 +124,6 @@ SectionGroup /e "Mods" SectionEnd SectionGroupEnd -Section "Server" Server - SetOutPath "$INSTDIR" - File "..\..\OpenRA.Server\bin\Debug\OpenRA.Server.exe" - - !insertmacro MUI_STARTMENU_WRITE_BEGIN Application - CreateShortCut "$SMPROGRAMS\$StartMenuFolder\OpenRA Server.lnk" "$OUTDIR\OpenRA.Server.exe" "" \ - "" "" "" "" "OpenRA Server" - !insertmacro MUI_STARTMENU_WRITE_END -SectionEnd - ;*************************** ;Dependency Sections ;*************************** @@ -190,7 +180,6 @@ Section "Uninstall" RMDir /r $INSTDIR\mods RMDir /r $INSTDIR\shaders Delete $INSTDIR\OpenRA.Game.exe - Delete $INSTDIR\OpenRA.Server.exe Delete $INSTDIR\OpenRA.FileFormats.dll Delete $INSTDIR\OpenRA.Gl.dll Delete $INSTDIR\Tao.*.dll @@ -218,7 +207,6 @@ SectionEnd ;Section Descriptions ;*************************** LangString DESC_Client ${LANG_ENGLISH} "OpenRA client and dependencies" -LangString DESC_Server ${LANG_ENGLISH} "OpenRA server" LangString DESC_RA ${LANG_ENGLISH} "Base Red Alert mod" LangString DESC_CNC ${LANG_ENGLISH} "Base Command and Conquer mod" LangString DESC_Aftermath ${LANG_ENGLISH} "Red Alert: Aftermath expansion mod (depends on base Red Alert mod)" @@ -226,7 +214,6 @@ LangString DESC_RA_NG ${LANG_ENGLISH} "Next-gen Red Alert mod (depends on base R !insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN !insertmacro MUI_DESCRIPTION_TEXT ${Client} $(DESC_Client) - !insertmacro MUI_DESCRIPTION_TEXT ${Server} $(DESC_Server) !insertmacro MUI_DESCRIPTION_TEXT ${RA} $(DESC_RA) !insertmacro MUI_DESCRIPTION_TEXT ${CNC} $(DESC_CNC) !insertmacro MUI_DESCRIPTION_TEXT ${Aftermath} $(DESC_Aftermath)