Why after cleaning my ASP.NET project on .NET 4.6.1, my Visual Studio 2017 IDE no longer recognizes the namespaces of my projects?
I have an ASP.NET web application running on .NET 4.6.1. This application depends on other projects. And when I cleaned the main application, my VS 2017 no longer recognized the “using” namespaces of other projects.
Why after cleaning my ASP.NET project on .NET 4.6.1, my Visual Studio 2017 IDE no longer recognizes the namespaces of my projects?
I have an ASP.NET web application running on .NET 4.6.1. This application depends on other projects. And when I cleaned the main application, my VS 2017 no longer recognized the “using” namespaces of other projects.
Why after cleaning my ASP.NET project on .NET 4.6.1, my Visual Studio 2017 IDE no longer recognizes the namespaces of my projects?
I have an ASP.NET web application running on .NET 4.6.1. This application depends on other projects. And when I cleaned the main application, my VS 2017 no longer recognized the “using” namespaces of other projects.
Why after cleaning my ASP.NET project based on .NET Framework 4.6.1, my Visual Studion 2017 IDE no longer recognizes the namespaces of my projects?
I have an ASP.NET web application based on .NET Framework 4.6.1, this application depends on other projects. And when I cleaned the main application, my VS 2017 no longer recognized the “using” namspaces of other projects.
No webpage was found for the web address: https://localhost:7002/Villa/UpdateVilla?villaId=1006
public async Task<IActionResult> UpdateVilla(int villaId) { var response = await _villaService.Get<APIResponse>(villaId); if (response != null && response.IsSuccess) { VillaDTO model = JsonConvert.DeserializeObject<VillaDTO>(Convert.ToString(response.Result)); return View(_mapper.Map<VillaUpdateDTO>(model)); } return NotFound(); } this code is for updating the details of Villa. i’ve added a breakpoint at this method and found out when i click on update button, it get […]