Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / web / ASP.NET

ASP.NET Cannot Load a Reference Assembly

5.00/5 (1 vote)
22 Nov 2021CPOL 8.4K  
Short route to fix this issue
Visual Studio gets lost when updating packages, its project file and packages.config. In this tip, you will see an easy way to overcome this issue.

Introduction

Too often, I see when running my webapplication from Visual Studio a problem with loading assemblies. Mismatching numbers, etc. It is annoying.

Image 1

Using the Code

There is an easy way to overcome this issue.

Step 1: Open your web.config

In your web.config, you will find the <runtime> section. Select that section and remove it from your web.config:

Image 2

Step 2: Rebuild Your Solution

When you rebuild your solution, you will get a warning stating conflicts.

Image 3

Step 3: DoubleClick the Line that States Conflicts

You will get a question if you want it fixed and click the YES button. A new runtime section is made in your web.config.

Image 4

Step 4: Rebuild Your Solution and Run It

Have fun with your application.

Image 5

History

  • V0.1: Initial tip

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)