The MSIL Assembler generates a portable executable (PE) file from Microsoft intermediate language (MSIL). You can run the resulting executable, which contains MSIL and the required metadata, to determine whether the MSIL performs as expected.
1
vote
0answers
31 views
Does ILASM work with Mixed Mode Application?
I am trying to modify a method in a third-party dll
Use ILDASM to generate IL
Modify IL method
Use ILASM to generate DLL (FAILURE)
I found the reason due to this error is the third-party dll ...
3
votes
2answers
68 views
How to declare a value type in CIL: `.class value` or just `.class`?
I have taken a look at a C# struct FooStruct in ILDASM, and have seen the following:
ILDASM here displays two differing declarations:
one starting with .class value public (rear window & ...
1
vote
1answer
204 views
Assembly recompilation and assembly load issue
I have an executable (Foo.exe) and a library Bar.dll. Both binaries are NOT strong name signed. The Bar.dll library depends on the executable file and has it specified in its manifest in such manner:
...
0
votes
1answer
141 views
Syntax error at token MZ using ilasm [closed]
I have a prebuilt dll assembly that I am trying to use. It is a winforms library and when I reference it I can use it in the designer/code without error. When I run it I get:
Assembly generation ...
0
votes
0answers
327 views
Guaranteed way to find the filepath of the ildasm.exe and ilasm.exe files regardless of .NET version/environment?
Is there a way to programmatically get the FileInfo/Path of the ildasm.exe/ilasm.exe executables? I'm attempting to decompile and recompile a dll/exe file appropriately after making some alterations ...
0
votes
1answer
89 views
Can you see the evaluation stack in mdbg?
Say I have the following CIL:
ldc.i4 40 <- a breakpoint is set here
ldc.i4.2
add
box int32
call void [mscorlib]System.Console::WriteLine(string)
I then use ilasm /debug main.il to assemble the ...
0
votes
1answer
244 views
Failure when using ILASM to compile IL to EXE
I've spent hours trying to figure out what is wrong. I know the program is functional, as I tested by debugging the .il in MonoDevelop, however I can't compile through that. This is the log from the ...
0
votes
1answer
137 views
Unable to run ILAsm using ProcessInfo
I'm trying to compile IL code using bat file and C#. Here is a C# code
ProcessStartInfo processStartInfo = new ProcessStartInfo(ILCompiler, @"c:\Windows\Microsoft.NET\Framework\v4.0.30319\" + ...
13
votes
3answers
298 views
Do I understand this MSIL code correctly?
I have the following code in C#
// test.Program
private static void Main()
{
int x = 5;
int y = 100;
Console.WriteLine(y + ", " + x);
}
And I'm reading the IL code, I've never ...
2
votes
1answer
100 views
How do I replace an ILAsm throw with a rethrow with Mono.Cecil?
I have a C# dll with a member similar to the following:
public void DoStuff(int i) {
try {
something.InnerDoStuff(i);
}
catch (Exception ex) {
throw ex;
}
}
I ...
2
votes
2answers
160 views
Ilasm.exe missing after repair of .net
I have repaired .net 4.0 but (still) cannot find:
Ilasm.exe
Any ideas? I need it to do this:
strong name signing of assembly
1
vote
1answer
113 views
How to load static field?
I am generating a Type with static fields num1, num2, etc. via Reflection.Emit.
Now I do not know how to emit code which loads the contents of a static field in the generated type onto a static ...
2
votes
2answers
247 views
Why does my IL generated Assembly, ilasm.exe called by C#, need UAC?
I'm trying to compile an IL Code to an Assembly. The ilasm.exe should get called by my C# Application. I'm invoking the ilasm.exe through an ProcessStartInfo Instance. The generation of the PE works ...
2
votes
1answer
236 views
ILASM does not set FileVersion
I have an .il file which I can compile without any problems. I can strong name it and so without any issues. But I am not able to set the file version via the attribute as I would expect it. How can I ...
4
votes
1answer
465 views
ildasm, then ilasm with same meta data
We need to patch an assembly and we can't rebuild from source code at the moment. I can dump the IL using ildasm mydll.dll /all /out=mydll.il and then I can rebuild it with ilasm /dll mydll.il and ...
1
vote
1answer
205 views
How do I Obtain Code Coverage on Assembly after ExportDll has run it through ildasm/ilasm?
I'm using a post-build step on my C# assembly to expose a function signature from my dll. This step uses the ExportDll tool from http://www.codeproject.com/KB/dotnet/DllExport.aspx. However, if I ...
0
votes
0answers
266 views
Modify the version information of a built .NET assembly
Is there a better way to modify the version information of a .NET assembly of the one I am currently using.
My current approach is the following.
I do disassemble the assembly with ildasm:
ildasm ...
0
votes
2answers
300 views
Is it possible to convert a single C# file to IL assembly?
Given a single c# source file, I'd like to output IL (not assembled) of that single file such that later I can feed each '.il' file to ilasm to produce assemblies, is this possible?
2
votes
2answers
1k views
Strongly naming 3rd party 2.0 .dll with VS 2010 Ilasm.exe
So, I have a 3rd party .dll written in C# 2.0 that needs to be strongly typed and I do not have access to the source code. I found several articles on how to disassembly the .dll and re-assembly it ...
1
vote
1answer
98 views
Are there any commerical or open source IDEs that have built-in support for compiling ILASM files?
Are there any IDEs out there apart (from Visual Studio) that will let you build IL assembler files right out of the IDE?
2
votes
1answer
181 views
Is it OK to remove .property statements from ILAsm files for production use?
Still working on my obfuscation program based on modifying ILAsm files. (Ref. Which C# method names should not be obfuscated? )
In looking at the ILAsm code, I get the impression that the .property ...
1
vote
1answer
301 views
signing unsigned interdependent third party libraries
My project uses a set of unsigned third party libraries (compiled in .Net 2.0). I already know how to sign these libraries using ildasm and ilasm. However, the problem is that the thirdparty libraries ...
0
votes
3answers
258 views
Whats the relation(if any) of MASM assembly language and ILASM?
whats the relation(if any) of MASM assembly language and ILASM. Is there a one to one conversion? Im trying to incorporate Quantum GIS into a program Im kinda writing as I go along! I have GIS on ...
1
vote
2answers
756 views
Are there any examples of compiling CIL code from within a Visual Studio project
I realize that it's been asked and answered that Visual Studio does not support CIL/MSIL projects. The MSBuildContrib project has an ILASM task which allows you to compile IL files at build time.
...
5
votes
2answers
1k views
How might I strongly sign an external DLL while retaining its assembly metadata?
I have a few libraries I use in my project that are unsigned. Because my application is strongly signed, the libraries must be as well.
I sign these libraries using:
"%PROGRAMFILES%\Microsoft ...
2
votes
1answer
1k views
.NET Framework 4 ILASM targeting framework 2
Question: I need to create, using ILASM.EXE, framework 2.0 assemblies.
So far, I have seen that fw 2 ilasm: creates 2.0 assembies.
FW 4 ilasm, on the other hand: creates 4.0 assemblies.
So far I am ...
2
votes
1answer
60 views
Missing graphics when disassembling and re-assembling .net program
I have a piece of software. When I disassemble the PE file
ildasm foo.exe /output=foo.il
I get a bunch of files, like foo.MainForm and foo.bar.dll. When I then try to re-assemble the file
ilasm ...
4
votes
1answer
155 views
Defining custom attributes in CIL
What is the syntax for defining an array literal in CIL for the purposes of decorating a member with a custom attribute?
I am writing some .NET code in CIL (using ilasm.exe to compile it) and I need ...
2
votes
2answers
948 views
Compile IL code at runtime using .NET 3.5 and C# from file
I would like to take a file that is an IL file, and at run time compile it back to an exe.
Right now I can use process.start to fire off the command line with parameters (ilasm.exe) but I would ...
2
votes
2answers
966 views
.NET compiler - CLR assembly metadata access / reflection from non-managed C++
I have a compiler that targets the .NET runtime (CLR). The current version of the compiler is written in standard C++ (non-managed). The compiler currently lacks support to reference assemblies at ...
2
votes
1answer
2k views
Problem with ilasm
I have a quite big program in .net 3.5 SP1 which is compiling just fine.
However when I want to obfuscate it with Obfuscator Pro (evaluation for now), Obfuscator stops with the following error:
...
2
votes
2answers
367 views
ILASM for Compact Framework?
I'm working with Linq expression trees (from the db4o/Mainsoft/Mono port) on the Compact Framework. Since System.Reflection.Emit doesn't exist, I can't compile my LambdaExpressions into delegates, ...