Skip to content

Commit 9e4a543

Browse files
committed
v3.2.8901.0
1 parent b81929b commit 9e4a543

Some content is hidden

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

46 files changed

+495
-581
lines changed

Common/Common.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
<Description>Contains functionality common for all Virtual Drive samples, both for Windows and macOS.</Description>
99
</PropertyGroup>
1010
<ItemGroup>
11-
<PackageReference Include="ITHit.FileSystem" Version="3.1.7115.0-Beta" />
11+
<PackageReference Include="ITHit.FileSystem" Version="3.2.8901.0" />
1212
</ItemGroup>
1313
</Project>

Common/FileSystemItemMetadataExt.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ namespace ITHit.FileSystem.Samples.Common
1313
public class FileSystemItemMetadataExt : IFileSystemItemMetadata
1414
{
1515
/// <inheritdoc/>
16-
public string ItemId { get; set; }
16+
public byte[] ItemId { get; set; }
1717

1818
///<inheritdoc/>
1919
public string Name { get; set; }

Windows/Common/Common.Windows.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>netstandard2.1</TargetFramework>
3+
<TargetFramework>netcoreapp3.1</TargetFramework>
44
<Description>Contains functionality common for all Windows Virtual Drive samples.</Description>
55
<Authors>IT Hit LTD.</Authors>
66
<Product>IT Hit User File System</Product>
@@ -12,7 +12,7 @@
1212
<PackageReference Include="Microsoft.Windows.SDK.Contracts" Version="10.0.19041.1" />
1313
</ItemGroup>
1414
<ItemGroup>
15-
<PackageReference Include="ITHit.FileSystem.Windows" Version="3.1.7115.0-Beta" />
15+
<PackageReference Include="ITHit.FileSystem.Windows" Version="3.2.8901.0" />
1616
<ProjectReference Include="..\..\Common\Common.csproj" />
1717
</ItemGroup>
1818
</Project>

Windows/Common/ETagManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ internal async Task MoveToAsync(string userFileSystemNewPath)
9595
new FileInfo(eTagFileTargetPath).Directory.Create();
9696
if (File.Exists(eTagFilePath))
9797
{
98-
File.Move(eTagFilePath, eTagFileTargetPath);
98+
File.Move(eTagFilePath, eTagFileTargetPath, true);
9999
}
100100

101101
// If this is a folder, move all eTags in this folder.

Windows/Common/ExternalDataManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ private async Task CustomColumnsMoveToAsync(string userFileSystemNewPath)
533533

534534
if (File.Exists(customColumnsFilePath))
535535
{
536-
File.Move(customColumnsFilePath, customColumnsFileTargetPath);
536+
File.Move(customColumnsFilePath, customColumnsFileTargetPath, true);
537537
}
538538

539539
// If this is a folder, move all data in this folder.

Windows/Common/LockManager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,11 +199,11 @@ internal async Task MoveToAsync(string userFileSystemNewPath)
199199
new FileInfo(lockInfoFileTargetPath).Directory.Create();
200200
if (File.Exists(lockInfoFilePath))
201201
{
202-
File.Move(lockInfoFilePath, lockInfoFileTargetPath);
202+
File.Move(lockInfoFilePath, lockInfoFileTargetPath, true);
203203
}
204204
if (File.Exists(lockModeFilePath))
205205
{
206-
File.Move(lockModeFilePath, lockModeFileTargetPath);
206+
File.Move(lockModeFilePath, lockModeFileTargetPath, true);
207207
}
208208

209209
// If this is a folder, move all data in this folder.

Windows/UserFileSystemSamples.sln

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VirtualDrive.ThumbnailProvi
2121
EndProject
2222
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VirtualFileSystem", "VirtualFileSystem\VirtualFileSystem.csproj", "{06E5D212-CAD4-4880-832D-69D8D69B8E3D}"
2323
EndProject
24+
Project("{C7167F0D-BC9F-4E6E-AFE1-012C56B48DB5}") = "VirtualDrive.Package", "VirtualDrive\VirtualDrive.Package\VirtualDrive.Package.wapproj", "{9CC25823-7D6C-4AAA-95A0-EE0514CCABD9}"
25+
EndProject
2426
Global
2527
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2628
Debug|Any CPU = Debug|Any CPU
@@ -175,6 +177,34 @@ Global
175177
{06E5D212-CAD4-4880-832D-69D8D69B8E3D}.Release|x64.Build.0 = Release|Any CPU
176178
{06E5D212-CAD4-4880-832D-69D8D69B8E3D}.Release|x86.ActiveCfg = Release|Any CPU
177179
{06E5D212-CAD4-4880-832D-69D8D69B8E3D}.Release|x86.Build.0 = Release|Any CPU
180+
{9CC25823-7D6C-4AAA-95A0-EE0514CCABD9}.Debug|Any CPU.ActiveCfg = Debug|x64
181+
{9CC25823-7D6C-4AAA-95A0-EE0514CCABD9}.Debug|Any CPU.Build.0 = Debug|x64
182+
{9CC25823-7D6C-4AAA-95A0-EE0514CCABD9}.Debug|Any CPU.Deploy.0 = Debug|x64
183+
{9CC25823-7D6C-4AAA-95A0-EE0514CCABD9}.Debug|ARM.ActiveCfg = Debug|ARM
184+
{9CC25823-7D6C-4AAA-95A0-EE0514CCABD9}.Debug|ARM.Build.0 = Debug|ARM
185+
{9CC25823-7D6C-4AAA-95A0-EE0514CCABD9}.Debug|ARM.Deploy.0 = Debug|ARM
186+
{9CC25823-7D6C-4AAA-95A0-EE0514CCABD9}.Debug|ARM64.ActiveCfg = Debug|ARM64
187+
{9CC25823-7D6C-4AAA-95A0-EE0514CCABD9}.Debug|ARM64.Build.0 = Debug|ARM64
188+
{9CC25823-7D6C-4AAA-95A0-EE0514CCABD9}.Debug|ARM64.Deploy.0 = Debug|ARM64
189+
{9CC25823-7D6C-4AAA-95A0-EE0514CCABD9}.Debug|x64.ActiveCfg = Debug|x64
190+
{9CC25823-7D6C-4AAA-95A0-EE0514CCABD9}.Debug|x64.Build.0 = Debug|x64
191+
{9CC25823-7D6C-4AAA-95A0-EE0514CCABD9}.Debug|x64.Deploy.0 = Debug|x64
192+
{9CC25823-7D6C-4AAA-95A0-EE0514CCABD9}.Debug|x86.ActiveCfg = Debug|x86
193+
{9CC25823-7D6C-4AAA-95A0-EE0514CCABD9}.Debug|x86.Build.0 = Debug|x86
194+
{9CC25823-7D6C-4AAA-95A0-EE0514CCABD9}.Debug|x86.Deploy.0 = Debug|x86
195+
{9CC25823-7D6C-4AAA-95A0-EE0514CCABD9}.Release|Any CPU.ActiveCfg = Release|x86
196+
{9CC25823-7D6C-4AAA-95A0-EE0514CCABD9}.Release|ARM.ActiveCfg = Release|ARM
197+
{9CC25823-7D6C-4AAA-95A0-EE0514CCABD9}.Release|ARM.Build.0 = Release|ARM
198+
{9CC25823-7D6C-4AAA-95A0-EE0514CCABD9}.Release|ARM.Deploy.0 = Release|ARM
199+
{9CC25823-7D6C-4AAA-95A0-EE0514CCABD9}.Release|ARM64.ActiveCfg = Release|ARM64
200+
{9CC25823-7D6C-4AAA-95A0-EE0514CCABD9}.Release|ARM64.Build.0 = Release|ARM64
201+
{9CC25823-7D6C-4AAA-95A0-EE0514CCABD9}.Release|ARM64.Deploy.0 = Release|ARM64
202+
{9CC25823-7D6C-4AAA-95A0-EE0514CCABD9}.Release|x64.ActiveCfg = Release|x64
203+
{9CC25823-7D6C-4AAA-95A0-EE0514CCABD9}.Release|x64.Build.0 = Release|x64
204+
{9CC25823-7D6C-4AAA-95A0-EE0514CCABD9}.Release|x64.Deploy.0 = Release|x64
205+
{9CC25823-7D6C-4AAA-95A0-EE0514CCABD9}.Release|x86.ActiveCfg = Release|x86
206+
{9CC25823-7D6C-4AAA-95A0-EE0514CCABD9}.Release|x86.Build.0 = Release|x86
207+
{9CC25823-7D6C-4AAA-95A0-EE0514CCABD9}.Release|x86.Deploy.0 = Release|x86
178208
EndGlobalSection
179209
GlobalSection(SolutionProperties) = preSolution
180210
HideSolutionNode = FALSE
@@ -184,6 +214,7 @@ Global
184214
{51F6CFCC-AB57-40DD-AADA-6299A2C6B941} = {264745B0-DF86-41E1-B400-3CAA1B403830}
185215
{648FB01F-0C4A-409E-A48A-E6722F626AB8} = {CAE8E8A6-2721-4C90-BCD9-F4B03C3D8F13}
186216
{1E765516-497B-4546-8C38-DB452915ACBF} = {CAE8E8A6-2721-4C90-BCD9-F4B03C3D8F13}
217+
{9CC25823-7D6C-4AAA-95A0-EE0514CCABD9} = {CAE8E8A6-2721-4C90-BCD9-F4B03C3D8F13}
187218
EndGlobalSection
188219
GlobalSection(ExtensibilityGlobals) = postSolution
189220
SolutionGuid = {740A716A-38A7-46BC-A21F-18336D0023B7}
1.4 KB
Loading
7.52 KB
Loading
2.87 KB
Loading

0 commit comments

Comments
 (0)