6

最近、vs2012がインストールされ、ClickOnceアプリケーションが更新されました。私の最初のC#プロジェクトに依存するC++ projectを初めて開いたとき、私はそれを更新せず、すべて正常に動作しました。 VS 2012はまだVisual C++ 2010の前提条件を確認できました。後でプラットフォームツールセットをのProperties->Configuration Properties->Generalに変更してプロジェクトを更新しました。Visual Studio 2012のVisual C++の前提条件がありません

その間に私はもうsoftwareをインストールしましたが、私はClickOnceパブリッシングのために私のプロジェクトにVisual C++の前提条件を追加することができなくなったことを発見しました。 Visual C++ 2010 Runtime Libraries (x64)の前提条件は黄色の三角形でマークされており、それが欠落しています。理想的にはVisual C++ 2012 Runtime Libraries x64 (and x86)に更新したいと思いますが、この前提条件もありません。

C:\Program Files (x86)\Microsoft SDKs\Windows\v8.0A\Bootstrapper\Packagesというフォルダには、対応するパッケージ(vcredist_x64)が空であるためです。また、コントロールパネルにインストールされているプログラムの一覧には、Microsoft Visual C++ 2010 x64x86がインストールされていたことがわかりました。再配布可能なバージョンとランタイムバージョン(Visual Studio 2010で以前にインストールされたものと思われます) C++ 2012ファイル。それで、私はVisual C++ 2012がVisual Studio 2012と一緒にならなかったと主張していますね。私はVisual C++ 2012 Redistributable x64パッケージをダウンロードしてインストールしようとしましたが、今はインストールされているプログラム8(ランタイムバージョンではなく、再配布可能なもののみ)にリストされています。

ただし、前提条件はまだありません。これをどうすれば解決できますか? ... \v7.0A\Bootstrapper\PackagesフォルダにあるVisual C++ 2010のブートストラップパッケージを手動でコピーしてC++ 2012のマニュアルで変更することについて考えましたが、に書かなければならないものは<MsiProductCheck Property="VCRedistInstalled" Product=?>です。この情報を挿入する製品のGUIDはBootstrapper Managerで取得できますが、このプログラムは多くの例外を投げかけていますが、その方法はわかりません。 2番目の解決策として、Visual C++ 2010用のパッケージを単に\\v7.0A\Bootstrapper\Packages\Bootstrapper\Packages to \v8.0A\Bootstrapper\Packagesからコピーするのは安全ですか?

答えて

3

\ v8.0A \ Bootstrapper \ Packagesに移動して、vcredist_x86フォルダがあることを確認してください。そこに残っている必要がありますが、 "EN" フォルダを持っている必要があり、そのフォルダでは、

、あなたはが

