diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-09-14 19:47:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-14 19:47:40 (GMT) |
commit | b007a9be6fab6d55deae070e5eaef9755794e169 (patch) | |
tree | 0303222e6528a226930b69eb0e6dbf0a69e73a07 /Tools/nuget/pythonx86.nuspec | |
parent | 3c618d0a073ea6863d1b4e2616e284308fbc12fc (diff) | |
download | cpython-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/pythonx86.nuspec')
-rw-r--r-- | Tools/nuget/pythonx86.nuspec | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Tools/nuget/pythonx86.nuspec b/Tools/nuget/pythonx86.nuspec index 27ef67e..ea878ba 100644 --- a/Tools/nuget/pythonx86.nuspec +++ b/Tools/nuget/pythonx86.nuspec @@ -13,6 +13,7 @@ </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" /> + <file src="python.props" target="build\native\pythonx86.props" /> </files> </package> |