Skip to content

[3.8] bpo-41744: Package python.props with correct name in NuGet package (GH-22154) #22246

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fixes automatic import of props file when using the Nuget package.
2 changes: 1 addition & 1 deletion Tools/nuget/python.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -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>
3 changes: 2 additions & 1 deletion Tools/nuget/pythonarm32.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,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\pythonarm32.props" />
</files>
</package>
3 changes: 2 additions & 1 deletion Tools/nuget/pythondaily.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -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\pythondaily.props" />
</files>
</package>
3 changes: 2 additions & 1 deletion Tools/nuget/pythonx86.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -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>