Skip to content

Commit f9b99b5

Browse files
committed
v2.5.5091.0
1 parent 6d55a3f commit f9b99b5

File tree

192 files changed

+243
-5139
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

192 files changed

+243
-5139
lines changed

ITHit.FileSystem.Samples.Common.Windows/ClientLockFailedException.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System;
1+
using System;
22
using System.Collections.Generic;
33
using System.IO;
44
using System.Text;

ITHit.FileSystem.Samples.Common.Windows/CustomData.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using ITHit.FileSystem;
1+
using ITHit.FileSystem;
22
using ITHit.FileSystem.Windows;
33
using System;
44
using System.Collections.Generic;

ITHit.FileSystem.Samples.Common.Windows/ETagManager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System;
1+
using System;
22
using System.Collections.Generic;
33
using System.IO;
44
using System.Text;
@@ -110,7 +110,7 @@ internal void DeleteETag()
110110
/// During user file system to remote storage update it is sent back to the remote storage together with a modified content.
111111
/// This ensures the changes in the remote storage are not overwritten if the document on the server is modified.
112112
/// </remarks>
113-
public async Task<bool> ETagEqualsAsync(FileSystemItemMetadata remoteStorageItem)
113+
public async Task<bool> ETagEqualsAsync(FileSystemItemMetadataExt remoteStorageItem)
114114
{
115115
string remoteStorageETag = remoteStorageItem.ETag;
116116
string userFileSystemETag = await GetETagAsync();

ITHit.FileSystem.Samples.Common.Windows/FsPath.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System;
1+
using System;
22
using System.Collections.Generic;
33
using System.IO;
44
using System.Text;

ITHit.FileSystem.Samples.Common.Windows/ITHit.FileSystem.Samples.Common.Windows.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<PackageReference Include="Microsoft.Windows.SDK.Contracts" Version="10.0.19041.1" />
1313
</ItemGroup>
1414
<ItemGroup>
15-
<ProjectReference Include="..\..\ITHit.FileSystem\ITHit.FileSystem.Windows\ITHit.FileSystem.Windows.csproj" />
15+
<PackageReference Include="ITHit.FileSystem.Windows" Version="2.5.5091.0" />
1616
<ProjectReference Include="..\ITHit.FileSystem.Samples.Common\ITHit.FileSystem.Samples.Common.csproj" />
1717
</ItemGroup>
1818
</Project>

ITHit.FileSystem.Samples.Common.Windows/Locks/LockManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System;
1+
using System;
22
using System.Collections.Generic;
33
using System.IO;
44
using System.Text;

ITHit.FileSystem.Samples.Common.Windows/Locks/LockSync.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using ITHit.FileSystem;
1+
using ITHit.FileSystem;
22
using System;
33
using System.Collections.Generic;
44
using System.IO;

ITHit.FileSystem.Samples.Common.Windows/Logger.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using log4net;
1+
using log4net;
22
using System;
33
using System.Collections.Generic;
44
using System.Text;

ITHit.FileSystem.Samples.Common.Windows/Registrar.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System;
1+
using System;
22
using System.Collections.Generic;
33
using System.IO;
44
using System.Linq;

ITHit.FileSystem.Samples.Common.Windows/Syncronyzation/ClientToServerSync.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using ITHit.FileSystem;
1+
using ITHit.FileSystem;
22
using ITHit.FileSystem.Windows;
33
using log4net;
44
using System;
@@ -59,15 +59,15 @@ internal async Task SyncronizeMovedAsync(string userFileSystemFolderPath)
5959
string userFileSystemOldPath = null;
6060
try
6161
{
62-
//$<PlaceholderItem.IsPlaceholder
62+
6363
if (!PlaceholderItem.IsPlaceholder(userFileSystemPath))
6464
{
6565
// Convert regular file/folder to placeholder.
6666
// The file/folder was created or overwritten.
6767
PlaceholderItem.ConvertToPlaceholder(userFileSystemPath, false);
6868
LogMessage("Converted to placeholder", userFileSystemPath);
6969
}
70-
//$>
70+
7171

7272
if (!FsPath.AvoidSync(userFileSystemPath))
7373
{

0 commit comments

Comments
 (0)