4

Visual Studio 2010 Express でアプリケーションを実行すると、次のエラーが表示されます。「アプリケーションの構成が正しくないため、アプリケーションを開始できませんでした。マニフェスト ファイルでエラーの可能性を確認してください」

私のマニフェストファイルは次のようになります:-

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
  <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
    <security>
      <requestedPrivileges>
        <requestedExecutionLevel level="asInvoker" uiAccess="false"></requestedExecutionLevel>
      </requestedPrivileges>
    </security>
  </trustInfo>
  <dependency>
    <dependentAssembly>
      <assemblyIdentity type="win32" name="Microsoft.VC80.DebugCRT" version="8.0.50727.6195" processorArchitecture="x86" publicKeyToken="1fc8b3b9a1e18e3b"></assemblyIdentity>
    </dependentAssembly>
  </dependency>
  <dependency>
    <dependentAssembly>
      <assemblyIdentity type="win32" name="Microsoft.VC80.CRT" version="8.0.50727.6195" processorArchitecture="x86" publicKeyToken="1fc8b3b9a1e18e3b"></assemblyIdentity>
    </dependentAssembly>
  </dependency>
</assembly>

それを解決する方法は?

4

1 に答える 1

0

マニフェスト ファイルには Visual Studio 2008 ランタイムへの参照が含まれていますが、VS2010 でコンパイルしています。それがエラーの原因のようです。

于 2012-04-24T10:52:50.897 に答える