Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法获得我的解决方案的所有 dll 和我的 IIS 网站的所有 dll 的最后更新日期?
如果 iis dll 的最后更新日期晚于解决方案中的 dll,请确保我不会白白部署它。
FileInfo fi = new FileInfo(@"foo.dll"); DateTime result = fi.CreationTime;
但是,您最好检索程序集的版本信息。