We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 998507c commit d969cebCopy full SHA for d969ceb
setup.py
@@ -229,6 +229,10 @@ def _install_packages(self):
229
nuget = "mono %s" % nuget
230
use_shell = True
231
232
+ cmd = "%s update -self" % nuget
233
+ self.announce("Updating NuGet: %s" % cmd)
234
+ check_call(cmd, shell=use_shell)
235
+
236
cmd = "%s restore pythonnet.sln -o packages" % nuget
237
self.announce("Installing packages: %s" % cmd)
238
check_call(cmd, shell=use_shell)
0 commit comments