Jenkins的使用(二)-------MSBuild

六、构建

左边菜单栏    Manage Jenkins --->Manage Plugins--->可选插件,然后搜索 MSBuild,并安装

Jenkins的使用(二)-------MSBuild

 

 

 

添加ssh插件后新增了两种

Jenkins的使用(二)-------MSBuild

1.使用MSBuidl插件编译Visual Studio项目或解决方案

Manage Jenkins---->Global Tool Configuration --->MSBuild设置相关属性 Name: .net framework v4.0.30319 Path To MSBuild: C:\Windows\Microsoft.NET\Framework\v4.0.30319(本服务器中已有的最高版本) Jenkins的使用(二)-------MSBuild

 

 快捷键 Win + Pause (控制面板\系统和安全\系统)  然后点击高级系统设置

Jenkins的使用(二)-------MSBuild

 

 右下角环境变量

Jenkins的使用(二)-------MSBuild

 

 找到Path,并点击编辑,然后输入 ; 号分隔,在输入MSBuild的路径 C:\Windows\Microsoft.NET\Framework\v4.0.30319

最后 Win + R 输入cmd,在其中输入msbuild,出现下图则安装配置成功

Jenkins的使用(二)-------MSBuild

在回到job配置页面构建--->选择 Build a Visual Studio project or solution using MSBuild

MSBuild version :  选择刚安装的版本或默认版本 MSBuild Build File : 当前   jenkins的安装目录\workspace\job名称\项目的csproj文件或者项目的.sln文件
Command Line Arguments: /t:Build                                                                 //表示默认编译的target名称,还可选Rebuild /p:Configuration=Release                                  // 表示编译 Release 版本 /p:VisualStudioVersion=14.0                              //表示VS2015,可根据自己项目填写 /p:WebProjectOutputDir=C:\WebSite_Publish\TestMsBuild   //编译后输出文件地址 /p:OutputPath=C:\WebSite_Publish\TestMsBuild\bin   //编译dll后输出文件地址

Jenkins的使用(二)-------MSBuild

 

我使用的是vs2015,但是服务器是vs2010,此时就需要在服务器安装对应的BuildTools_Full.exe.

使用中遇到的问题: 编译项目后可能提示

Jenkins的使用(二)-------MSBuild

 

 

 查看服务器是否安装对应版本的.net Framework 的(我需要4.5 查看没安装,去下载了安装.但是提示

Jenkins的使用(二)-------MSBuild

但是我在注册表中并没有查看到4.5的(或在文件地址中输入路径查看,地址:%systemroot%\Microsoft.Net\Framework)

Jenkins的使用(二)-------MSBuild

 

 

Jenkins的使用(二)-------MSBuild 我的服务器是winserver2012 说自带的有.net Framework 4.5.最后我只能试试把本地已有的文件 Jenkins的使用(二)-------MSBuild

 

 

Jenkins的使用(二)-------MSBuild 复制粘贴到服务器上对应的路径去 Jenkins的使用(二)-------MSBuild

 

 

Jenkins的使用(二)-------MSBuild 然后编译就没有出现上图的警告了.
上一篇:c#-从命令行完全构建Monotouch应用程序捆绑的完整步骤是什么?


下一篇:首页> C#>如何使T4ReferencePath工作?