-
Notifications
You must be signed in to change notification settings - Fork 1
/
Directory.Build.props
75 lines (66 loc) · 2.49 KB
/
Directory.Build.props
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<Project>
<PropertyGroup>
<PackageId>RPS</PackageId>
<Version>1.5.1</Version>
<Authors>gynt</Authors>
<Company>gynt</Company>
<Copyright>2023</Copyright>
<PackageLicenseExpression>AGPL-3.0-or-later</PackageLicenseExpression>
<TargetFramework>native</TargetFramework>
<PackageOutputPath>.</PackageOutputPath>
<Description>Runtime patching system that enables modifying program memory from lua scripts.</Description>
<RepositoryUrl>https://github.com/gynt/RuntimePatchingSystem.git</RepositoryUrl>
<PackageProjectUrl>https://github.com/gynt/RuntimePatchingSystem/</PackageProjectUrl>
<EnableCentralPackageVersions>true</EnableCentralPackageVersions>
<TargetFramework>native</TargetFramework>
<RestoreAdditionalProjectSources>
<!-- for lua -->
https://api.nuget.org/v3/index.json;
</RestoreAdditionalProjectSources>
<_NuGetTargetFallbackMoniker>$(_NuGetTargetFallbackMoniker);native,Version=v0.0</_NuGetTargetFallbackMoniker>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="lua" Version="5.4.6"/>
<PackageReference Include="NuGet.Build.Tasks.Pack" Version="5.2.0"/>
<Content Include="Debug\RPS.dll">
<Pack>true</Pack>
<PackagePath>build\native\bin\Win32\v143\Debug</PackagePath>
</Content>
<Content Include="Debug\RPS.lib">
<Pack>true</Pack>
<PackagePath>build\native\lib\Win32\v143\Debug</PackagePath>
</Content>
<Content Include="Debug\RPS.pdb">
<Pack>true</Pack>
<PackagePath>build\native\lib\Win32\v143\Debug</PackagePath>
</Content>
<Content Include="Release\RPS.dll">
<Pack>true</Pack>
<PackagePath>build\native\bin\Win32\v143\Release</PackagePath>
</Content>
<Content Include="Release\RPS.lib">
<Pack>true</Pack>
<PackagePath>build\native\lib\Win32\v143\Release</PackagePath>
</Content>
<Content Include="RuntimePatchingSystem.h">
<Pack>true</Pack>
<PackagePath>build\native\include</PackagePath>
</Content>
<Content Include="RPS.targets">
<Pack>true</Pack>
<PackagePath>build\native</PackagePath>
</Content>
<Content Include="RPS-propertiesui.xml">
<Pack>true</Pack>
<PackagePath>build\native</PackagePath>
</Content>
<Content Include="README.md">
<Pack>true</Pack>
<PackagePath>build</PackagePath>
</Content>
<Content Include="README.md">
<Pack>true</Pack>
<PackagePath>build\native\doc</PackagePath>
</Content>
</ItemGroup>
</Project>