ASP . NET MVC Project Archives do not open "the Operation could not be completed"

Asked

Viewed 164 times

2

I try to open "cshtml" files and it does not open, presenting the error below.

inserir a descrição da imagem aqui

This occurs in all my projects, started from one hour to the next.

I use Visual Studio 2015, project ASP . NET 4.6 MVC 5.
Anyone who can help, thank you.

As requested follow the code of Web.config

<?xml version="1.0" encoding="utf-8"?>
<configuration>


<configSections>
    <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
    <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
  </configSections>
  <connectionStrings>
    <add name="DefaultConnection" connectionString="Data Source=(LocalDb)\v11.0;AttachDbFilename=|DataDirectory|\aspnet-palmasjudoclube.com.br.web-20140225031045.mdf;Initial Catalog=aspnet-palmasjudoclube.com.br.web-20140225031045;Integrated Security=True" providerName="System.Data.SqlClient" />
  </connectionStrings>
  <appSettings>
    <add key="webpages:Version" value="3.0.0.0" />
    <add key="webpages:Enabled" value="false" />
    <add key="ClientValidationEnabled" value="true" />
    <add key="UnobtrusiveJavaScriptEnabled" value="true" />
  </appSettings>
  <system.web>
    <authentication mode="None" />
    <compilation debug="true" targetFramework="4.5" />
    <httpRuntime targetFramework="4.5" />
  </system.web>
  <system.webServer>
    <modules>
      <remove name="FormsAuthenticationModule" />
    </modules>
  </system.webServer>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="1.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="0.0.0.0-1.5.2.14234" newVersion="1.5.2.14234" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
  <entityFramework>
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
      <parameters>
        <parameter value="v11.0" />
      </parameters>
    </defaultConnectionFactory>
    <providers>
      <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
    </providers>
  </entityFramework>
</configuration>

I deleted a cshtml class from the project and Visual Studio was able to open the file, but it presents the execation message below: inserir a descrição da imagem aqui

The contents of the file have analyzed and found no key errors or repetition. I tried to insert the contents of it but it exceeds the limit of 30000 characters of a question. I am seriously considering deleting Visual Studio and reinstalling it.

  • See if this can’t help you: http://stackoverflow.com/questions/19523510/vs2013-operation-could-not-be-completed

  • Try looking for errors in web.config, both in the project and in the views, looking for duplicate tag errors or spaces in incorrect places

  • Can you please put the contents of your files Web.config in your question?

  • I put ai Webconfig. The detail is that this occurs in all projects, even new ones. .

1 answer

0

I decided to restore Visual Studio, because the fact occurred in any project could not open a cshtml file, being that it opened in other editors and only in Visual Studio that did not open. Restoring solved.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.