您好我正在使用MSBuild Extension Pack将Windows服务安装到远程计算机上。我是通过命令提示符测试它并成功安装了该服务。我现在想使用MSBuild参数调用此扩展包。
我的代码如下所示:
<Project ToolsVersion="4.0" DefaultTargets="Default" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<RemoteMachine>DevRemote</RemoteMachine>
<RemoteUser>RemoteDomain\RemoteUser</RemoteUser>
<RemoteUserPassword>RemotePassword</RemoteUserPassword>
</PropertyGroup>
<Import Project="$(MSBuildExtensionsPath)\ExtensionPack\4.0\MSBuild.ExtensionPack.tasks"/>
<Target Name="Default">
<MSBuild.ExtensionPack.Computer.WindowsService TaskAction="Install" ServiceName="Backup Management" ServicePath="c:\WINDOWS\system32\taskmgr.exe" RemoteUser="$(RemoteUser)" RemoteUserPassword="$(RemoteUserPassword)" MachineName="$(RemoteMachine)" />
</Target>
我怎么能做到这一点?根据我的猜测,构建参数看起来像这样:
/p:DeployOnBuild=True /p:DeployWinService=true;TargetWinServiceHost=DevRemote
但我不确定这些论点。任何帮助真的很感激。
答案 0 :(得分:3)
我通常有两个文件,一个是属性,另一个是目标。我还尝试将所有需要的属性存储在一个文件中,因此不需要从命令行传递任何内容。
如果您使用目标main.msbuild
调用该文件,则可以将其称为
msbuild main.msbuild /t:Default
其中/t
开关对应于目标名称,这是您指定要执行的目标的方式,因此不需要/p
的参数。
从examples开始,这是默认目标的样子
<Target Name="Default">
<!-- Install a service on a Remote Machine -->
<MSBuild.ExtensionPack.Computer.WindowsService
TaskAction="Install"
ServiceName="__TestService1"
User="$(User)"
Password="$(password)"
ServicePath="c:\WINDOWS\system32\taskmgr.exe"
RemoteUser="$(RemoteUser)"
RemoteUserPassword="$(RemoteUserPassword)"
MachineName="$(RemoteMachine)" />
</Target>