Assemblies are collections of compiled .Net types and resources grouped into a logical and physical unit (in the form of a .dll file or .exe file).

learn more… | top users | synonyms

2
votes
1answer
32 views
+50

Loading an assembly by Bytes loses the location

I want to load the assembly via the following var loadedAssembly = Assembly.Load(File.ContentsAsBytes); the File.ContentAsBytes returns the dll as a byte[], via the following ...
0
votes
2answers
29 views

VS 2010 System.Xml.Linq.dll 'File is corrupt.' [closed]

So I came in this morning and built my project successfully and then my entire environment decided to quit on me. First IIS completely broke due to what appeared to be a corrupt redirection.config ...
2
votes
1answer
56 views
+50

Error when deploying a SQL project with Visual Studio 2008

When deploying a SQL project with Visual Studio 2008 we create a .sql file. In the project properties we have set the deploy action: Create a deployment script. When building and deploying the ...
5
votes
1answer
54 views

How do I find all assemblies containing type/member matching a pattern?

I have a folder (possibly, with nested sub-folders) containing thousands of files, some of them are DLLs, and some of those DLLs are .NET assemblies. I need to find all assemblies containing ...
0
votes
0answers
21 views

C++ - Get version of DLL in GAC

I have a managed C# DLL that I am installing in the GAC. I want to be able to view the version of my DLL so I know whether or not the user needs to update their DLL. I wanted to do this in Java but it ...
0
votes
0answers
30 views

How to make MSBUILD resolve System.Action<T1,T2> correctly?

My projects build fine in Visual Studio and also using MSBUILD on my machine. On the build agent however if I run MSBUILD I get the error below. I have already tried to specify a target framework of ...
0
votes
0answers
31 views

I referenced a assembly but Visual studio 2012 does not see it.. but it works

