Browse Source

Preinstalls pip into the nuget package so that pip.exe is available after installation.

pull/40/head
Steve Dower 10 years ago
parent
commit
3f9fbfcdd4
  1. 5
      Tools/nuget/make_pkg.proj

5
Tools/nuget/make_pkg.proj

@ -24,6 +24,8 @@
<PythonArguments>"$(PythonExe)" "$(MSBuildThisFileDirectory)\..\msi\make_zip.py"</PythonArguments>
<PythonArguments>$(PythonArguments) -t "$(IntermediateOutputPath)" -a $(ArchName)</PythonArguments>
<PipArguments>"$(IntermediateOutputPath)\python.exe" -B -c "import sys; sys.path.append('$(PySourcePath)\Lib'); import ensurepip; ensurepip._main()"</PipArguments>
<NugetArguments>"$(Nuget)" pack "$(MSBuildThisFileDirectory)\$(OutputName).nuspec"</NugetArguments>
<NugetArguments>$(NugetArguments) -BasePath "$(IntermediateOutputPath)"</NugetArguments>
<NugetArguments>$(NugetArguments) -OutputDirectory "$(OutputPath)\en-us"</NugetArguments>
@ -40,9 +42,10 @@ set VCREDIST_PATH=$(VS140COMNTOOLS)\..\..\VC\redist\$(Platform)\Microsoft.VC140.
</Target>
<Target Name="_Build">
<Exec Command="$(CleanCommand)" />
<Exec Command="$(Environment)
$(CleanCommand)
$(PythonArguments)" />
<Exec Command="$(PipArguments)" />
<Exec Command="$(NugetArguments)" />
</Target>

Loading…
Cancel
Save