Skip to content

Commit 78084b7

Browse files
Merge pull request #13 from sharefile-org/fix-framework-install
fix: Framework module was missing some dependencies
2 parents 8d3e73f + 09198ee commit 78084b7

5 files changed

Lines changed: 22 additions & 4 deletions

File tree

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Include>
3-
<?define Version = "1.0.1.0" ?>
3+
<?define Version = "1.0.2.0" ?>
44
<?define Description = "PowerShell Module for ShareFile API. Version $(var.Version)" ?>
55
<?define Vendor = "Progress ShareFile" ?>
6-
<?define SourceRootPath = "..\ShareFileModule\bin\Release\net48" ?>
6+
<?define SourceRootPath = "..\ShareFileModule\bin\Release\net48\publish" ?>
77
<?define SourceRootPathCore = "..\ShareFileModule\bin\Release\net8.0-windows\publish" ?>
88
<?define SourcePathAssets = "$(var.SourceRootPath)\Assets" ?>
99
</Include>

ShareFileModule-Installer/Product.wxs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,12 @@
108108
<Component>
109109
<File Id="NLog.config" Source="$(var.SourceRootPath)\NLog.config"/>
110110
</Component>
111+
<Component>
112+
<File Id="System.Buffers.dll" Source="$(var.SourceRootPath)\System.Buffers.dll"/>
113+
</Component>
114+
<Component>
115+
<File Id="System.Management.Automation.dll" Source="$(var.SourceRootPath)\System.Management.Automation.dll"/>
116+
</Component>
111117
<ComponentGroupRef Id="WebView2"/>
112118
</ComponentGroup>
113119

ShareFileModule/Properties/PublishProfiles/FolderProfile.pubxml renamed to ShareFileModule/Properties/PublishProfiles/DotNet.pubxml

File renamed without changes.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!-- https://go.microsoft.com/fwlink/?LinkID=208121. -->
3+
<Project>
4+
<PropertyGroup>
5+
<Configuration>Release</Configuration>
6+
<Platform>Any CPU</Platform>
7+
<PublishDir>bin\Release\net48\publish\</PublishDir>
8+
<PublishProtocol>FileSystem</PublishProtocol>
9+
<_TargetId>Folder</_TargetId>
10+
<TargetFramework>net48</TargetFramework>
11+
</PropertyGroup>
12+
</Project>

ShareFileModule/ShareFileModule.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<Product>ShareFileModule</Product>
88
<Copyright>Copyright © 2025 Progress</Copyright>
99
<Deterministic>false</Deterministic>
10-
<AssemblyVersion>1.0.1.0</AssemblyVersion>
11-
<FileVersion>1.0.1.0</FileVersion>
10+
<AssemblyVersion>1.0.2.0</AssemblyVersion>
11+
<FileVersion>1.0.2.0</FileVersion>
1212
<OutputPath>bin\$(Configuration)\</OutputPath>
1313
<UseWindowsForms>true</UseWindowsForms>
1414
<!-- For Dispatcher found in System.Windows.Threading -->

0 commit comments

Comments
 (0)