2012-04-21 5 views

答えて

0

あなたがこれを行うことができますので、あなたは、PowerShellを用意してください。

# ================================================================== 
_PS=${WINDIR}\System32\WindowsPowerShell\v1.0\powershell.exe 
OAUTHCS_URL=https://cropperplugins.svn.codeplex.com/svn/Cropper.Plugins/OAuth1.0/OAuth.cs 

OAuth.cs: 
    $(_PS) -Command "& {(new-object System.Net.WebClient).DownloadFile('$(OAUTHCS_URL)','OAuth.cs')}" 

あなたはPowerShellに依存して好きではない場合、あなたはwgetのを使用することができますこのようなWindows用のコマンドラインツール、:使用可能なwgetのツールの

CSC=\Windows\Microsoft.NET\Framework\v4.0.30319\csc.exe 

Oauth.cs: wget.exe 
    .\wget.exe $(OAUTHCS_URL) 

wget.exe: wget.cs $(CSC) 
    $(CSC) /t:exe /debug+ /out:wget.exe wget.cs 

ソースがhere可能です。

関連する問題