Skip to content

Commit

Permalink
Updated to latest beta versions of SIL libraries. Replaced DotNetZip …
Browse files Browse the repository at this point in the history
…with System.IO.Compression.FileSystem
  • Loading branch information
tombogle committed Dec 9, 2024
1 parent a395976 commit 9c9b744
Show file tree
Hide file tree
Showing 9 changed files with 100 additions and 80 deletions.
4 changes: 2 additions & 2 deletions build/SayMore.proj
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<RootDir Condition="'$(teamcity_version)' == ''">$(MSBuildProjectDirectory)\..</RootDir>
<RootDir Condition="'$(teamcity_version)' != ''">$(teamcity_build_checkoutDir)</RootDir>
<BUILD_NUMBER Condition="'$(BUILD_NUMBER)'==''">3.5.0</BUILD_NUMBER>
<BuildTasksDll Condition="Exists('$(RootDir)/packages/SIL.BuildTasks.2.6.0-beta0032/tools/SIL.BuildTasks.dll')">$(RootDir)/packages/SIL.BuildTasks.2.6.0-beta0032/tools/SIL.BuildTasks.dll</BuildTasksDll>
<BuildTasksDll Condition="!Exists('$(RootDir)/packages/SIL.BuildTasks.2.6.0-beta0032/tools/SIL.BuildTasks.dll')">$(RootDir)/packages/SIL.BuildTasks/tools/SIL.BuildTasks.dll</BuildTasksDll>
<BuildTasksDll Condition="Exists('$(RootDir)/packages/SIL.BuildTasks.3.0.0/tools/SIL.BuildTasks.dll')">$(RootDir)/packages/SIL.BuildTasks.3.0.0/tools/SIL.BuildTasks.dll</BuildTasksDll>
<BuildTasksDll Condition="!Exists('$(RootDir)/packages/SIL.BuildTasks.3.0.0/tools/SIL.BuildTasks.dll')">$(RootDir)/packages/SIL.BuildTasks/tools/SIL.BuildTasks.dll</BuildTasksDll>
<SILReleaseTasksProps>$(RootDir)/packages/SIL.ReleaseTasks/build/SIL.ReleaseTasks.props</SILReleaseTasksProps>
<Configuration Condition="'$(Configuration)' == ''">Release</Configuration>
<RestartBuild Condition="!Exists('$(BuildTasksDll)') Or !Exists('$(SILReleaseTasksProps)')">true</RestartBuild>
Expand Down
6 changes: 3 additions & 3 deletions src/Installer/Installer.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@ are trying to support, you're better off using non-advertised shortcuts. "-->
<Component Id="DialogAdapters.dll" Guid="{F09B94F6-1CEB-42D1-B9EF-87D9837085F6}">
<File Id="DialogAdapters.dll" Name="DialogAdapters.dll" KeyPath="yes" Source="..\..\output\release\DialogAdapters.dll" />
</Component>
<Component Id="DotNetZip.dll" Guid="{BBF5268C-41D6-4E32-AD05-1C847E0C1915}">
<File Id="DotNetZip.dll" Name="DotNetZip.dll" KeyPath="yes" Source="..\..\output\release\DotNetZip.dll" />
<Component Id="System.IO.Compression.ZipFile.dll" Guid="{59C3F5C2-F8BA-4875-808C-09FED5D5F01E}">
<File Id="System.IO.Compression.ZipFile.dll" Name="System.IO.Compression.ZipFile.dll" KeyPath="yes" Source="..\..\output\release\System.IO.Compression.ZipFile.dll" />
</Component>
<Component Id="Enchant.Net.dll" Guid="{505D07A1-5D29-405A-9B1F-2066F7CC0AB5}">
<File Id="Enchant.Net.dll" Name="Enchant.Net.dll" KeyPath="yes" Source="..\..\output\release\Enchant.Net.dll" />
Expand Down Expand Up @@ -636,7 +636,7 @@ are trying to support, you're better off using non-advertised shortcuts. "-->
<ComponentRef Id="Coroutine.NET.dll"/>
<ComponentRef Id="DesktopAnalytics.dll"/>
<ComponentRef Id="DialogAdapters.dll"/>
<ComponentRef Id="DotNetZip.dll"/>
<ComponentRef Id="System.IO.Compression.ZipFile.dll"/>
<ComponentRef Id="Enchant.Net.dll"/>
<ComponentRef Id="ibusdotnet.dll"/>
<ComponentRef Id="icu.net.dll"/>
Expand Down
10 changes: 2 additions & 8 deletions src/SayMore/Model/Project.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using System.Diagnostics;
using System.IO;
using System.Drawing;
using System.IO.Compression;
using System.Linq;
using System.Text;
using System.Threading;
Expand All @@ -11,7 +12,6 @@
using System.Xml.Linq;
using System.Xml.Serialization;
using DesktopAnalytics;
using Ionic.Zip;
using L10NSharp;
using SIL.Extensions;
using SIL.Reporting;
Expand Down Expand Up @@ -787,14 +787,8 @@ public void SetFilesToArchive(ArchivingDlgViewModel model,
/// ------------------------------------------------------------------------------------
public IEnumerable<string> GetSessionFilesToArchive(Type typeOfArchive, CancellationToken cancellationToken)
{
using (ZipFile zip = new ZipFile())
{
// RAMP packages must not be compressed or RAMP can't read them.
zip.CompressionLevel = Ionic.Zlib.CompressionLevel.None;
zip.UseZip64WhenSaving = Zip64Option.AsNecessary;
zip.AddDirectory(FolderPath);
zip.Save(Combine(FolderPath, "Sessions.zip"));
}
ZipFile.CreateFromDirectory(FolderPath, Combine(FolderPath, "Sessions.zip"), CompressionLevel.NoCompression, true);
var filesInDir = Directory.GetFiles(FolderPath);
return filesInDir.Where(f => ArchivingHelper.IncludeFileInArchive(f, typeOfArchive, Settings.Default.SessionFileExtension, CancellationToken.None));

Expand Down
60 changes: 34 additions & 26 deletions src/SayMore/SayMore.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\packages\SIL.Windows.Forms.Keyboarding.15.0.0-beta0097\build\SIL.Windows.Forms.Keyboarding.props" Condition="Exists('..\..\packages\SIL.Windows.Forms.Keyboarding.15.0.0-beta0097\build\SIL.Windows.Forms.Keyboarding.props')" />
<Import Project="..\..\packages\SIL.ReleaseTasks.2.6.0-beta0032\build\SIL.ReleaseTasks.props" Condition="Exists('..\..\packages\SIL.ReleaseTasks.2.6.0-beta0032\build\SIL.ReleaseTasks.props')" />
<Import Project="..\..\packages\SIL.BuildTasks.2.6.0-beta0032\build\SIL.BuildTasks.props" Condition="Exists('..\..\packages\SIL.BuildTasks.2.6.0-beta0032\build\SIL.BuildTasks.props')" />
<Import Project="..\..\packages\SIL.Windows.Forms.Keyboarding.15.0.0-beta0133\build\SIL.Windows.Forms.Keyboarding.props" Condition="Exists('..\..\packages\SIL.Windows.Forms.Keyboarding.15.0.0-beta0133\build\SIL.Windows.Forms.Keyboarding.props')" />
<Import Project="..\..\packages\SIL.ReleaseTasks.3.0.0\build\SIL.ReleaseTasks.props" Condition="Exists('..\..\packages\SIL.ReleaseTasks.3.0.0\build\SIL.ReleaseTasks.props')" />
<Import Project="..\..\packages\SIL.BuildTasks.3.0.0\build\SIL.BuildTasks.props" Condition="Exists('..\..\packages\SIL.BuildTasks.3.0.0\build\SIL.BuildTasks.props')" />
<Import Project="..\..\packages\icu.net.3.0.0-beta.296\build\icu.net.props" Condition="Exists('..\..\packages\icu.net.3.0.0-beta.296\build\icu.net.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
Expand Down Expand Up @@ -89,9 +89,6 @@
<Reference Include="DialogAdapters, Version=0.1.11.0, Culture=neutral, PublicKeyToken=7dc842182b0626dc, processorArchitecture=MSIL">
<HintPath>..\..\packages\DialogAdapters.Gtk2.0.1.11\lib\net461\DialogAdapters.dll</HintPath>
</Reference>
<Reference Include="DotNetZip, Version=1.16.0.0, Culture=neutral, PublicKeyToken=6583c7c814667745, processorArchitecture=MSIL">
<HintPath>..\..\packages\DotNetZip.1.16.0\lib\net40\DotNetZip.dll</HintPath>
</Reference>
<Reference Include="Enchant.Net, Version=1.4.0.0, Culture=neutral, PublicKeyToken=ae135aeb3d479ab9, processorArchitecture=MSIL">
<HintPath>..\..\packages\Enchant.Net.1.4.2\lib\net461\Enchant.Net.dll</HintPath>
</Reference>
Expand Down Expand Up @@ -169,31 +166,31 @@
<HintPath>..\..\packages\Serialization.NET.1.4.1\lib\netstandard2.0\Serialization.NET.dll</HintPath>
</Reference>
<Reference Include="SIL.Archiving, Version=15.0.0.0, Culture=neutral, PublicKeyToken=cab3c8c5232dfcf2, processorArchitecture=MSIL">
<HintPath>..\..\packages\SIL.Archiving.15.0.0-beta0097\lib\net462\SIL.Archiving.dll</HintPath>
<HintPath>..\..\packages\SIL.Archiving.15.0.0-beta0133\lib\net462\SIL.Archiving.dll</HintPath>
</Reference>
<Reference Include="SIL.Core, Version=15.0.0.0, Culture=neutral, PublicKeyToken=cab3c8c5232dfcf2, processorArchitecture=MSIL">
<HintPath>..\..\packages\SIL.Core.15.0.0-beta0097\lib\net462\SIL.Core.dll</HintPath>
<HintPath>..\..\packages\SIL.Core.15.0.0-beta0133\lib\net462\SIL.Core.dll</HintPath>
</Reference>
<Reference Include="SIL.Core.Desktop, Version=15.0.0.0, Culture=neutral, PublicKeyToken=cab3c8c5232dfcf2, processorArchitecture=MSIL">
<HintPath>..\..\packages\SIL.Core.Desktop.15.0.0-beta0097\lib\net462\SIL.Core.Desktop.dll</HintPath>
<HintPath>..\..\packages\SIL.Core.Desktop.15.0.0-beta0133\lib\net462\SIL.Core.Desktop.dll</HintPath>
</Reference>
<Reference Include="SIL.Media, Version=15.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\packages\SIL.Media.15.0.0-beta0097\lib\net462\SIL.Media.dll</HintPath>
<HintPath>..\..\packages\SIL.Media.15.0.0-beta0133\lib\net462\SIL.Media.dll</HintPath>
</Reference>
<Reference Include="SIL.Windows.Forms, Version=15.0.0.0, Culture=neutral, PublicKeyToken=cab3c8c5232dfcf2, processorArchitecture=MSIL">
<HintPath>..\..\packages\SIL.Windows.Forms.15.0.0-beta0097\lib\net462\SIL.Windows.Forms.dll</HintPath>
<HintPath>..\..\packages\SIL.Windows.Forms.15.0.0-beta0133\lib\net462\SIL.Windows.Forms.dll</HintPath>
</Reference>
<Reference Include="SIL.Windows.Forms.Archiving, Version=15.0.0.0, Culture=neutral, PublicKeyToken=cab3c8c5232dfcf2, processorArchitecture=MSIL">
<HintPath>..\..\packages\SIL.Windows.Forms.Archiving.15.0.0-beta0097\lib\net462\SIL.Windows.Forms.Archiving.dll</HintPath>
<HintPath>..\..\packages\SIL.Windows.Forms.Archiving.15.0.0-beta0133\lib\net462\SIL.Windows.Forms.Archiving.dll</HintPath>
</Reference>
<Reference Include="SIL.Windows.Forms.Keyboarding, Version=15.0.0.0, Culture=neutral, PublicKeyToken=cab3c8c5232dfcf2, processorArchitecture=MSIL">
<HintPath>..\..\packages\SIL.Windows.Forms.Keyboarding.15.0.0-beta0097\lib\net462\SIL.Windows.Forms.Keyboarding.dll</HintPath>
<HintPath>..\..\packages\SIL.Windows.Forms.Keyboarding.15.0.0-beta0133\lib\net462\SIL.Windows.Forms.Keyboarding.dll</HintPath>
</Reference>
<Reference Include="SIL.Windows.Forms.WritingSystems, Version=15.0.0.0, Culture=neutral, PublicKeyToken=cab3c8c5232dfcf2, processorArchitecture=MSIL">
<HintPath>..\..\packages\SIL.Windows.Forms.WritingSystems.15.0.0-beta0097\lib\net462\SIL.Windows.Forms.WritingSystems.dll</HintPath>
<HintPath>..\..\packages\SIL.Windows.Forms.WritingSystems.15.0.0-beta0133\lib\net462\SIL.Windows.Forms.WritingSystems.dll</HintPath>
</Reference>
<Reference Include="SIL.WritingSystems, Version=15.0.0.0, Culture=neutral, PublicKeyToken=cab3c8c5232dfcf2, processorArchitecture=MSIL">
<HintPath>..\..\packages\SIL.WritingSystems.15.0.0-beta0097\lib\net462\SIL.WritingSystems.dll</HintPath>
<HintPath>..\..\packages\SIL.WritingSystems.15.0.0-beta0133\lib\net462\SIL.WritingSystems.dll</HintPath>
</Reference>
<Reference Include="Sovran.NET, Version=1.4.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\packages\Sovran.NET.1.4.0\lib\netstandard2.0\Sovran.NET.dll</HintPath>
Expand All @@ -217,6 +214,17 @@
<Reference Include="System.Drawing.Common, Version=6.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>..\..\packages\System.Drawing.Common.6.0.0\lib\net461\System.Drawing.Common.dll</HintPath>
</Reference>
<Reference Include="System.IO.Compression, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
<HintPath>..\..\packages\System.IO.Compression.4.3.0\lib\net46\System.IO.Compression.dll</HintPath>
<Private>True</Private>
<Private>True</Private>
</Reference>
<Reference Include="System.IO.Compression.FileSystem" />
<Reference Include="System.IO.Compression.ZipFile, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
<HintPath>..\..\packages\System.IO.Compression.ZipFile.4.3.0\lib\net46\System.IO.Compression.ZipFile.dll</HintPath>
<Private>True</Private>
<Private>True</Private>
</Reference>
<Reference Include="System.IO.FileSystem.AccessControl, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\..\packages\System.IO.FileSystem.AccessControl.5.0.0\lib\net461\System.IO.FileSystem.AccessControl.dll</HintPath>
</Reference>
Expand Down Expand Up @@ -1303,21 +1311,21 @@
<Error Condition="!Exists('..\..\packages\NDesk.DBus.0.15.0\build\NDesk.DBus.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\NDesk.DBus.0.15.0\build\NDesk.DBus.targets'))" />
<Error Condition="!Exists('..\..\packages\icu.net.3.0.0-beta.296\build\icu.net.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\icu.net.3.0.0-beta.296\build\icu.net.props'))" />
<Error Condition="!Exists('..\..\packages\icu.net.3.0.0-beta.296\build\icu.net.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\icu.net.3.0.0-beta.296\build\icu.net.targets'))" />
<Error Condition="!Exists('..\..\packages\SIL.BuildTasks.2.6.0-beta0032\build\SIL.BuildTasks.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\SIL.BuildTasks.2.6.0-beta0032\build\SIL.BuildTasks.props'))" />
<Error Condition="!Exists('..\..\packages\SIL.ReleaseTasks.2.6.0-beta0032\build\SIL.ReleaseTasks.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\SIL.ReleaseTasks.2.6.0-beta0032\build\SIL.ReleaseTasks.props'))" />
<Error Condition="!Exists('..\..\packages\SIL.ReleaseTasks.2.6.0-beta0032\build\SIL.ReleaseTasks.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\SIL.ReleaseTasks.2.6.0-beta0032\build\SIL.ReleaseTasks.targets'))" />
<Error Condition="!Exists('..\..\packages\SIL.Media.15.0.0-beta0097\build\SIL.Media.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\SIL.Media.15.0.0-beta0097\build\SIL.Media.targets'))" />
<Error Condition="!Exists('..\..\packages\SIL.Windows.Forms.Keyboarding.15.0.0-beta0097\build\SIL.Windows.Forms.Keyboarding.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\SIL.Windows.Forms.Keyboarding.15.0.0-beta0097\build\SIL.Windows.Forms.Keyboarding.props'))" />
<Error Condition="!Exists('..\..\packages\SIL.Windows.Forms.Keyboarding.15.0.0-beta0097\build\SIL.Windows.Forms.Keyboarding.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\SIL.Windows.Forms.Keyboarding.15.0.0-beta0097\build\SIL.Windows.Forms.Keyboarding.targets'))" />
<Error Condition="!Exists('..\..\packages\SIL.Windows.Forms.15.0.0-beta0097\build\SIL.Windows.Forms.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\SIL.Windows.Forms.15.0.0-beta0097\build\SIL.Windows.Forms.targets'))" />
<Error Condition="!Exists('..\..\packages\SIL.BuildTasks.3.0.0\build\SIL.BuildTasks.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\SIL.BuildTasks.3.0.0\build\SIL.BuildTasks.props'))" />
<Error Condition="!Exists('..\..\packages\SIL.ReleaseTasks.3.0.0\build\SIL.ReleaseTasks.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\SIL.ReleaseTasks.3.0.0\build\SIL.ReleaseTasks.props'))" />
<Error Condition="!Exists('..\..\packages\SIL.ReleaseTasks.3.0.0\build\SIL.ReleaseTasks.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\SIL.ReleaseTasks.3.0.0\build\SIL.ReleaseTasks.targets'))" />
<Error Condition="!Exists('..\..\packages\SIL.Media.15.0.0-beta0133\build\SIL.Media.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\SIL.Media.15.0.0-beta0133\build\SIL.Media.targets'))" />
<Error Condition="!Exists('..\..\packages\SIL.Windows.Forms.Keyboarding.15.0.0-beta0133\build\SIL.Windows.Forms.Keyboarding.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\SIL.Windows.Forms.Keyboarding.15.0.0-beta0133\build\SIL.Windows.Forms.Keyboarding.props'))" />
<Error Condition="!Exists('..\..\packages\SIL.Windows.Forms.Keyboarding.15.0.0-beta0133\build\SIL.Windows.Forms.Keyboarding.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\SIL.Windows.Forms.Keyboarding.15.0.0-beta0133\build\SIL.Windows.Forms.Keyboarding.targets'))" />
<Error Condition="!Exists('..\..\packages\SIL.Windows.Forms.15.0.0-beta0133\build\SIL.Windows.Forms.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\SIL.Windows.Forms.15.0.0-beta0133\build\SIL.Windows.Forms.targets'))" />
</Target>
<Import Project="..\..\packages\Icu4c.Win.Min.59.1.7\build\Icu4c.Win.Min.targets" Condition="Exists('..\..\packages\Icu4c.Win.Min.59.1.7\build\Icu4c.Win.Min.targets')" />
<Import Project="..\..\packages\Mono.Posix.5.4.0.201\build\net45\Mono.Posix.targets" Condition="Exists('..\..\packages\Mono.Posix.5.4.0.201\build\net45\Mono.Posix.targets')" />
<Import Project="..\..\packages\Mono.Unix.7.1.0-final.1.21458.1\build\Mono.Unix.targets" Condition="Exists('..\..\packages\Mono.Unix.7.1.0-final.1.21458.1\build\Mono.Unix.targets')" />
<Import Project="..\..\packages\NDesk.DBus.0.15.0\build\NDesk.DBus.targets" Condition="Exists('..\..\packages\NDesk.DBus.0.15.0\build\NDesk.DBus.targets')" />
<Import Project="..\..\packages\icu.net.3.0.0-beta.296\build\icu.net.targets" Condition="Exists('..\..\packages\icu.net.3.0.0-beta.296\build\icu.net.targets')" />
<Import Project="..\..\packages\SIL.ReleaseTasks.2.6.0-beta0032\build\SIL.ReleaseTasks.targets" Condition="Exists('..\..\packages\SIL.ReleaseTasks.2.6.0-beta0032\build\SIL.ReleaseTasks.targets')" />
<Import Project="..\..\packages\SIL.Media.15.0.0-beta0097\build\SIL.Media.targets" Condition="Exists('..\..\packages\SIL.Media.15.0.0-beta0097\build\SIL.Media.targets')" />
<Import Project="..\..\packages\SIL.Windows.Forms.Keyboarding.15.0.0-beta0097\build\SIL.Windows.Forms.Keyboarding.targets" Condition="Exists('..\..\packages\SIL.Windows.Forms.Keyboarding.15.0.0-beta0097\build\SIL.Windows.Forms.Keyboarding.targets')" />
<Import Project="..\..\packages\SIL.Windows.Forms.15.0.0-beta0097\build\SIL.Windows.Forms.targets" Condition="Exists('..\..\packages\SIL.Windows.Forms.15.0.0-beta0097\build\SIL.Windows.Forms.targets')" />
<Import Project="..\..\packages\SIL.ReleaseTasks.3.0.0\build\SIL.ReleaseTasks.targets" Condition="Exists('..\..\packages\SIL.ReleaseTasks.3.0.0\build\SIL.ReleaseTasks.targets')" />
<Import Project="..\..\packages\SIL.Media.15.0.0-beta0133\build\SIL.Media.targets" Condition="Exists('..\..\packages\SIL.Media.15.0.0-beta0133\build\SIL.Media.targets')" />
<Import Project="..\..\packages\SIL.Windows.Forms.Keyboarding.15.0.0-beta0133\build\SIL.Windows.Forms.Keyboarding.targets" Condition="Exists('..\..\packages\SIL.Windows.Forms.Keyboarding.15.0.0-beta0133\build\SIL.Windows.Forms.Keyboarding.targets')" />
<Import Project="..\..\packages\SIL.Windows.Forms.15.0.0-beta0133\build\SIL.Windows.Forms.targets" Condition="Exists('..\..\packages\SIL.Windows.Forms.15.0.0-beta0133\build\SIL.Windows.Forms.targets')" />
</Project>
4 changes: 4 additions & 0 deletions src/SayMore/app.config
Original file line number Diff line number Diff line change
Expand Up @@ -422,6 +422,10 @@
<assemblyIdentity name="SIL.Windows.Forms.Keyboarding" publicKeyToken="cab3c8c5232dfcf2" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-14.1.0.0" newVersion="14.1.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.IO.Compression" publicKeyToken="b77a5c561934e089" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
Loading

0 comments on commit 9c9b744

Please sign in to comment.