-
Notifications
You must be signed in to change notification settings - Fork 1
/
RuntimePatchingSystem.nuspec
33 lines (33 loc) · 1.68 KB
/
RuntimePatchingSystem.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>RPS</id>
<version>1.5.1</version>
<title>Runtime Patching System</title>
<authors>gynt</authors>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<license type="expression">AGPL-3.0-or-later</license>
<projectUrl>https://github.com/gynt/RuntimePatchingSystem/</projectUrl>
<repository type="git" url="https://github.com/gynt/RuntimePatchingSystem.git"/>
<!--<iconUrl>http://icon_url_here_or_delete_this_line/</iconUrl>-->
<description>Runtime patching system that enables modifying program memory from lua scripts.</description>
<!--<releaseNotes>Summary of changes made in this release of the package.</releaseNotes>-->
<copyright>Copyright 2021</copyright>
<tags>Native native Lua Hook Detour Patching</tags>
<dependencies>
<dependency id="lua" version="5.4.4.1" include="native" />
</dependencies>
</metadata>
<files>
<file src="Debug\RPS.dll" target="build\native\bin\Win32\v143\Debug"/>
<file src="Debug\RPS.lib" target="build\native\lib\Win32\v143\Debug"/>
<file src="Debug\RPS.pdb" target="build\native\lib\Win32\v143\Debug"/>
<file src="Release\RPS.dll" target="build\native\bin\Win32\v143\Release"/>
<file src="Release\RPS.lib" target="build\native\lib\Win32\v143\Release"/>
<file src="RuntimePatchingSystem.h" target="build\native\include"/>
<file src="RPS.targets" target="build\native"/>
<file src="RPS-propertiesui.xml" target="build\native"/>
<file src="README.md" target="build"/>
<file src="README.md" target="build\native\doc"/>
</files>
</package>