From fd7f8754b3c8807d39dcf8295a12ff32ec0264b4 Mon Sep 17 00:00:00 2001 From: "Painter, Christopher P" <chrpai@iswix.com> Date: Thu, 20 Dec 2018 13:57:18 -0600 Subject: VS2019 Support --- src/ca/vsca.cpp | 81 ++++++++++++++++++++++++++++ src/wixlib/VS2019.wxs | 143 ++++++++++++++++++++++++++++++++++++++++++++++++++ src/wixlib/vs.wixproj | 1 + 3 files changed, 225 insertions(+) create mode 100644 src/wixlib/VS2019.wxs (limited to 'src') diff --git a/src/ca/vsca.cpp b/src/ca/vsca.cpp index 30174672..ac045db8 100644 --- a/src/ca/vsca.cpp +++ b/src/ca/vsca.cpp @@ -47,6 +47,12 @@ static HRESULT ProcessVS2017( __in BOOL fComplete ); +static HRESULT ProcessVS2019( + __in_opt ISetupInstance* pInstance, + __in DWORD64 qwVersion, + __in BOOL fComplete +); + static HRESULT SetPropertyForComponent( __in DWORD cComponents, __in VS_COMPONENT_PROPERTY* rgComponents, @@ -56,6 +62,7 @@ static HRESULT SetPropertyForComponent( static VS_INSTANCE vrgInstances[] = { { FILEMAKEVERSION(15, 0, 0, 0), FILEMAKEVERSION(15, 0xffff, 0xffff, 0xffff), ProcessVS2017 }, + { FILEMAKEVERSION(16, 0, 0, 0), FILEMAKEVERSION(16, 0xffff, 0xffff, 0xffff), ProcessVS2019 }, }; /****************************************************************** @@ -407,6 +414,80 @@ LExit: return hr; } +static HRESULT ProcessVS2019( + __in_opt ISetupInstance* pInstance, + __in DWORD64 qwVersion, + __in BOOL fComplete +) +{ + static ISetupInstance* pLatest = NULL; + static DWORD64 qwLatest = 0; + + static LPCWSTR rgwzProducts[] = + { + L"Microsoft.VisualStudio.Product.Community", + L"Microsoft.VisualStudio.Product.Professional", + L"Microsoft.VisualStudio.Product.Enterprise", + }; + + // TODO: Consider making table-driven with these defaults per-version for easy customization. + static VS_COMPONENT_PROPERTY rgComponents[] = + { + { L"Microsoft.VisualStudio.Component.FSharp", L"VS2019_IDE_FSHARP_PROJECTSYSTEM_INSTALLED" }, + { L"Microsoft.VisualStudio.Component.Roslyn.LanguageServices", L"VS2019_IDE_VB_PROJECTSYSTEM_INSTALLED" }, + { L"Microsoft.VisualStudio.Component.Roslyn.LanguageServices", L"VS2019_IDE_VCSHARP_PROJECTSYSTEM_INSTALLED" }, + { L"Microsoft.VisualStudio.Component.TestTools.Core", L"VS2019_IDE_VSTS_TESTSYSTEM_INSTALLED" }, + { L"Microsoft.VisualStudio.Component.VC.CoreIde", L"VS2019_IDE_VC_PROJECTSYSTEM_INSTALLED" }, + { L"Microsoft.VisualStudio.Component.Web", L"VS2019_IDE_VWD_PROJECTSYSTEM_INSTALLED" }, + { L"Microsoft.VisualStudio.PackageGroup.DslRuntime", L"VS2019_IDE_MODELING_PROJECTSYSTEM_INSTALLED" }, + }; + + HRESULT hr = S_OK; + + if (fComplete) + { + if (pLatest) + { + hr = ProcessInstance(pLatest, L"VS2019_ROOT_FOLDER", countof(rgComponents), rgComponents); + ExitOnFailure(hr, "Failed to process VS2019 instance."); + } + } + else if (pInstance) + { + hr = InstanceInProducts(pInstance, countof(rgwzProducts), rgwzProducts); + ExitOnFailure(hr, "Failed to compare product IDs."); + + if (S_FALSE == hr) + { + ExitFunction(); + } + + hr = InstanceIsGreater(pLatest, qwLatest, pInstance, qwVersion); + ExitOnFailure(hr, "Failed to compare instances."); + + if (S_FALSE == hr) + { + ExitFunction(); + } + + ReleaseNullObject(pLatest); + + pLatest = pInstance; + qwLatest = qwVersion; + + // Caller will do a final Release() otherwise. + pLatest->AddRef(); + } + +LExit: + if (fComplete) + { + ReleaseObject(pLatest); + } + + return hr; +} + static HRESULT SetPropertyForComponent( __in DWORD cComponents, __in VS_COMPONENT_PROPERTY* rgComponents, diff --git a/src/wixlib/VS2019.wxs b/src/wixlib/VS2019.wxs new file mode 100644 index 00000000..57ae6168 --- /dev/null +++ b/src/wixlib/VS2019.wxs @@ -0,0 +1,143 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> + + +<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> + <Fragment> + <Property Id="VS2019_ROOT_FOLDER" Secure="yes" /> + + <!-- Currently supported only on x86 --> + <CustomActionRef Id="VSFindInstances" /> + </Fragment> + + <Fragment> + <PropertyRef Id="VS2019_ROOT_FOLDER" /> + <Property Id="VS2019_IDE_DIR" Secure="yes"> + <DirectorySearch Id="VS2019DirectorySearch" Path="[VS2019_ROOT_FOLDER]"> + <DirectorySearch Id="VS2019EnvironmentDirectorySearch" Path="Common7\IDE" Depth="1" /> + </DirectorySearch> + </Property> + </Fragment> + + <Fragment> + <Property Id="VS2019_EXTENSIONS_DIR" Secure="yes"> + <DirectorySearchRef Id="VS2019EnvironmentDirectorySearch" Parent="VS2019DirectorySearch" Path="Common7\IDE"> + <DirectorySearch Id="VS2019ExtensionsDirectorySearch" Path="Extensions" Depth="1" /> + </DirectorySearchRef> + </Property> + </Fragment> + + <Fragment> + <Property Id="VS2019_PROJECTTEMPLATES_DIR" Secure="yes"> + <DirectorySearchRef Id="VS2019EnvironmentDirectorySearch" Parent="VS2019DirectorySearch" Path="Common7\IDE"> + <DirectorySearch Id="VS2019ProjectTemplatesDirectorySearch" Path="ProjectTemplates" Depth="1" /> + </DirectorySearchRef> + </Property> + </Fragment> + + <Fragment> + <PropertyRef Id="VS2019_ROOT_FOLDER" /> + <Property Id="VS2019_SCHEMAS_DIR" Secure="yes"> + <DirectorySearch Id="VS2019XmlDirectorySearch" Path="[VS2019_ROOT_FOLDER]\Xml" Depth="1"> + <DirectorySearch Id="VS2019XmlSchemasDirectorySearch" Path="Schemas" Depth="1" /> + </DirectorySearch> + </Property> + </Fragment> + + <Fragment> + <Property Id="VS2019_ITEMTEMPLATES_DIR" Secure="yes"> + <DirectorySearchRef Id="VS2019EnvironmentDirectorySearch" Parent="VS2019DirectorySearch" Path="Common7\IDE"> + <DirectorySearch Id="VS2019ItemTemplatesDirectorySearch" Path="ItemTemplates" Depth="1" /> + </DirectorySearchRef> + </Property> + </Fragment> + + <Fragment> + <PropertyRef Id="VS2019_ROOT_FOLDER" /> + <Property Id="VS2019_BOOTSTRAPPER_PACKAGE_FOLDER" Secure="yes"> + <DirectorySearch Id="VS2019SDKDirectorySearch" Path="[VS2019_ROOT_FOLDER]\SDK" Depth="1"> + <DirectorySearch Id="SearchForVS2019BootstrapperPackageDirectory" Path="Bootstrapper" Depth="1" /> + </DirectorySearch> + </Property> + </Fragment> + + <Fragment> + <Property Id="VS2019DEVENV" Secure="yes"> + <DirectorySearchRef Id="VS2019EnvironmentDirectorySearch" Parent="VS2019DirectorySearch" Path="Common7\IDE"> + <FileSearch Id="VS2019DevEnvSearch" Name="devenv.exe" /> + </DirectorySearchRef> + </Property> + </Fragment> + + <Fragment> + <CustomAction Id="VS2019Setup" Property="VS2019DEVENV" ExeCommand="/setup" Execute="deferred" Return="ignore" Impersonate="no" /> + <PropertyRef Id="VS2019DEVENV" /> + + <InstallExecuteSequence> + <Custom Action="VS2019Setup" Before="InstallFinalize" Overridable="yes">VS2019DEVENV</Custom> + </InstallExecuteSequence> + </Fragment> + + <Fragment> + <CustomAction Id="VS2019InstallVSTemplates" Property="VS2019DEVENV" ExeCommand="/InstallVSTemplates" Execute="deferred" Return="ignore" Impersonate="no" /> + <PropertyRef Id="VS2019DEVENV" /> + + <InstallExecuteSequence> + <Custom Action="VS2019InstallVSTemplates" Before="InstallFinalize" Overridable="yes">VS2019DEVENV</Custom> + </InstallExecuteSequence> + </Fragment> + + <!-- Indicates whether the Visual C# project system is installed as a part of --> + <!-- Visual Studio 2019 standard or higher. If this property is set, that --> + <!-- means Visual Studio 2019 standard or higher is installed and the Visual --> + <!-- C# language tools were installed as a part of VS 2019 setup. --> + <Fragment> + <Property Id="VS2019_IDE_VCSHARP_PROJECTSYSTEM_INSTALLED" Secure="yes" /> + <CustomActionRef Id="VSFindInstances" /> + </Fragment> + + <!-- Indicates whether the Visual Basic project system is installed as a part of --> + <!-- Visual Studio 2019 standard or higher. If this property is set, that --> + <!-- means Visual Studio 2019 standard or higher is installed and the Visual --> + <!-- Basic language tools were installed as a part of VS 2019 setup. --> + <Fragment> + <Property Id="VS2019_IDE_VB_PROJECTSYSTEM_INSTALLED" Secure="yes" /> + <CustomActionRef Id="VSFindInstances" /> + </Fragment> + + <!-- Indicates whether the Visual Web Developer project system is installed as a part of --> + <!-- Visual Studio 2019 standard or higher. If this property is set, that --> + <!-- means Visual Studio 2019 standard or higher is installed and the Visual --> + <!-- Web Developer language tools were installed as a part of VS 2019 setup. --> + <Fragment> + <Property Id="VS2019_IDE_VWD_PROJECTSYSTEM_INSTALLED" Secure="yes" /> + <CustomActionRef Id="VSFindInstances" /> + </Fragment> + + <!-- Indicates whether the Visual C++ project system is installed as a part of --> + <!-- Visual Studio 2019 standard or higher. If this property is set, that --> + <!-- means Visual Studio 2019 standard or higher is installed and the Visual --> + <!-- C++ language tools were installed as a part of VS 2019 setup. --> + <Fragment> + <Property Id="VS2019_IDE_VC_PROJECTSYSTEM_INSTALLED" Secure="yes" /> + <CustomActionRef Id="VSFindInstances" /> + </Fragment> + + <!-- Indicates whether the Visual Studio 2019 Team Test project system is installed --> + <Fragment> + <Property Id="VS2019_IDE_VSTS_TESTSYSTEM_INSTALLED" Secure="yes" /> + <CustomActionRef Id="VSFindInstances" /> + </Fragment> + + <!-- Indicates whether the Visual Studio Modeling project system is installed --> + <Fragment> + <Property Id="VS2019_IDE_MODELING_PROJECTSYSTEM_INSTALLED" Secure="yes" /> + <CustomActionRef Id="VSFindInstances" /> + </Fragment> + + <!-- Indicates whether the Visual Studio F# project system is installed --> + <Fragment> + <Property Id="VS2019_IDE_FSHARP_PROJECTSYSTEM_INSTALLED" Secure="yes" /> + <CustomActionRef Id="VSFindInstances" /> + </Fragment> +</Wix> diff --git a/src/wixlib/vs.wixproj b/src/wixlib/vs.wixproj index f283e6ef..e18a52cd 100644 --- a/src/wixlib/vs.wixproj +++ b/src/wixlib/vs.wixproj @@ -23,6 +23,7 @@ <Compile Include="VS14.wxs" /> <Compile Include="VS2015.wxs" /> <Compile Include="VS2017.wxs" /> + <Compile Include="VS2019.wxs" /> <Compile Include="VSExtension_x86.wxs" /> <Compile Include="VsixPackage.wxs" /> <Compile Include="vs2005\vs2005_VSIPCC_Collection_Files_RTL.wxs" /> -- cgit v1.2.3-55-g6feb