Changeset 115 for binary-improvements/assembly-patcher
- Timestamp:
- Aug 13, 2014, 4:52:22 PM (10 years ago)
- Location:
- binary-improvements/assembly-patcher
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements/assembly-patcher/Assembly-Patcher.csproj
r73 r115 15 15 <DebugType>full</DebugType> 16 16 <Optimize>false</Optimize> 17 <OutputPath> bin\Debug</OutputPath>17 <OutputPath>..\bin\Debug</OutputPath> 18 18 <DefineConstants>DEBUG;</DefineConstants> 19 19 <ErrorReport>prompt</ErrorReport> 20 20 <WarningLevel>4</WarningLevel> 21 21 <PlatformTarget>x86</PlatformTarget> 22 < Externalconsole>true</Externalconsole>22 <ConsolePause>false</ConsolePause> 23 23 </PropertyGroup> 24 24 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> 25 25 <DebugType>none</DebugType> 26 26 <Optimize>true</Optimize> 27 <OutputPath> bin\Release</OutputPath>27 <OutputPath>..\bin\Release</OutputPath> 28 28 <ErrorReport>prompt</ErrorReport> 29 29 <WarningLevel>4</WarningLevel> … … 33 33 <ItemGroup> 34 34 <Reference Include="System" /> 35 <Reference Include="Mono.Cecil, Version=0.9.5.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756"> 36 <Private>False</Private> 37 <Package>monodevelop</Package> 38 </Reference> 39 <Reference Include="7dtd-server-fixes"> 40 <HintPath>..\7dtd-server-fixes\bin\Release\7dtd-server-fixes.dll</HintPath> 41 <Private>False</Private> 35 <Reference Include="Mono.Cecil"> 36 <HintPath>..\Mono.Cecil.dll</HintPath> 42 37 </Reference> 43 38 </ItemGroup> … … 47 42 </ItemGroup> 48 43 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> 44 <ItemGroup> 45 <ProjectReference Include="..\7dtd-server-fixes\7dtd-server-fixes.csproj"> 46 <Project>{81DA7F87-1A66-4920-AADA-6EAF1971F8D0}</Project> 47 <Name>7dtd-server-fixes</Name> 48 <Private>False</Private> 49 </ProjectReference> 50 </ItemGroup> 49 51 </Project> -
binary-improvements/assembly-patcher/Assembly-Patcher.userprefs
r104 r115 3 3 <MonoDevelop.Ide.Workbench ActiveDocument="Main.cs"> 4 4 <Files> 5 <File FileName="Main.cs" Line=" 20" Column="4" />5 <File FileName="Main.cs" Line="74" Column="71" /> 6 6 <File FileName="AssemblyInfo.cs" Line="21" Column="1" /> 7 7 </Files> … … 10 10 <State expanded="True"> 11 11 <Node name="Assembly-Patcher" expanded="True"> 12 <Node name="References" expanded="True"> 13 <Node name="/home/ci/Schreibtisch/7dtd-svn/binary-improvements/7dtd-server-fixes/bin/Release/7dtd-server-fixes.dll" selected="True" /> 14 </Node> 12 <Node name="References" expanded="True" selected="True" /> 15 13 </Node> 16 14 </State> -
binary-improvements/assembly-patcher/Main.cs
r107 r115 26 26 playerDataPatch (module); 27 27 28 module.Write ("Assembly-CSharp. dll");28 module.Write ("Assembly-CSharp.patched.dll"); 29 29 Console.WriteLine ("Done"); 30 30 … … 37 37 addHook (type, "Run", true, 0, true, typeof(ConsoleOutputSeparator).GetMethod ("C_Run")); 38 38 replaceMethod (type, "SendResult", true, 1, typeof(ConsoleOutputSeparator).GetMethod ("C_SendResult")); 39 40 39 } 41 40
Note:
See TracChangeset
for help on using the changeset viewer.