Skip to content

Commit 136d5be

Browse files
committed
Add NanaZip.LegacyShellExtension drag drop handler.
Signed-off-by: Tu Dinh <[email protected]>
1 parent 56de533 commit 136d5be

9 files changed

+1291
-3
lines changed

BuildAllTargets.proj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@
8080
<Copy SourceFiles="$(InputBinariesPath)NanaZipPackage\arm64\NanaZip.Universal.Console.pdb" DestinationFolder="$(OutputSymbolsPath)arm64" />
8181
<Copy SourceFiles="$(InputBinariesPath)NanaZipPackage\arm64\NanaZip.Core.pdb" DestinationFolder="$(OutputSymbolsPath)arm64" />
8282
<Copy SourceFiles="$(InputBinariesPath)NanaZipPackage\arm64\NanaZip.Core.Windows.pdb" DestinationFolder="$(OutputSymbolsPath)arm64" />
83+
<Copy SourceFiles="$(InputBinariesPath)NanaZipPackage\arm64\NanaZip.LegacyShellExtension.pdb" DestinationFolder="$(OutputSymbolsPath)arm64" />
8384
<Copy SourceFiles="$(InputBinariesPath)NanaZipPackage\arm64\NanaZip.Modern.pdb" DestinationFolder="$(OutputSymbolsPath)arm64" />
8485
<Copy SourceFiles="$(InputBinariesPath)NanaZipPackage\arm64\NanaZip.Modern.FileManager.pdb" DestinationFolder="$(OutputSymbolsPath)arm64" />
8586
<Copy SourceFiles="$(InputBinariesPath)NanaZipPackage\arm64\NanaZip.ShellExtension.pdb" DestinationFolder="$(OutputSymbolsPath)arm64" />
@@ -88,6 +89,7 @@
8889
<Copy SourceFiles="$(InputBinariesPath)NanaZipPackage\x64\NanaZip.Universal.Console.pdb" DestinationFolder="$(OutputSymbolsPath)x64" />
8990
<Copy SourceFiles="$(InputBinariesPath)NanaZipPackage\x64\NanaZip.Core.pdb" DestinationFolder="$(OutputSymbolsPath)x64" />
9091
<Copy SourceFiles="$(InputBinariesPath)NanaZipPackage\x64\NanaZip.Core.Windows.pdb" DestinationFolder="$(OutputSymbolsPath)x64" />
92+
<Copy SourceFiles="$(InputBinariesPath)NanaZipPackage\x64\NanaZip.LegacyShellExtension.pdb" DestinationFolder="$(OutputSymbolsPath)x64" />
9193
<Copy SourceFiles="$(InputBinariesPath)NanaZipPackage\x64\NanaZip.Modern.pdb" DestinationFolder="$(OutputSymbolsPath)x64" />
9294
<Copy SourceFiles="$(InputBinariesPath)NanaZipPackage\x64\NanaZip.Modern.FileManager.pdb" DestinationFolder="$(OutputSymbolsPath)x64" />
9395
<Copy SourceFiles="$(InputBinariesPath)NanaZipPackage\x64\NanaZip.ShellExtension.pdb" DestinationFolder="$(OutputSymbolsPath)x64" />
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
LIBRARY
2+
3+
EXPORTS
4+
5+
DllCanUnloadNow PRIVATE
6+
DllGetClassObject PRIVATE
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2+
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
3+
<dependency>
4+
<dependentAssembly>
5+
<assemblyIdentity
6+
type="win32"
7+
name="Microsoft.Windows.Common-Controls"
8+
version="6.0.0.0"
9+
processorArchitecture="*"
10+
publicKeyToken="6595b64144ccf1df"
11+
language="*"/>
12+
</dependentAssembly>
13+
</dependency>
14+
</assembly>

NanaZip.UI.Modern/NanaZip.LegacyShellExtension.vcxproj

Lines changed: 285 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)