summaryrefslogtreecommitdiffstats
path: root/Tools/nuget/python.nuspec
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-09-14 19:47:40 (GMT)
committerGitHub <noreply@github.com>2020-09-14 19:47:40 (GMT)
commitb007a9be6fab6d55deae070e5eaef9755794e169 (patch)
tree0303222e6528a226930b69eb0e6dbf0a69e73a07 /Tools/nuget/python.nuspec
parent3c618d0a073ea6863d1b4e2616e284308fbc12fc (diff)
downloadcpython-b007a9be6fab6d55deae070e5eaef9755794e169.zip
cpython-b007a9be6fab6d55deae070e5eaef9755794e169.tar.gz
cpython-b007a9be6fab6d55deae070e5eaef9755794e169.tar.bz2
bpo-41744: Package python.props with correct name in NuGet package (GH-22154)
NuGet automatically includes .props file from the build directory in the target using the package, but only if the .props file has the correct name: it must be $(id).props Rename python.props correspondingly in all the nuspec variants. Also keep python.props as it were for backward compatibility. (cherry picked from commit 7c11a9accabe3720940f334eb1226bb7bb9179c7) Co-authored-by: Václav Slavík <vaclav@slavik.io>
Diffstat (limited to 'Tools/nuget/python.nuspec')
-rw-r--r--Tools/nuget/python.nuspec2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/nuget/python.nuspec b/Tools/nuget/python.nuspec
index 8f98e80..2da5f20 100644
--- a/Tools/nuget/python.nuspec
+++ b/Tools/nuget/python.nuspec
@@ -13,6 +13,6 @@
</metadata>
<files>
<file src="**\*" exclude="python.props" target="tools" />
- <file src="python.props" target="build\native" />
+ <file src="python.props" target="build\native\python.props" />
</files>
</package>