11 2014 档案
摘要:http://shazwazza.com/post/Developing-a-plugin-framework-in-ASPNET-with-medium-trust.aspxJanuary 7, 2011 10:06 Tweet I’ve recently spent quite ...
阅读全文
摘要:namespace MyRepository.Domain.Infrastructure{ public class Repository : IRepository where TEntity : class { protected BookStoreDbContext ...
阅读全文
摘要:copy /Y "$(TargetDir)$(ProjectName).dll" "$(SolutionDir)PluginMvcWeb\Bin\"// 获取程序的基目录。System.AppDomain.CurrentDomain.BaseDirectory@System.AppDomain.Cu...
阅读全文
摘要:使用 Assembly.LoadFile 加载程序集后 ,被加载的文件就会被锁定,之后就不能对其执行转移、删除等操作 为了解决次问题,我们可以先读取成字节流,然后转换成Assembly。代码如下:复制代码 public static Assembly LoadAssemblyFromFil...
阅读全文