diff options
author | Spencer Jackson <spencer.jackson@mongodb.com> | 2019-04-01 16:35:06 -0400 |
---|---|---|
committer | Spencer Jackson <spencer.jackson@mongodb.com> | 2019-04-02 15:57:06 -0400 |
commit | 9f973418a578bf0b4643908f5af2af972a086c92 (patch) | |
tree | cae22a33f798cb4d7f240a509b553a5f95ea0f3c /src/mongo/installer/msi | |
parent | 7792dd86907d8731e9faefaaacc1eef296c44425 (diff) | |
download | mongo-9f973418a578bf0b4643908f5af2af972a086c92.tar.gz |
SERVER-40242 Add banner to MSI
Diffstat (limited to 'src/mongo/installer/msi')
-rw-r--r-- | src/mongo/installer/msi/wxs/LicensingFragment.wxs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mongo/installer/msi/wxs/LicensingFragment.wxs b/src/mongo/installer/msi/wxs/LicensingFragment.wxs index 2ff91b3fe57..f154749d5dc 100644 --- a/src/mongo/installer/msi/wxs/LicensingFragment.wxs +++ b/src/mongo/installer/msi/wxs/LicensingFragment.wxs @@ -28,6 +28,10 @@ </Component>
<?endif?>
+ <Component Id="c_ThirdpartyGotools" Guid="7A83B4DF-0D78-4594-8912-30310A3BAEEB">
+ <File Id="f_ThirdpartyGotools" Name="THIRD-PARTY-NOTICES.gotools" Source="$(var.ToolBinarySource)\distsrc\THIRD-PARTY-NOTICES.gotools"
+ DiskId ="1" KeyPath="yes" />
+ </Component>
<Component Id="c_Readme" Guid="12C17EA1-075C-4A1D-9554-F3B5A2A94874">
<File Id="f_Readme" Name="README" Source="$(var.LicenseSource)\README"
DiskId ="1" />
@@ -50,6 +54,7 @@ <?if $(var.Edition) = Enterprise ?>
<ComponentRef Id="c_ThirdpartyEnterprise"/>
<?endif?>
+ <ComponentRef Id="c_ThirdpartyGotools"/>
<ComponentRef Id="c_License"/>
<ComponentRef Id="c_InstallKey"/>
<ComponentRef Id="c_MPL2"/>
|