ダウンロードできvcredist_x86.exeを

  • のProduct.xml

    1. 不足している必要.exeからhttp://go.microsoft.com/fwlink/?LinkID=266495&clcid=0x409

      <?xml version="1.0" encoding="utf-8" ?> 
      
          <Product 
           xmlns="http://schemas.microsoft.com/developer/2004/01/bootstrapper" 
           ProductCode="Microsoft.Visual.C++.11.0.x86" 
          > 
      
           <!-- Defines list of files to be copied on build --> 
           <PackageFiles> 
           <PackageFile Name="vcredist_x86.exe" HomeSite="VCRedistExe"/> 
           </PackageFiles> 
           <InstallChecks> 
           <MsiProductCheck Property="VCRedistInstalled" Product="{6C772996-BFF3-3C8C-860B-B3D48FF05D65}"/> 
           </InstallChecks> 
      
           <!-- Defines how to invoke the setup for the Visual C++ 11.0 redist --> 
           <!-- TODO: Needs EstrimatedTempSpace, LogFile, and an update of EstimatedDiskSpace --> 
           <Commands Reboot="Defer"> 
           <Command PackageFile="vcredist_x86.exe" 
            Arguments=' /q:a ' 
            > 
      
            <!-- These checks determine whether the package is to be installed --> 
            <InstallConditions> 
            <BypassIf Property="VCRedistInstalled" Compare="ValueGreaterThanOrEqualTo" Value="3"/> 
            <!-- Block install if user does not have admin privileges --> 
            <FailIf Property="AdminUser" Compare="ValueEqualTo" Value="false" String="AdminRequired"/> 
      
            <!-- Block install on Win95 --> 
            <FailIf Property="Version9X" Compare="VersionLessThan" Value="4.10" String="InvalidPlatformWin9x"/> 
      
            <!-- Block install on NT 4 or less --> 
            <FailIf Property="VersionNT" Compare="VersionLessThan" Value="5.00" String="InvalidPlatformWinNT"/> 
      
            </InstallConditions> 
      
            <ExitCodes> 
            <ExitCode Value="0" Result="Success"/> 
            <ExitCode Value="3010" Result="SuccessReboot"/> 
            <DefaultExitCode Result="Fail" FormatMessageFromSystem="true" String="GeneralFailure" /> 
            </ExitCodes> 
      
           </Command> 
           </Commands> 
          </Product> 
      
  • +0

    のおかげであることに注意してください? – Berezh

    +0

    Noamの答えは正しいですが、msbuildは "xml version ..."行の2つのコピーが嫌いです。 私は1つを削除し、セットアップファイルを作るためにスクリプトでmsbuildを実行することができました。 –

    1

    2012年のx64 vcredistに似た回答をお探しの方には、私が共同で作ったものがあります。どのようにvcredist_x64.exeについて、ダウンロードリンクが http://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x64.exe

    <?xml version="1.0" encoding="utf-8" ?> 
    
    <Product 
        xmlns="http://schemas.microsoft.com/developer/2004/01/bootstrapper" 
        ProductCode="Microsoft.Visual.C++.11.0.x64" 
    > 
    
        <!-- Defines list of files to be copied on build --> 
        <PackageFiles> 
        <PackageFile Name="vcredist_x64.exe" HomeSite="VCRedistExe"/> 
        </PackageFiles> 
        <InstallChecks> 
        <MsiProductCheck Property="VCRedistInstalled" Product="{CF2BEA3C-26EA-32F8-AA9B-331F7E34BA97}"/> 
        </InstallChecks> 
    
        <!-- Defines how to invoke the setup for the Visual C++ 11.0 redist --> 
        <!-- TODO: Needs EstimatedTempSpace, LogFile, and an update of EstimatedDiskSpace --> 
        <Commands Reboot="Defer"> 
        <Command PackageFile="vcredist_x64.exe" 
         Arguments=' /q:a ' 
         > 
    
         <!-- These checks determine whether the package is to be installed --> 
         <InstallConditions> 
         <BypassIf Property="VCRedistInstalled" Compare="ValueGreaterThanOrEqualTo" Value="3"/> 
         <!-- Block install if user does not have admin privileges --> 
         <FailIf Property="AdminUser" Compare="ValueEqualTo" Value="false" String="AdminRequired"/> 
    
         <!-- Block install on any platform other than x64 --> 
         <FailIf Property="ProcessorArchitecture" Value="AMD64" Compare="ValueNotEqualTo" String="InvalidOS"/> 
    
         <!-- Block install on Vista or below --> 
         <FailIf Property="VersionNT" Compare="VersionLessThan" Value="6.00" String="InvalidPlatformWinNT"/> 
    
         </InstallConditions> 
    
         <ExitCodes> 
         <ExitCode Value="0" Result="Success"/> 
         <ExitCode Value="3010" Result="SuccessReboot"/> 
         <DefaultExitCode Result="Fail" FormatMessageFromSystem="true" String="GeneralFailure" /> 
         </ExitCodes> 
    
        </Command> 
        </Commands> 
    </Product> 
    
    関連する問題