Skip to content

Commit fb0ed21

Browse files
committed
Include winsparkle-tool in nuget package
Add the tool to tools subdirectory. Also add a $(WinSparkleTool) MSBuild property pointing to it.
1 parent b0ef387 commit fb0ed21

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

nuget/WinSparkle.nuspec

+2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@
2222
<file src="..\x64\Release\WinSparkle.lib" target="build\native\x64\" />
2323
<file src="..\ARM64\Release\WinSparkle.dll" target="build\native\ARM64\" />
2424
<file src="..\ARM64\Release\WinSparkle.lib" target="build\native\ARM64\" />
25+
<file src="..\ARM64\Release\winsparkle-tool.exe" target="tools" />
2526
<file src="WinSparkle.targets" target="build\native\" />
27+
<file src="WinSparkle.props" target="build" />
2628
<file src="..\*.md" target="" />
2729
<file src="..\COPYING" target="COPYING" />
2830
</files>

nuget/WinSparkle.props

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<WinSparkleTool>$(MSBuildThisFileDirectory)..\tools\winsparkle-tool.exe</WinSparkleTool>
5+
</PropertyGroup>
6+
</Project>

0 commit comments

Comments
 (0)