所以在powershell中,我知道如何通过使用“> test.txt”或使用Out-File来写入文件,但我正在尝试在Powershell中创建一个函数。
function Create New Nuspec { out-file test.txt
<id>$id</id>
<authors>CME</authors>
<owners>CME</owners>
<version>$version</version>
<description>$filepath</desciption>
}
所以我试图把这个函数输出到一个文件,最终是一个XML文件但是现在我只是想让它工作。
答案 0 :(得分:2)
也许是这样的?
function CreateNewNuspec {
param ($outfile, $id, $version, $filepath)
@"
<id>$id</id>
<authors>CME</authors>
<owners>CME</owners>
<version>$version</version>
<description>$filepath</description>
"@ | Out-File $outfile
}
CreateNewNuspec test.txt "ID1" "1.0" "filename.txt"