以编程方式构建和发布 .net Web 应用程序
我正在构建一个应用程序,需要能够通过命令将自身发布到指定目录。
我正在寻找类似
System.BuildSystem.Build(<project file>, 'release');
System.BuildSystem.Publish(<project file>, <destination folder>);
这可能吗?
I'm building an application that needs to be able to, on a command, publish itself to a specified directory.
I'm looking for something like
System.BuildSystem.Build(<project file>, 'release');
System.BuildSystem.Publish(<project file>, <destination folder>);
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看 msbuild 或 nant。就我个人而言,我使用 msbuild 将版本推送到我们的 QA 环境并创建要推广到生产的包。
例如,您的应用程序可以调用运行 msbuild 脚本的批处理文件来生成和发布版本。
Take a look at msbuild or nant. Personally, I use msbuild to push releases to our QA environment and create packages to be rolled out to production.
Your application could, for example, call batch files that run msbuild scripts to produce and publish builds.