The ilasm tag has no wiki summary.
5
votes
2answers
504 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 ...
4
votes
1answer
65 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 ...
4
votes
1answer
111 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
1answer
113 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 ...
2
votes
1answer
451 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
42 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 ...
2
votes
2answers
666 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
715 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
2answers
295 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, ...
1
vote
1answer
65 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 ...
1
vote
2answers
317 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
54 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?
1
vote
1answer
187 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
1answer
20 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 ...
0
votes
0answers
85 views
Modify the version info of a built .Net assembly
I was wondering if there is anyone knowing a better way to modify the version info of a .Net assembly of the one I am currently using.
My current approach is the following one:
I do disassemble the ...
0
votes
2answers
153 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?
0
votes
3answers
170 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 ...
0
votes
2answers
299 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.
...
0
votes
1answer
1k 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:
...