Skip to content

Commit 5e2c6d1

Browse files
committed
v5.0.14943.0-Beta
1 parent eb231de commit 5e2c6d1

30 files changed

+113
-605
lines changed

Common/Common.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
<Platforms>AnyCPU;x64</Platforms>
1111
</PropertyGroup>
1212
<ItemGroup>
13-
<PackageReference Include="ITHit.FileSystem" Version="5.0.14726.0-Beta" />
13+
<PackageReference Include="ITHit.FileSystem" Version="5.0.14943.0-Beta" />
1414
</ItemGroup>
1515
</Project>

Common/SynchronizationState.cs

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

README.md

Lines changed: 1 addition & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -1,50 +1 @@
1-
2-
<h1>User-mode File System Examples for Windows and macOS in .NET/C#</h1>
3-
<div class="description"></div>
4-
<ul class="list">
5-
<li>
6-
<a class="link-header" href="https://github.com/ITHit/UserFileSystemSamples/tree/master/Windows/VirtualFileSystem">
7-
<h2>Virtual File System Sample in .NET, C#</h2>
8-
</a>
9-
10-
<a href="https://github.com/ITHit/UserFileSystemSamples/tree/master/Windows/VirtualFileSystem">
11-
<p>
12-
This sample implements a virtual file system with synchronization support, on-demand loading,&nbsp;selective offline files support, upload and download progress, and error reporting. It synchronizes files and folders both from remote storage to the user f <span>...</span>
13-
</p>
14-
</a>
15-
</li>
16-
<li>
17-
<a class="link-header" href="https://github.com/ITHit/UserFileSystemSamples/tree/master/macOS">
18-
<h2>Virtual File System Sample for Mac in .NET, C#</h2>
19-
</a>
20-
21-
<a href="https://github.com/ITHit/UserFileSystemSamples/tree/master/macOS">
22-
<p>
23-
This sample implements a virtual file system for Mac with synchronization support and folders on-demand listing.&nbsp;It synchronizes files and folders both from remote storage to the user file system and from the user file system to remote storage. This <span>...</span>
24-
</p>
25-
</a>
26-
</li>
27-
<li>
28-
<a class="link-header" href="https://github.com/ITHit/UserFileSystemSamples/tree/master/Windows/VirtualDrive/">
29-
<h2>Virtual Drive Sample in .NET, C#</h2>
30-
</a>
31-
32-
<a href="https://github.com/ITHit/UserFileSystemSamples/tree/master/Windows/VirtualDrive/">
33-
<p>
34-
This is a virtual drive implementation with thumbnail support, Microsoft Office and AutoCAD documents editing support, and automatic Microsoft Office/AutoCAD documents locking. It also demonstrates custom column support in Windows File Manager.&nbsp;To si <span>...</span>
35-
</p>
36-
</a>
37-
</li>
38-
<li>
39-
<a class="link-header" href="https://github.com/ITHit/UserFileSystemSamples/tree/master/Windows/WebDAVDrive/">
40-
<h2>WebDAV Drive Sample in .NET, C#</h2>
41-
</a>
42-
43-
<a href="https://github.com/ITHit/UserFileSystemSamples/tree/master/Windows/WebDAVDrive/">
44-
<p>
45-
This sample implements a virtual file system that displays documents from a WebDAV server. You can edit documents, upload and download documents as well as manage folders structure using Windows File Manager. This sample provides automatic documents <span>...</span>
46-
</p>
47-
</a>
48-
</li>
49-
</ul>
50-
1+
��

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<PackageReference Include="Microsoft.Windows.SDK.Contracts" Version="10.0.19041.1" />
2121
</ItemGroup>
2222
<ItemGroup>
23-
<PackageReference Include="ITHit.FileSystem.Windows" Version="5.0.14726.0-Beta" />
23+
<PackageReference Include="ITHit.FileSystem.Windows" Version="5.0.14943.0-Beta" />
2424
<ProjectReference Include="..\..\..\Common\Common.csproj" />
2525
</ItemGroup>
2626
</Project>

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,12 @@
1212
<Compile Remove="ETagManager.cs" />
1313
<Compile Remove="ExternalDataManager.cs" />
1414
<Compile Remove="FilteredDocsMonitor.cs" />
15-
<Compile Remove="FullSync\ClientToServerSync.cs" />
16-
<Compile Remove="FullSync\ServerToClientSync.cs" />
1715
<Compile Remove="IMapping.cs" />
1816
<Compile Remove="LockManager.cs" />
17+
<Compile Remove="ServerToClientSync.cs" />
1918
</ItemGroup>
2019
<ItemGroup>
21-
<PackageReference Include="ITHit.FileSystem.Windows" Version="5.0.14726.0-Beta" />
20+
<PackageReference Include="ITHit.FileSystem.Windows" Version="5.0.14943.0-Beta" />
2221
<ProjectReference Include="..\..\..\Common\Common.csproj" />
2322
<ProjectReference Include="..\Core\Common.Windows.Core.csproj" />
2423
</ItemGroup>

Windows/Common/VirtualDrive/Filter/MsOfficeFilterHelper.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ namespace ITHit.FileSystem.Samples.Common.Windows
1010
/// Provides methods to detect Microsoft Office files that should not be synced to the remote storage,
1111
/// such as temporary files, Microsoft Office lock files and MS Office files opened (locked) for editing.
1212
/// </summary>
13+
/// <remarks>
14+
/// https://support.microsoft.com/en-us/topic/description-of-how-word-creates-temporary-files-66b112fb-d2c0-8f40-a0be-70a367cc4c85
15+
/// </remarks>
1316
internal class MsOfficeFilterHelper
1417
{
1518
/// <summary>

Windows/Common/VirtualDrive/FullSync/FullSyncService.cs

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

Windows/Common/VirtualDrive/FullSync/ServerToClientSync.cs renamed to Windows/Common/VirtualDrive/ServerToClientSync.cs

File renamed without changes.

0 commit comments

Comments
 (0)