Skip to content

Commit

Permalink
Merge pull request #297 from apetukhov/nuget33support
Browse files Browse the repository at this point in the history
Support the content files for PackageReference. #178, #293
  • Loading branch information
justinstenning committed Jun 7, 2019
2 parents b881e58 + 8f200e8 commit 2b04846
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion EasyHook.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,11 @@ EasyHook currently supports injecting assemblies built for .NET Framework 3.5 an
<copyright>Copyright © 2009 Christoph Husse &amp; Copyright © 2012 Justin Stenning</copyright>
<tags>api hook hooking easyhook</tags>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System.Runtime.Remoting" targetFramework="" />
<frameworkAssembly assemblyName="System.Runtime.Remoting" />
</frameworkAssemblies>
<contentFiles>
<files include="**" buildAction="Content" copyToOutput="true" />
</contentFiles>
</metadata>
<files>
<file src="Build\netfx3.5-Release\x64\EasyHook32.dll" target="content\net35\EasyHook32.dll" />
Expand All @@ -59,6 +62,20 @@ EasyHook currently supports injecting assemblies built for .NET Framework 3.5 an
<file src="Build\netfx4-Release\x64\EasyHook64Svc.exe" target="content\net40\EasyHook64Svc.exe" />
<file src="Build\netfx4-Release\x64\EasyLoad32.dll" target="content\net40\EasyLoad32.dll" />
<file src="Build\netfx4-Release\x64\EasyLoad64.dll" target="content\net40\EasyLoad64.dll" />

<file src="Build\netfx3.5-Release\x64\EasyHook32.dll" target="contentFiles\any\net35\EasyHook32.dll" />
<file src="Build\netfx3.5-Release\x64\EasyHook32Svc.exe" target="contentFiles\any\net35\EasyHook32Svc.exe" />
<file src="Build\netfx3.5-Release\x64\EasyHook64.dll" target="contentFiles\any\net35\EasyHook64.dll" />
<file src="Build\netfx3.5-Release\x64\EasyHook64Svc.exe" target="contentFiles\any\net35\EasyHook64Svc.exe" />
<file src="Build\netfx3.5-Release\x64\EasyLoad32.dll" target="contentFiles\any\net35\EasyLoad32.dll" />
<file src="Build\netfx3.5-Release\x64\EasyLoad64.dll" target="contentFiles\any\net35\EasyLoad64.dll" />
<file src="Build\netfx4-Release\x64\EasyHook32.dll" target="contentFiles\any\net40\EasyHook32.dll" />
<file src="Build\netfx4-Release\x64\EasyHook32Svc.exe" target="contentFiles\any\net40\EasyHook32Svc.exe" />
<file src="Build\netfx4-Release\x64\EasyHook64.dll" target="contentFiles\any\net40\EasyHook64.dll" />
<file src="Build\netfx4-Release\x64\EasyHook64Svc.exe" target="contentFiles\any\net40\EasyHook64Svc.exe" />
<file src="Build\netfx4-Release\x64\EasyLoad32.dll" target="contentFiles\any\net40\EasyLoad32.dll" />
<file src="Build\netfx4-Release\x64\EasyLoad64.dll" target="contentFiles\any\net40\EasyLoad64.dll" />

<file src="Build\netfx3.5-Release\x64\EasyHook.dll" target="lib\net35\EasyHook.dll" />
<file src="Build\netfx3.5-Release\x64\EasyHook.xml" target="lib\net35\EasyHook.xml" />
<file src="Build\netfx4-Release\x64\EasyHook.dll" target="lib\net40\EasyHook.dll" />
Expand Down

0 comments on commit 2b04846

Please sign in to comment.