Linked Questions

7 votes
3 answers
60k views

Writing a routine WinForms app that references a few custom libraries written by myself. I am building one particular library which depends on another library and, when I do, I get the following ...
Bruce's user avatar
  • 457
1 vote
1 answer
14k views

I have solution and couple projects inside. I cannot figure out why i get this error. I cannot figure out where this is coming from so far. I was looking at all projects references and bin folders. At ...
Arie's user avatar
  • 3,611
0 votes
0 answers
774 views

What is the error in c#? System.IO.FileNotFoundException: 'Could not load file or assembly 'PopupControl, Version=1.4.0.968, Culture=neutral, PublicKeyToken=04c10344d6495b18' or one of its ...
user avatar
0 votes
0 answers
179 views

I've been occasionally getting this popup stopping me from saving/building my project, can anybody advise me on how best to debug this? I'm only able to find information on Google related to ...
Spark's user avatar
  • 1,037
-1 votes
1 answer
166 views

I have this package, Microsoft.AspNet.Web.Optimization, that uses Antlr3. Once i installed it, Antlr3 came in version 3.4.1.9004. After that i was checking my installed packages for updates and, by ...
Ariel's user avatar
  • 916
956 votes
7 answers
242k views

There are three assembly version attributes. What are differences? Is it ok if I use AssemblyVersion and ignore the rest? MSDN says: AssemblyVersion: Specifies the version of the assembly being ...
Jakub Šturc's user avatar
  • 35.9k
594 votes
8 answers
293k views

I have some confusion related to the .NET platform build options in Visual Studio 2008. What is the "Any CPU" compilation target, and what sort of files does it generate? I examined the output ...
galets's user avatar
  • 18.7k
83 votes
7 answers
109k views

My VSTO Outlook Add-in suddenly stopped working on one customer machine (it does not load, no error message) and I'm stuck with troubleshooting. The machine is Windows 7 x86, Outlook 2007. The add-in ...
Heinzi's user avatar
  • 173k
69 votes
5 answers
66k views

I have a small project in C# that uses two external dll files. One is the Redmine.Net.Api.dll and the other is NLog.dll. I'm using Visual Studio 2010. I added both files as Reference to my project. ...
svz's user avatar
  • 4,598
28 votes
6 answers
136k views

I am building a dll, which references a second dll. I have added the second dll as a reference in the first dll's project by going to Properties > Common Properties > Framework and References &...
duggulous's user avatar
  • 2,827
20 votes
10 answers
74k views

Is there any way, I can convert HTML Document (file not URL) to Image, or PDF to image? I am able to do the above using Ghostscript DLL , Is there any other way , I can do it, without using the ...
D J's user avatar
  • 972
21 votes
7 answers
50k views

I am trying to upgrade Unity to version (2.1.505.2), but when I run the application I get the following FileLoadException Could not load file or assembly 'Microsoft.Practices.Unity, Version=2.0....
bas's user avatar
  • 15.2k
18 votes
1 answer
23k views

