更改代码设置后,VS VS 2010中的VS代码无法打开并出现各种错误

时间:2014-08-04 16:42:40

标签: c# visual-studio-2010 visual-studio visual-studio-2013

我在Visual Studio 2013中创建了一个Web客户端和Web服务,而我正在使用2010年的大学,它将无法打开!它提到了一些关于.NET Framework 4.5的内容。如何转换我的项目,以便在2010年开放?我需要尽快排序。

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

    <system.serviceModel>
        <bindings>
            <basicHttpBinding>
                <binding name="BasicHttpBinding_IMechGLSService" />
            </basicHttpBinding>
        </bindings>
        <client>
            <endpoint address="http://localhost:8733/" binding="basicHttpBinding"
                bindingConfiguration="BasicHttpBinding_IMechGLSService" contract="MechGLSReference.IMechGLSService"
                name="BasicHttpBinding_IMechGLSService" />
        </client>
    </system.serviceModel>
</configuration>

1 个答案:

答案 0 :(得分:0)

在2013年的项目中。右键单击项目,然后单击属性。当新的“页面”打开时,您会在屏幕的左侧看到一个显示应用程序的选项卡。在该选项卡上,您应该看到您的程序集名称和另一个标记为目标框架的标签。在此之下,您应该能够打开下拉列表并单击 .NET Framework 4.0 enter image description here

http://locktar.wordpress.com/2011/03/24/change-target-framework-version-for-all-the-projects-in-the-solution/