Home > Net >  Could not find a part of the path '\\\WebApplication1\bin\WebApp\lication1.ddl'.
Could not find a part of the path '\\\WebApplication1\bin\WebApp\lication1.ddl'.

Time:09-17

'"Could not find a part of the path 'C:\Users\Dushyant\Desktop...... \sample-asp-net-mvc-master\WebApplication1\bin\WebApp\lication1.ddl'."

I'm working on an Asp.net MVC project. When I'm trying to run that application then I see an error message"enter image description here

the Project Link : https://github.com/Dushyantsingh-ds/sample-asp-net-mvc

CodePudding user response:

Paths in VS are limited to 255 characters. Move your project to C:\test and see if it works then.

CodePudding user response:

Try the below option which could solve your problem:

Option 1: Try to delete your existing bin and obj folder then rebuild again

Option 2: Reduce the folder path of your application, put your application in c:/youapplication/

It should solve your problem

  • Related