2

ビジュアルスタジオ2017を実行しており、ClickOnceプロジェクトの前提条件としてVC++ 2013を使用する必要があります。しかし、どこでもパッケージを見つけることができず、Visual Studio 2013をインストールすることができません。VC++ 2013ランタイムClickOnceブートストラップパッケージ

VC++ 2013ブートストラップパッケージのproduct.xmlファイルとpackage.xmlファイルはどのように見えるのですか? (2013年もまだインストールされている可能性があります)。

(質問が閉じられる前に、これはそれを探している誰のために非常に有用資源でしょう...それはどこにもオンラインに存在していないとして)

答えて

1

私は最終的にファイルが見つかった - 参照のためにここに投稿:

のVisual C++ 2013ランタイムライブラリ(x86の)

のProduct.xml

<!-- 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 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> 

のpackage.xml

<!-- Defines a localizable string table for error messages--> 
<Strings> 
    <String Name="DisplayName">Visual C++ 2013 Runtime Libraries (x86)</String> 
    <String Name="Culture">en</String> 
    <String Name="AdminRequired">You do not have the permissions required to install Visual C++ 2013 Runtime Libraries (x86). Please contact your administrator.</String> 
    <String Name="InvalidPlatformWin9x">Installation of Visual C++ 2013 Runtime Libraries (x86) is not supported on Windows 95. Contact your application vendor.</String> 
    <String Name="InvalidPlatformWinNT">Installation of Visual C++ 2013 Runtime Libraries (x86) is not supported on Windows NT 4.0. Contact your application vendor.</String> 
    <String Name="GeneralFailure">A failure occurred attempting to install Visual C++ 2013 Runtime Libraries (x86).</String> 
    <String Name="VCRedistExe">http://go.microsoft.com/fwlink/?LinkID=320712&amp;clcid=0x409</String> 
</Strings> 

+0

あなたは偶然、完全なファイルを投稿してもらえますか? –

関連する問題