Global Assembly Cache of Microsoft Intermediate Language format dlls
Questions tagged [gac-msil]
11 questions
10
votes
1 answer
Why are not all assemblies in GAC built as MSIL?
What is the reason that not all of the assemblies in the Global Assembly Cache (GAC) are built as MSIL? I see x86 and AMD64 architecture types used for some assemblies, as in the example below, but not for others:
C:\Windows\assembly\
Why is…

B.K.
- 9,982
- 10
- 73
- 105
3
votes
0 answers
There was a mismatch between the processor architecture of the project being built "MSIL" and the processor architecture of the reference
I am using eConnect SDK 11.0. I have a windows service app in which i had added reference of GP sdk.
1) Microsoft.Dynamics.GP.eConnect.dll
2) Microsoft.Dynamics.GP.eConnect.Serialization.dll
When i build my project it had built successfully but gave…

Developer
- 173
- 2
- 13
2
votes
1 answer
SAP Crystal Reports v13 runtime not installing on local computer
I am running VS professional 2015 on my Windows 10 professional, and I needed to install the Crystal Reports runtime on my computer so I can build projects with CrystalDecisions.CrystalReports.Engine and CrystalDecisions.Shared, version…

Kenyon
- 25
- 1
- 5
1
vote
1 answer
Translate parameters in object arrays into their own type in .NET Emit
There are some definations:
public class Message
{
public SayType Say(string name)
{
Console.Write("Hello," + name );
return SayType.Name;
}
}
public enum SayType
{
Name
}
public delegate SayType…

DamXosp4j
- 83
- 7
1
vote
1 answer
Is there a difference between implementing an interface vs adding a new method?
As shown in the code below, there are two interfaces IFoo defined in two different assemblies:
/// assembly A
interface IFoo {
void DoSomething()
}
/// assembly B
interface IFoo {
void DoSomething()
void DoSomethingElse()
}
///…

Lifu Huang
- 11,930
- 14
- 55
- 77
0
votes
0 answers
visual studio compile error with GAC_MSIL folder
I am doing an App in Visual Studio 2012. I installed Crystal Report 13.0.4 and when I run the application throws this error
Error 2 the type
'CrystalDecisions.Shared.ParameterFields' exists in …

Diego
- 2,238
- 4
- 31
- 68
0
votes
1 answer
How to determine http verb allowed on a .net function using ildasm
I have a .net DLL which has web api end points with http verb decoration. And I only have ildasm disassembler to view IL code. How can I check what http verb is allowed for an endpoint(a particular Controller Action method)?

Mahen
- 3
- 5
0
votes
1 answer
C# MSIL call method and pass an object[]
I want to convert a method in C# to MSIL code using the reflection emit dependency.
The method that I'm trying to convert is the transformation method:
public class AClass
{
public string Transformation(string a, string b, string c)
{
…

Diogo Neves
- 556
- 4
- 14
0
votes
0 answers
"Index was outside the bounds of the array." - when Calling dynamically generated WCF function method
I have created a dynamic function to my class using MSIL emit statements and I have hosted the class as WCF service.
Emitted code :
Type myMthdParams = new Type[2] {};
myMthdParams[0] = typeof(int);
myMthdParams[1] = typeof(int);
MethodBuilder…

badari
- 91
- 1
- 8
0
votes
1 answer
GAC_MSIL and Shell Extensions
I've trying to develop while also creating a COM .DLL for my shell icon overlay and context stuff, so i do some search on the tool to make this happens, then i found SharpShell, the shell extension helper tool.
I've been using sharpshell to create…

Kevin Yan
- 65
- 7
-1
votes
1 answer
Memory allocation for enumerated types in .NET
Now, when I used to work a lot with embedded systems and severe memory constraints I remember we had to be extremely conscious about the types used and how they were used. Now, it is typical of Windows programmer to waste space simply because you…

Lord of Scripts
- 3,579
- 5
- 41
- 62