Remove cecil refs

This commit is contained in:
de4dot 2012-11-01 09:33:53 +01:00
parent e6ab87e5ed
commit f74c1cbb0d
4 changed files with 2 additions and 8 deletions

View File

@ -70,10 +70,6 @@
<Project>{045B96F2-AF80-4C4C-8D27-E38635AC705E}</Project>
<Name>blocks</Name>
</ProjectReference>
<ProjectReference Include="..\cecil\Mono.Cecil.csproj">
<Project>{D68133BD-1E63-496E-9EDE-4FBDBF77B486}</Project>
<Name>Mono.Cecil</Name>
</ProjectReference>
<ProjectReference Include="..\de4dot.mdecrypt\de4dot.mdecrypt.csproj">
<Project>{5C93C5E2-196F-4877-BF65-96FEBFCEFCA1}</Project>
<Name>de4dot.mdecrypt</Name>

View File

@ -21,7 +21,7 @@ using System;
using System.Collections.Generic;
using System.Reflection;
using System.Threading;
using Mono.MyStuff;
using dot10.DotNet;
using de4dot.mdecrypt;
namespace AssemblyData {

View File

@ -17,7 +17,7 @@
along with de4dot. If not, see <http://www.gnu.org/licenses/>.
*/
using Mono.MyStuff;
using dot10.DotNet;
using de4dot.mdecrypt;
namespace AssemblyData {

View File

@ -24,7 +24,6 @@ using System.Reflection.Emit;
using System.Text;
namespace AssemblyData {
// Yes, I did type this by hand.
internal delegate void Action();
internal delegate void Action<T1>(T1 arg1);
internal delegate void Action<T1, T2>(T1 arg1, T2 arg2);
@ -45,7 +44,6 @@ namespace AssemblyData {
internal delegate void Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17>(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13, T14 arg14, T15 arg15, T16 arg16, T17 arg17);
internal delegate void Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18>(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13, T14 arg14, T15 arg15, T16 arg16, T17 arg17, T18 arg18);
internal delegate void Action<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19>(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13, T14 arg14, T15 arg15, T16 arg16, T17 arg17, T18 arg18, T19 arg19);
// No that was a lie.
internal delegate TResult Func<TResult>();
internal delegate TResult Func<T1, TResult>(T1 arg1);
internal delegate TResult Func<T1, T2, TResult>(T1 arg1, T2 arg2);