在 buildserver 上针对基于 iis 的 Web 项目运行 StyleCop
如何在构建服务器上针对基于 iis 的 Web 项目运行 stylecop? Buildserver 以持续集成的方式运行,我希望它能够自动化。
有了库,我可以向 .csproj 添加几行,然后就完成了。 我相信这是一个网站应用程序项目。
How do I run stylecop against an iis based webproject on a buildserver?
Buildserver runs in continuous integration and I would like this automated.
With a library I can add a few lines to the .csproj and its done. I believe it to be a website application project.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它是 Visual Studio 中的 Web 应用程序项目还是网站? 使用前一个选项,它被编译成程序集,因此您可以在构建程序集时始终从构建脚本运行 StyleCop。
或者,您可以从 VisualStudio 中将 StyleCop 作为插件运行,但您可能在这里要求自动化。 我认为这完全取决于您的构建过程。 有多种构建配置,因此请详细说明您在此构建服务器上实际执行的操作。 持续集成?
Is it a web application project or a web site in Visual Studio? With the former option, it is compiled into an assembly, so you could always run StyleCop from the build scripts when building the assembly.
Alternatively you could run StyleCop as a plugin from within VisualStudio, but you're probably asking for automation here. It all depends on your build process, I think. There are various build configurations, so please elaborate a bit more on what are you actually doing on this build server. Continuous integration?
项目类型不可能,需要转换项目。
Not possible with the project type, projects need to be converted.