Skip to content

Commit

Permalink
v7.1.23321.0-Beta
Browse files Browse the repository at this point in the history
  • Loading branch information
ITHitBuild committed Jul 28, 2023
1 parent b52a20d commit 715f084
Show file tree
Hide file tree
Showing 21 changed files with 773 additions and 568 deletions.
4 changes: 2 additions & 2 deletions Common/Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<Platforms>AnyCPU;x64</Platforms>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ITHit.FileSystem.Windows" Version="7.1.23216.0-Beta" />
<PackageReference Include="ITHit.FileSystem" Version="7.1.23216.0-Beta" />
<PackageReference Include="ITHit.FileSystem.Windows" Version="7.1.23321.0-Beta" />
<PackageReference Include="ITHit.FileSystem" Version="7.1.23321.0-Beta" />
</ItemGroup>
</Project>
4 changes: 2 additions & 2 deletions Windows/Common/Core/Common.Windows.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
<PackageReference Include="Microsoft.Windows.SDK.Contracts" Version="10.0.19041.1" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ITHit.FileSystem.Windows.Package" Version="7.1.23216.0-Beta" />
<PackageReference Include="ITHit.FileSystem.Windows" Version="7.1.23216.0-Beta" />
<PackageReference Include="ITHit.FileSystem.Windows.Package" Version="7.1.23321.0-Beta" />
<PackageReference Include="ITHit.FileSystem.Windows" Version="7.1.23321.0-Beta" />
<ProjectReference Include="..\..\..\Common\Common.csproj" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<Compile Remove="IVirtualFolder.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ITHit.FileSystem.Windows" Version="7.1.23216.0-Beta" />
<PackageReference Include="ITHit.FileSystem.Windows" Version="7.1.23321.0-Beta" />
<ProjectReference Include="..\..\..\Common\Common.csproj" />
<ProjectReference Include="..\Core\Common.Windows.Core.csproj" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<PackageReference Include="System.Drawing.Common" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ITHit.FileSystem.Windows.ShellExtension" Version="7.1.23216.0-Beta" />
<PackageReference Include="ITHit.FileSystem.Windows.ShellExtension" Version="7.1.23321.0-Beta" />
</ItemGroup>
<ItemGroup>
<None Update="log4net.config">
Expand Down
2 changes: 1 addition & 1 deletion Windows/VirtualDrive/VirtualDrive/VirtualDrive.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ This is an advanced project with ETags support, Microsoft Office documents editi
<PackageReference Include="System.Drawing.Common" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ITHit.FileSystem.Windows.Package" Version="7.1.23216.0-Beta" />
<PackageReference Include="ITHit.FileSystem.Windows.Package" Version="7.1.23321.0-Beta" />
<ProjectReference Include="..\..\..\Common\Common.csproj" />
<ProjectReference Include="..\..\Common\VirtualDrive\Common.Windows.VirtualDrive.csproj" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Windows/VirtualDrive/VirtualDrive/VirtualEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public VirtualEngine(
/// <inheritdoc/>
public override async Task<IFileSystemItem> GetFileSystemItemAsync(byte[] remoteStorageItemId, FileSystemItemType itemType, IContext context, ILogger logger = null)
{
string userFileSystemPath = (context as IContextWindows).Path;
string userFileSystemPath = context.FileNameHint;
if (itemType == FileSystemItemType.File)
{
return new VirtualFile(userFileSystemPath, remoteStorageItemId, this, logger);
Expand Down
2 changes: 1 addition & 1 deletion Windows/VirtualFileSystem/VirtualEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public override async Task<bool> FilterAsync(SyncDirection direction, OperationT
/// <inheritdoc/>
public override async Task<IFileSystemItem> GetFileSystemItemAsync(byte[] remoteStorageItemId, FileSystemItemType itemType, IContext context, ILogger logger = null)
{
string userFileSystemPath = (context as IContextWindows).Path;
string userFileSystemPath = context.FileNameHint;
if (itemType == FileSystemItemType.File)
{
return new VirtualFile(userFileSystemPath, remoteStorageItemId, logger);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<Copyright>IT HIT LTD.</Copyright>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ITHit.FileSystem.Windows.ShellExtension" Version="7.1.23216.0-Beta" />
<PackageReference Include="ITHit.FileSystem.Windows.ShellExtension" Version="7.1.23321.0-Beta" />
</ItemGroup>
<ItemGroup>
<None Update="log4net.config">
Expand Down
Loading

0 comments on commit 715f084

Please sign in to comment.