Windows批处理文件将文件夹中的所有dll部署到GAC
我正在开发一个 ASP.NET 项目,其中在一个文件夹中创建了一堆 dll。我需要编写一个cmd或bat文件来获取该文件夹中的所有dll并对其进行GACUTIL。那么如何循环一个文件夹中的所有dll呢?
I'm working on an ASP.NET project where I've a bunch of dlls created in a folder. I need to write a cmd or bat file to take all the dlls in that folder and GACUTIL it. So how can loop all the dlls in a folder?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这就是我用来部署给定文件夹中所有 sql 文件的方法,如果需要,您可以调整它以作用于 dll 文件;
This is what I am using to deploy all sql files in a given folder, you could adjust it to act on dll files if needs be;
如果有人正在寻找 powershell 的方法。
If anybody is looking for the powershell way of doing it.