7

vs2012ClickOnce アプリケーションを最近インストールし、更新しました。C++ projectより正確に言うと、 (私の主要な c# プロジェクトに依存する)初めて開いたときは、更新しておらず、すべて正常に機能していました。VS 2012Visual C++ 2010 の前提条件がまだ表示されていました。その後、Platform Toolset を"Visual Studio 2012 (v110)"underに変更してプロジェクトを更新しましProperties->Configuration Properties->Generalた。

その間、他のものもインストール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 x64また、コントロール パネルのインストール済みプログラムのリストに、再頒布可能バージョンとランタイム バージョンの両方がインストールされていることに気付きましたx86(Visual Studio 2010 で以前にインストールされていたと思います)。一方、Visual C++ 2012 がありませんでした。ファイル。したがって、Visual C++ 2012 は Visual Studio 2012 と一緒に提供されなかったと主張していますね。Visual C++ 2012 Redistributable x64パッケージをダウンロードしてインストールしようとしたこともありましたが、インストールされたプログラムに表示されるようになりました (ランタイム バージョンではなく、再頒布可能パッケージのみ)。

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

4

2 に答える 2

1

2012 x64 vcredist に対する同様の回答を探している人のために、私が一緒にまとめたものを次に示します。ダウンロード リンクは 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>
于 2016-02-17T16:56:08.277 に答える