Skip to content

Commit 1986f61

Browse files
committed
v7.0.22106.0-Beta
1 parent baed9de commit 1986f61

File tree

14 files changed

+35
-250
lines changed

14 files changed

+35
-250
lines changed

Common/Common.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<Platforms>AnyCPU;x64</Platforms>
1111
</PropertyGroup>
1212
<ItemGroup>
13-
<PackageReference Include="ITHit.FileSystem.Windows" Version="7.0.22091.0-Beta" />
14-
<PackageReference Include="ITHit.FileSystem" Version="7.0.22091.0-Beta" />
13+
<PackageReference Include="ITHit.FileSystem.Windows" Version="7.0.22106.0-Beta" />
14+
<PackageReference Include="ITHit.FileSystem" Version="7.0.22106.0-Beta" />
1515
</ItemGroup>
1616
</Project>

Windows/Common/Core/Common.Windows.Core.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
<PackageReference Include="Microsoft.Windows.SDK.Contracts" Version="10.0.19041.1" />
2121
</ItemGroup>
2222
<ItemGroup>
23-
<PackageReference Include="ITHit.FileSystem.Windows.Package" Version="7.0.22091.0-Beta" />
24-
<PackageReference Include="ITHit.FileSystem.Windows" Version="7.0.22091.0-Beta" />
23+
<PackageReference Include="ITHit.FileSystem.Windows.Package" Version="7.0.22106.0-Beta" />
24+
<PackageReference Include="ITHit.FileSystem.Windows" Version="7.0.22106.0-Beta" />
2525
<ProjectReference Include="..\..\..\Common\Common.csproj" />
2626
</ItemGroup>
2727
</Project>

Windows/Common/VirtualDrive/Common.Windows.VirtualDrive.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<Compile Remove="IVirtualFolder.cs" />
1414
</ItemGroup>
1515
<ItemGroup>
16-
<PackageReference Include="ITHit.FileSystem.Windows" Version="7.0.22091.0-Beta" />
16+
<PackageReference Include="ITHit.FileSystem.Windows" Version="7.0.22106.0-Beta" />
1717
<ProjectReference Include="..\..\..\Common\Common.csproj" />
1818
<ProjectReference Include="..\Core\Common.Windows.Core.csproj" />
1919
</ItemGroup>

Windows/Common/VirtualDrive/PlaceholderItemExtensions.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
using System.Threading.Tasks;
66

77
using ITHit.FileSystem.Windows;
8-
using ITHit.FileSystem.Windows.Properties;
9-
108

119
namespace ITHit.FileSystem.Samples.Common.Windows
1210
{

Windows/VirtualDrive/VirtualDrive.ShellExtension/VirtualDrive.ShellExtension.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<PackageReference Include="System.Drawing.Common" Version="6.0.0" />
2020
</ItemGroup>
2121
<ItemGroup>
22-
<PackageReference Include="ITHit.FileSystem.Windows.ShellExtension" Version="7.0.22091.0-Beta" />
22+
<PackageReference Include="ITHit.FileSystem.Windows.ShellExtension" Version="7.0.22106.0-Beta" />
2323
</ItemGroup>
2424
<ItemGroup>
2525
<None Update="log4net.config">

Windows/VirtualDrive/VirtualDrive/VirtualDrive.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ This is an advanced project with ETags support, Microsoft Office documents editi
4040
<PackageReference Include="System.Drawing.Common" Version="6.0.0" />
4141
</ItemGroup>
4242
<ItemGroup>
43-
<PackageReference Include="ITHit.FileSystem.Windows.Package" Version="7.0.22091.0-Beta" />
43+
<PackageReference Include="ITHit.FileSystem.Windows.Package" Version="7.0.22106.0-Beta" />
4444
<ProjectReference Include="..\..\..\Common\Common.csproj" />
4545
<ProjectReference Include="..\..\Common\VirtualDrive\Common.Windows.VirtualDrive.csproj" />
4646
</ItemGroup>

Windows/WebDAVDrive/WebDAVDrive.ShellExtension/WebDAVDrive.ShellExtension.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<Copyright>IT HIT LTD.</Copyright>
1313
</PropertyGroup>
1414
<ItemGroup>
15-
<PackageReference Include="ITHit.FileSystem.Windows.ShellExtension" Version="7.0.22091.0-Beta" />
15+
<PackageReference Include="ITHit.FileSystem.Windows.ShellExtension" Version="7.0.22106.0-Beta" />
1616
</ItemGroup>
1717
<ItemGroup>
1818
<None Update="log4net.config">

Windows/WebDAVDrive/WebDAVDrive/AppSettings.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,6 @@ public class AppSettings : Settings
4444
/// </summary>
4545
public double SyncIntervalMs { get; set; }
4646

47-
/// <summary>
48-
/// Full incoming synchronization interval in milliseconds.
49-
/// </summary>
50-
public double IncomingFullSyncIntervalMs { get; set; }
51-
5247
/// <summary>
5348
/// Throttling max of create/update/read concurrent requests.
5449
/// </summary>

Windows/WebDAVDrive/WebDAVDrive/IncomingFullSync.cs

Lines changed: 0 additions & 194 deletions
This file was deleted.

Windows/WebDAVDrive/WebDAVDrive/Program.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,6 @@ private static async Task RunEngineAsync()
181181
commands.RemoteStorageMonitor = Engine.RemoteStorageMonitor;
182182

183183
Engine.SyncService.SyncIntervalMs = Settings.SyncIntervalMs;
184-
Engine.IncomingFullSync.SyncIntervalMs = Settings.IncomingFullSyncIntervalMs;
185184
Engine.AutoLock = Settings.AutoLock;
186185
Engine.MaxTransferConcurrentRequests = Settings.MaxTransferConcurrentRequests.Value;
187186
Engine.MaxOperationsConcurrentRequests = Settings.MaxOperationsConcurrentRequests.Value;

0 commit comments

Comments
 (0)