Skip to content

Commit

Permalink
add storage providers to msi installer
Browse files Browse the repository at this point in the history
  • Loading branch information
skadefro committed Mar 18, 2024
1 parent 3b52bcc commit aa85c5e
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 1 deletion.
2 changes: 2 additions & 0 deletions OpenRPA.SetupProject/OpenRPA.SetupProject.wixproj
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@
<Compile Include="compMSSpeech.wxs" />
<Compile Include="compPS.wxs" />
<Compile Include="compTerminalEmulator.wxs" />
<Compile Include="compStorageLiteDb.wxs" />
<Compile Include="compStorageFS.wxs" />
<Compile Include="FeatureTreeDlg.wxs" />
<Compile Include="mainfiles.wxs" />
<Compile Include="Product.wxs" />
Expand Down
6 changes: 6 additions & 0 deletions OpenRPA.SetupProject/Product.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,12 @@
<Feature Id="RDServicePluginFeature" Title="High Density robots using Remote Desktop" Level="1" Absent='allow' AllowAdvertise='yes' ConfigurableDirectory='INSTALLDIR' TypicalDefault="advertise" >
<ComponentGroupRef Id="RDServicePluginComponents" />
</Feature>
<Feature Id="StorageLiteDbFeature" Title="Store/cache data in LiteDB on local filesystem" Level="1" Absent='allow' AllowAdvertise='yes' ConfigurableDirectory='INSTALLDIR' TypicalDefault="install" >
<ComponentGroupRef Id="StorageLiteDbComponents" />
</Feature>
<Feature Id="StorageFSFeature" Title="Store/cache data as JSon files on local filesystem" Level="1" Absent='allow' AllowAdvertise='yes' ConfigurableDirectory='INSTALLDIR' TypicalDefault="install" >
<ComponentGroupRef Id="StorageFSComponents" />
</Feature>
<!--<Feature Id="PDPluginFeature" Title="Process Discovery Harvesting Run Plugin" Level="1" Absent='allow' AllowAdvertise='yes' ConfigurableDirectory='INSTALLDIR' TypicalDefault="advertise" >
<ComponentGroupRef Id="PDPluginComponents" />
</Feature>-->
Expand Down
13 changes: 13 additions & 0 deletions OpenRPA.SetupProject/compStorageFS.wxs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Fragment>

<ComponentGroup Id="StorageFSComponents">
<Component Id='StorageFSComponent' Guid='{079E3990-1D1F-4381-B023-B3DA6E64042B}' Win64='yes' Directory="INSTALLDIR">
<File Id="OpenRPA.Storage.Filesystem.dll" Source="!(wix.ScriptSource)\OpenRPA.Storage.Filesystem.dll" />
<File Id="OpenRPA.Storage.Filesystem.pdb" Source="!(wix.ScriptSource)\OpenRPA.Storage.Filesystem.pdb" />
</Component>
</ComponentGroup>

</Fragment>
</Wix>
13 changes: 13 additions & 0 deletions OpenRPA.SetupProject/compStorageLiteDb.wxs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Fragment>

<ComponentGroup Id="StorageLiteDbComponents">
<Component Id='StorageLiteDbComponent' Guid='{D0AC728D-DFBC-4734-AA22-230ECB94449F}' Win64='yes' Directory="INSTALLDIR">
<File Id="OpenRPA.Storage.LiteDB.dll" Source="!(wix.ScriptSource)\OpenRPA.Storage.LiteDB.dll" />
<File Id="OpenRPA.Storage.LiteDB.pdb" Source="!(wix.ScriptSource)\OpenRPA.Storage.LiteDB.pdb" />
</Component>
</ComponentGroup>

</Fragment>
</Wix>
2 changes: 1 addition & 1 deletion OpenRPA/OpenRPA.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<Description>Base UI of OpenRPA, used as part of OpenRPA robot</Description>
<PackageLicenseExpression>MPL-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/open-rpa/openrpa</PackageProjectUrl>
<Version>1.4.56</Version>
<Version>1.4.57.1</Version>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageIcon>openrpa.png</PackageIcon>
<Configurations>Debug;Release;ReleaseNuget;PrepInstaller</Configurations>
Expand Down

0 comments on commit aa85c5e

Please sign in to comment.