i have written a Win32/net DLL, it works fine under Win XP, Win7 and 8 but under Win 8.1 it fails. Dependency Walker says: API-MS-WIN-CORE-KERNEL32-PRIVATE-L1-1-1.DLL not found (user32.dll will call ...
user3600403's user avatar
6 votes
4 answers
49k views

in my web application i copy and paste the code from other site to in my page also the source code starting form when i run the application it is giving the error like this Server Error in '/...
Surya sasidhar's user avatar
9 votes
4 answers
10k views

I am building a .Net standard library, which builds fine but on testing, I get this error HResult=-2147024894 Message=Could not load file or assembly 'System.Net.Http, Version=4.1.1.1, Culture=...
okeziestanley's user avatar
11 votes
3 answers
5k views

My application compiles fine, but I get the following runtime error: System.IO.FileNotFoundException was unhandled HResult=-2147024770 Message=Could not load file or assembly {Wrapper} or one of ...
Denise Skidmore's user avatar
4 votes
2 answers
20k views

I have a code like this public static Type ToType(XmlSerializableType xmlSerializableType) { string func = "XmlSerialzationType.ToType"; Type type = null; if (xmlSerializableType != null &&...
steveaston's user avatar
0 votes
1 answer
27k views

I'm having a issue with a Visual Basic 2013 program I made (in vb.net) and the issue is with MySQL.data.dll, I've tried changing copy local to true in the GAC, I've tried upgrading my MySQL.data.dll ...
Ryan Smith's user avatar
3 votes
2 answers
6k views

We are using Python for .Net to call .NET API built using C# from Python script. We are getting ImportError: No module named - error when an import is done as follows. Python script: import sys sys....
DotWish's user avatar
  • 113
3 votes
1 answer
1k views

I'm trying to use CefSharp WindowForm Control in the VSTO Excel Addin. The CefSharp.WinForms version is 75.1.142 and I'm making an addin on Excel 2013 (64 Bit) through VS 2017. I'm getting ...
Bikramjit Singh's user avatar
1 vote
1 answer
6k views

I am running a project that had been running without issue for some time but recently started throwing an error stating, "Could not load file or assembly 'Microsoft.Practices.Unity, Version=2.1....
Mark's user avatar
  • 1,707
2 votes
2 answers
3k views

I am trying to build a selenium-silverlight UI test using selenium Nuint test framework. Here is my code using System; using OpenQA.Selenium; using OpenQA.Selenium.Chrome; using OpenQA.Selenium.IE; ...
Rahul Lodha's user avatar
  • 3,731
0 votes
2 answers
7k views

I have this error on my VisualStudio 2017 Wep API Project: Could not load file or assembly 'System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its ...
MiguelSlv's user avatar
  • 15.4k
4 votes
0 answers
5k views

I'm getting below error in one of my ASP.NET Web API Project. Could not load file or assembly 'Microsoft.Rest.ClientRuntime, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or ...
Sunny Sharma's user avatar
  • 5,004
2 votes
1 answer
3k views

I use Word.Interop reference in my solution and have no errors or warnings. When I run the program I get this message I have already checked in the reference properties and "Embed Interop types" ...
user3041065's user avatar
4 votes
1 answer
2k views

I have a .NET Core 6 WPF application using System.Management namespace to query connected devices on my windows computer like so: string query = "SELECT * FROM Win32_PnPEntity WHERE (PNPClass = '...
Jorge A.'s user avatar
1 vote
0 answers
4k views

I am getting this error at runtime when running the application for the specific page. I have been trying to fix this for few days now and tried several alternatives from various stackoverlow or ...
Alex Teslin's user avatar
0 votes
1 answer
4k views

I'm working on a large application in which I need a few internal packages to fetch data. It is building fine, but while debugging the part of code I added I get the following error. Exception thrown: ...
Saif Haider's user avatar
0 votes
1 answer
2k views

I have this solution that consists of multiple projects (one is a class library and other is the web project, which is MVC. However, when trying to run the web project in Debug, I get the "Could not ...
Hashan JXT's user avatar
0 votes
1 answer
2k views

I am using Ghostscript.Net, Version=1.2.1.0, to rasterize PDF to images. I have referenced both the 32 bit-gsdll32.dll and 64 bit-gsdll64.dll of ghostscript in my project directory/bin folder. I am ...
Mellionis's user avatar
  • 105
2 votes
0 answers
2k views

I have a app that I have been working on for weeks. Monday it started having issues with this error - seemingly out of the blue. I have tried: uninstalling and reinstalling the dll using the install ...
Eric Snyder's user avatar
  • 1,962
1 vote
2 answers
1k views

I'm writing a class library to abstract our company's Database functions, but when the code gets to instantiating one of my database objects we get a: FileNotFound Exception: Could not load ...
Moffen's user avatar
  • 2,063
1 vote
1 answer
2k views

"Could not load file or assembly 'GalaSoft.MvvmLight, Version=5.4.1.0, Culture=neutral, PublicKeyToken=0ffbc31322e9d308' or one of its dependencies. The located assembly's manifest definition does ...
Doove's user avatar
  • 11
0 votes
3 answers
1k views

Could not load file or assembly 'Microsoft.Owin.Security.OAuth' or one of its dependencies. The process can not access the file because the file is in use by another process. (Exception from HRESULT: ...
Zhan Vardanyan's user avatar
0 votes
1 answer
1k views

I have strange symptoms in my project HRESULT: 0x80131040 occured [Microsoft.Azure.Amqp, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'] <assemblyIdentity name="Microsoft....
JH L's user avatar
  • 21
1 vote
3 answers
1k views

Here I am trying to implement stripe for payment gateway in .net mvc My View code is as below. @{ ViewBag.Title = "Index"; } <link type="text/css" rel="stylesheet" href="https://checkout....
Madhav's user avatar
  • 569
0 votes
2 answers
1k views

When I am trying to call a method of another project class file, I am getting the following error I have 2 C# library projects inside same solution file. Inside each project I have a class file. I ...
Lelouch's user avatar
  • 87
1 vote
1 answer
1k views

I have a solution with several projects in it, one of them being a website. The website has references to five web services, which are being run on our own servers. When building the website with VS ...
thalbr's user avatar
  • 11
2 votes
1 answer
786 views

I have a ASP.NET project with a plug-in architecture. I have a strongly named dll dependency in my reference chain, that both the app and the plug-in are dependent on. I'd really like to be able to ...
Denise Skidmore's user avatar
1 vote
2 answers
786 views

I try to connect to a fiscal device with a C#. I use this documentation to do so: http://integration.atol.ru/api-en/#connection-to-project So basically I have a driver of the device installed on my PC ...
ob1kenoby's user avatar
0 votes
0 answers
892 views

I have the following code: [Command("aitest2")] public async Task test(string text) { var input = new ModelInput(); input.SentimentText = text; // Load model and predict output of sample ...
user avatar
1 vote
0 answers
870 views

When I get a System.IO.FileLoadException : Could not load file or assembly there are always 2 different Versions in the error message. But the error text for both is the same: System.IO....
kuppi's user avatar
  • 53
0 votes
0 answers
869 views

Severity Code Description Project File Line Suppression State Error XC1020: Build error occurred in the XAML MSBuild task: 'Could not load file or assembly 'file:///C:\Projects\DIB\...
haritha kannanraj's user avatar
0 votes
1 answer
603 views

I'm having error when running WPF application with reference to C:\Program Files\Affectiva\Affdex SDK\bin\release\Affdex.dll Exception: Could not load file or assembly 'Affdex, Version=3.1.1.419, ...
emotionbot's user avatar
0 votes
1 answer
722 views

when I am debugging i faced an exception at below point. var connection = new HubConnection("http://localhost:8080/"); Exception: Could not load file or assembly 'Newtonsoft.Json, Version=6.0.0.0, ...
Siva's user avatar
  • 1,421
0 votes
1 answer
687 views

I noticed that an application that I've been working on is crashing on startup when run on a virtual machine. The error is an unhandled exception which when caught claims "Could not load File or ...
user3161729's user avatar
1 vote
1 answer
1k views

Receiving the following error when trying to run a Server Process, class library project: "ERROR : Error (0) Could not load file or assembly 'ExcelDataReader, Version=3.6.0.0, Culture=neutral, ...
LearningStuff's user avatar
-1 votes
1 answer
528 views

I have consulted code on the website http://codeproject.com with the title "Loading Assemblies from Anywhere into a New AppDomain" of Marius Bancila, but I tested the error as in the ...
NhuTruong's user avatar
0 votes
1 answer
579 views

I built a .Net 2.0 Application for Windows XP but I made it in Windows 7. The application contains a Mysql.data connection and CrystalReport. When I try to run it on Windows XP, the application does ...
Isa Hariman's user avatar
0 votes
1 answer
405 views

Using the latest version of VS 2017 I Create a new azure functions project. Add a timer trigger function Upgrade to latest (1.0.8) azure functions nuget package Add a reference to azure storage for ...
Oddleif's user avatar
  • 811

15 30 50 per page