上一页 1 ··· 7 8 9 10 11 12 13 14 15 16 下一页
摘要: 首先可以下载自带的部署例子PublishReports.zip,在PublishReports.rss中,需要修改相关的报表项目信息:'VariablesneedtobemodifiedDimparentFolderAsString="fooFolder"DimconnectStringasString="datasource=(local);initialcatalog=Test"'ConnectStringDimDataSourceName="Test_DB"DimuserNameasString="ad 阅读全文
posted @ 2012-11-15 10:27 717806198 阅读(344) 评论(0) 推荐(0) 编辑
摘要: private void RunBat(string batPath){Process pro = new Process();FileInfo file = new FileInfo(batPath);pro.StartInfo.WorkingDirectory = file.Directory.FullName;pro.StartInfo.FileName = batPath;pro.StartInfo.CreateNoWindow = false;pro.Start();pro.WaitForExit();}Process proc = new Process();proc.StartI 阅读全文
posted @ 2012-11-14 11:37 717806198 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 1.stsadm.exe -o deletesolution -name Test.wsp -override //强制删除解决方案2.stsadm.exe -o addsolution -filename D:\Test\Bin\Test.wsp//安装wsp将solution添加到sharepoint中3.stsadm -o deploysolution -name Test.wsp -urlhttp://localhost:1143-allowgacdeployment -immediate //部署wsp部署到solution中stsadm.exe -o deploysolution 阅读全文
posted @ 2012-11-13 13:48 717806198 阅读(199) 评论(0) 推荐(0) 编辑
摘要: <cruisecontrol xmlns:cb="urn:ccnet.config.builder"><project> <name>Hello</name> <webURL>http://localhost/ccnet/server/local/project/Hello/ViewProjectReport.aspx</webURL> <triggers><intervalTrigger seconds="3600"/> <scheduleTrigge 阅读全文
posted @ 2012-11-13 10:59 717806198 阅读(495) 评论(0) 推荐(0) 编辑
摘要: 首先填写虚拟机名moss,选择类型,版本为windows server 2008 (64)设置内存大小选择虚拟机上文件的存放位置,并设置硬盘大小新建完后可以在设置中修改相关设置新建完虚拟机就要进行安装操作系统,选择虚拟光驱,重新启动进行安装操作系统分配光驱选择虚拟光驱操作系统安装完成后虚拟机即可使用 阅读全文
posted @ 2012-11-13 08:58 717806198 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 下载http://www.nunit.org/参考:http://www.cnblogs.com/confach/archive/2005/08/14/177817.htmlhttp://wenku.baidu.com/view/6740b4370b4c2e3f57276365.html 阅读全文
posted @ 2012-11-07 10:28 717806198 阅读(213) 评论(0) 推荐(0) 编辑
摘要: ncover.console.exe "C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\MSTest.exe" /testcontainer:"C:\Users\xmwei\Desktop\Test\TestProject1\bin\Debug\TestProject1.dll" /resultsfile:C:\WebSite\Hello\Log\testResults.trx //p "Hello" //x C:\WebSite\Hello\Log\co 阅读全文
posted @ 2012-11-06 17:01 717806198 阅读(604) 评论(0) 推荐(0) 编辑
摘要: 下载http://www.microsoft.com/en-us/download/confirmation.aspx?id=6544参考;http://blog.csdn.net/xuexiaodong2009/article/details/6691789http://msdn.microsoft.com/en-us/library/bb429476%28v=vs.80%29.aspx 阅读全文
posted @ 2012-11-06 15:11 717806198 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 我们做远程部署时有时会希望不改变web.config配置文件,那么在批处理文件中要执行skip命令msdeploy -source:contentpath="C:\WebSite\Hello\WorkingDirectory\Hello\obj\Debug\Package\PackageTmp\" -dest:contentpath="D:\deploy" -verb:sync -skip:absolutePath=web.config参考文件http://blog.miniasp.com/post/2010/09/01/MSDeploy-Skip-Co 阅读全文
posted @ 2012-11-06 13:35 717806198 阅读(649) 评论(0) 推荐(0) 编辑
摘要: 服务程序(插件)<serverPlugins> <serverReportServerPlugin /> <serverLogServerPlugin /> <serverInformationServerPlugin /> <queueStatusServerPlugin /> <projectConfigurationServerPlugin /> </serverPlugins>项目程序(插件) <projectPlugins> ... 阅读全文
posted @ 2012-11-06 09:14 717806198 阅读(325) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 16 下一页