VS 2008 或 2010 Express 版本是否附带任何可从控制台 http 下载实用程序使用的工具?
我想创建一个简单的项目设置脚本。我假设用户(拥有一台装有 VS2008 或 2010 (Express) 的 PC)可以从互联网上下载带有我的设置脚本的 .BAT 文件。我想知道 VS 是否有任何标准工具能够通过 BAT 文件(从 VS consol 运行)中的某些 commatnd 调用上通过 http 下载我的项目设置源和项目文件所需的文件?
I want to create a simple project setup script. I assume user (which owns a PC with VS2008 or 2010 on board (Express)) can download a .BAT file with my set up script from the internet. I wonder is there any standart utill that comes with VS that would be capable to download needed for my project setup source and project files via http on some commatnd call in BAT file (which is ran from VS consol)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有。我想你应该去某个地方
做一个 6 行 C# 程序,例如下载素数到 100k:
编译:
csc.exe Downloader.cs
;瞧,极简主义wget.net
(在 Mono 上,使用gmcs.exe Downloader.cs
。这两个可执行文件都可以在 Linux、Solaris 和 MacO 上的 Mono 上运行。使用例如
Downloader.exe“http://www.mathsisfun.com/includes/primes-to-100k.zip”“http://www.mathsisfun.com/includes/”调用它primes-to-200k.zip" ...
TODO:错误处理
使用 NuGet(下载独立 .exe)
我的建议是安装某种 UNIX shell + userland 子集。
Google 搜索
wget.exe
+windows
,你会发现它们HTH
nope. I suppose you should get somewhere
doing a 6-line C# program, e.g. to download prime numbers to 100k:
Compile:
csc.exe Downloader.cs
; voilà, minimalistwget.net
(on Mono, usegmcs.exe Downloader.cs
. Both executables will run on Mono on Linux, Solaris and MacOs just as well.Call it with e.g.
Downloader.exe "http://www.mathsisfun.com/includes/primes-to-100k.zip" "http://www.mathsisfun.com/includes/primes-to-200k.zip" ...
TODO: error handling
using NuGet (download the standalone .exe)
My recommendation is to install some kind of UNIX shell + userland subset. Weapon of choice: Cygwin (http://cygwin.com), but several others exist (UnxUtils, MingW ports and dozens others)
Google for
wget.exe
+windows
and you shall find themHTH