It does not compile unless I comment out the using Excel; (I am using http://exceldatareader.codeplex.com/) Once I comment it out.. it compiles but I can not navigate to IExcelDataReader.. So what is ...
0
votes
0answers
36 views

Using ILMerge for combining assemblies

I have written a Visual Basic.net application and am currently using a .DLL that I have created myself. I have read online that it is possible to use ILMerge to combine two assemblies together. Can I ...
-1
votes
1answer
35 views

Invoking assemblies asynchronously

I have a 'small' problem in one of my projects. I have to invoke 2 assemblies stored in Byte() I don't want them to be written to the disk, to do so, I do Sub Main() ...
-2
votes
0answers
19 views

how to create your own assembly (namespace) in .net framwork

Actually I want to create my own assembly in .net framework both shared and private. Do anybody have step by step process to do that. Please share
0
votes
3answers
124 views

Could not load file or assembly System.Data.SQLite

I have a working windows form application (C# .NET 4) using an SQLite3 Database file for storing and reading data. When i deploy the application on the any machine other then the dev machine, i get ...
0
votes
0answers
185 views

Assembly Language 8086 add using 32 bit reg & give value in 64bit?

Assembly Language 8086: I Want add value1 to value2 by using 32bit register and give value under 64bit(equals to 16 digits).. it is Possible to use the space of 2 reg (32+32 = 64bit)?... i Think so ...
0
votes
2answers
220 views

Multiply 2 Values in Assembly Language 8086?

ASSEMBLY LANGUAGE 8086: I am multiplying two values input from console window. I am using 32 bit registers eax, ebx, but it is not Multiplying the values. The program is running, but it is not ...
0
votes
1answer
92 views

Issue with debugging app using MQ-Websphere : amqmdnet.dll due to Version conflict

I have an App that references the IBM-WebSphereMQ dll "amqmdnet.dll". I'm trying to debug this Console Application locally, for which I got the 64 bit dll from our OP's team.The server that the ...
0
votes
1answer
57 views

The key container name 'bsn' does not exist

I'm trying to run the project of bsn-goldparser (https://code.google.com/p/bsn-goldparser/) and I have the next trouble: Visual Studio shows me the next message : "Error 2 Cryptographic failure ...
1
vote
3answers
64 views

ASP.NET - Assembly Not Found

I have a ASP.NET project running on IIS7. I just adding Microsoft.Practices.EnterpriseLibrary.Common.dll, Microsoft.Practices.EnterpriseLibrary.Data.dll, & ...
0
votes
0answers
12 views

Exclude EnvDTE from application

I used EnvDTE to create a custom control, but while loading the control into an application the EnvDTE is also added to the application's reference. But it is not needed in the application as it can ...
0
votes
1answer
33 views

Shared .Net assembly deployment for click once apps

I have a set of applications (8 in total) all deployed as click once applications. When the original team started building these apps, the architecture was that they have a common project that ...
0
votes
0answers
21 views

How to make test-jar for maven assemblies?

Is there a possibility to make a test-jar file for every assembly and afterwards run the tests using Maven? E.g. there will be a myproject-1.0-x-tests.jar file for the myproject-1.0-x.jar assembly. ...
0
votes
0answers
68 views

Entity Framework inheritance over different assemblies

I'm quite new to Entity Framework, but the more I worked with it, the more I actually liked it. But now my passion is at risk, as I'm struggeling with an issue that already made me crush my head ...
0
votes
1answer
79 views

Loading all referenced assemblies .NET even if not used explicitly in code

We have a windows service which is using Autofac, when we try to load the referenced assemblies not all are listed as some contain objects we aren't using anywhere in the application but interface ...
1
vote
1answer
104 views

Another assembly referencing the old dll

I have 2 assemblies lets call them A and B. I've assigned strong names to them and now the problem arises that assembly B is looking for the old version of assembly A. *EDIT2: If I delete AssemblyB ...
0
votes
1answer
41 views

AssemblyResolve in Windows Services c#

I have an issue which I have solved in a normal application in the normal AssemblyResolve way, that is by creating an event such as AppDomain.CurrentDomain.AssemblyResolve += ...
0
votes
1answer
33 views

Intellisense doesnt list the Gherkin statements which are from assembly reference

Intellisense doesnt list the Gherkin statements which are from assembly reference Eg: In Project A "Specific.feature" Project B - included into A as project reference "Commons.feature" When I click ...
0
votes
1answer
65 views

Installing .NET 4.0 assemblies to GAC in XP and Windows 7 PCs

I needs to install .NET 4.0 assembly to GAC duing the MSI installation, target OS can be either XP and Windows7. I see there is a different is registering dlls to GAC in XP and windows7. Could ...
0
votes
2answers
262 views

The type is defined in an assembly that is not referenced. You must add a reference to assembly [duplicate]

I've been at this for a while, unable to figure out what the cause is. Error 1 The type 'Google.Apis.Requests.IErrorResponseHandler' is defined in an assembly that is not referenced. You must add ...
2
votes
1answer
55 views

Dynamically Updating a Loaded Dll

I am creating two solutions for a project I am working on, one for the main server, which will ideally continuously run without need for update. The secondary solution is a DLL, where programmers will ...
1
vote
1answer
85 views

Getting interface methods from a dynamically loaded class in .NET

I've got a .dll library I'm writing that interfaces with a proprietary COM assembly. My goal is to publish my work online once it's built, however I need to remove the COM assembly as a project ...
0
votes
1answer
28 views

Runtime version resolution for assemblies referenced as projects

For our enterprise application, we have some assemblies that are referenced as dlls and others that are referenced as projects. For the ones that are referenced as dlls, we have changed the "Specific ...
1
vote
1answer
152 views

Project reference work-around .net 4.5 and .net 3.5

In continue for this thread: Mixing .NET 3.5 with 4/4.5 assemblies in the same solution/project I found a workaround: ...
1
vote
2answers
174 views

Assembly + Meta Data + Assembly Manifest + MSIL CODE

Can any one will answer the following questions. I am using c# language. Can I call Assembly as .ddl or .exe file? Can I call Assembly Manifest as assembly? What is different between Assembly, meta ...
1
vote
1answer
71 views

Where .NET Assembly loaded from CodeBase goes?

I am loading a dll from an external place using < codebase > element in the application configuration. I want to know where the assembly gets instantiated? I made < codebase > to point to my ...
2
votes
0answers
60 views

Loading an assembly from several plugins, but only load it once

I am developing plugins for another application that is strong named, so any plugin that references it needs to be recompiled for each version. So, I have a library (that doesn't reference the main ...
2
votes
1answer
106 views

How can I use a .net assembly from another application's bin directory if it's not in the GAC?

I'm developing a managed C++ application that will interface with another company's product. Their product is .net based, and the main API to use comes from a .net assembly, called foo.dll. My ...
0
votes
1answer
57 views

how to add statically link run-time assemblies?

i am trying to run an exe file on another computer that doesn't have visual studios installed. When i try run the file i get the error : This application has failed to start because the application ...
1
vote
1answer
78 views

Multi file assemblies

What is the difference and advantage between having a single file assembly that is physically coded in multiple .cs files and a multi file assembly that has multiple .NetModules?? My prof says that ...
1
vote
1answer
235 views

Deploy crystal report to server

Hi I need to deploy my asp.net project with crystal report to my server. I try downloading the file from http://downloads.businessobjects.com/akdlm/cr4vs2010/CRforVS_13_0_3.exe. But now I facing ...
0
votes
0answers
79 views

assemblies in asp.net bin are not being loaded

Hoping some one can help me with this. Within IIS7 I have updated the physical path for the default directory to the folder containing my asp.net application. When I attempt to load the site. xyz.com ...
0
votes
1answer
58 views

Is it possible to reflect over the details of csproj assembly references?

We frequently run into trouble because project/package references in our solution are misconfigured (e. g. improperly requiring a specific version). I'd like to write a simple NUnit test to check for ...
0
votes
1answer
97 views

How to give DataGridView cell intellisense?

I'm trying to create entity classes using CodeDOm for a table from SQL server. I have a datagridview of one column to give the list of namespaces to be added to the class. Is there are any way that I ...
0
votes
0answers
29 views

How Build behave on Adding Existing Project

To my new Solution in my Module. I added existing Project of some other Module.Now I created new Project and Added reference of this new Project to the existing Project.We have a xml file that Build ...
2
votes
1answer
520 views

Visual Studio adding executable file with same name as dll

In Visual Studio 2008, I added WinScp.dll (in project root) as a reference and immediately there was a yellow icon. At compile-time: The type or namespace name 'WinSCP' could not be found (are you ...
6
votes
3answers
230 views

404 on Controllers in External Assemblies

I am having trouble resolving 404 responses in my Asp.Net MVC 4 project. It's built in VS2012 targeting 4.5. I have pre-compiled views and controllers built into stand-alone DLLs. I am able to ...
0
votes
1answer
65 views

Can I rely on specific capitalization of .Net assembly names?

In my code I want to check if a specific assembly is loaded. I have this code: var assembly = AppDomain.CurrentDomain.GetAssemblies().Where( a => ...
0
votes
1answer
73 views

Array Input, Output

My program will get numbers as input from user using an array and will print the numbers on the monitor. SO expecting Input and Output of my program is as following: i/p: 1 2 3 4 o/p: 1 2 3 ...
0
votes
0answers
20 views

Fusion logging not outputing any log

Pretty stumped with an issue, I have a com add-on which runs on the office suite of products, we have a host of clients that run the add-on with different variations of office and MS OS versions. ...
1
vote
4answers
258 views

models in separate assembly from asp.net mvc4 web project [closed]

I have a solution with the following projects: App.Web.Private - Administration web interface. App.Web.Public - End-user public interface. App.Web.Core - Commons for both private and public ...
1
vote
2answers
121 views

Set assembly level attribute conditionally

I would like to set an assembly level attribute conditionally based on a value read from my config file. Is it possible? I read that attributes are static metadata and so while the data itself can be ...
9
votes
1answer
383 views

Performance difference between .NET method (in .dll) and reflected version

I have been attempting to optimize a JavaScript encode function (in C#) to improve its performance (in an overall attempt of improving the performance of an enterprise web application). We attempted ...
0
votes
0answers
47 views

automatic split csproj to multiple assemblies

i have a very large csproj written with .net 3.5 which i'd like to automaticaly decompose to multiple assemblies where each assembly will contain the code for a single windows form (instead of doing ...

1 2 3 4 5 39