summaryrefslogtreecommitdiffstats
path: root/Tools/nuget/python.nuspec
diff options
context:
space:
mode:
authorMiss Skeleton (bot) <31488909+miss-islington@users.noreply.github.com>2020-10-21 05:15:18 (GMT)
committerGitHub <noreply@github.com>2020-10-21 05:15:18 (GMT)
commitd0bfce992c4ce0e6e71f13a993c91903a97a62f3 (patch)
tree35190e82964b3e7615d40d395262638dce45d22e /Tools/nuget/python.nuspec
parenta1296ed60b2aacd44ccc490d725c0bac2ae9877a (diff)
downloadcpython-d0bfce992c4ce0e6e71f13a993c91903a97a62f3.zip
cpython-d0bfce992c4ce0e6e71f13a993c91903a97a62f3.tar.gz
cpython-d0bfce992c4ce0e6e71f13a993c91903a97a62f3.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>