码迷,mamicode.com
首页 >  
搜索关键字:deployment assembly    ( 2216个结果
反射的使用
namespace 反射{ class Program { static void Main(string[] args) { Assembly ass= Assembly.Load(@"反射");//找到程序集 v...
分类:其他好文   时间:2014-09-18 16:20:54    阅读次数:111
sign a third-party dll which don't have a strong name
Problem: Assembly generation failed -- Referenced assembly '' does not have a strong nameCause: this is due to you have referenced a third-party dll w...
分类:其他好文   时间:2014-09-18 16:05:34    阅读次数:264
IOS 工程所支持的版本 设置
如何设置 Base SDK 和 iOS Deployment Target ?http://leopard168.blog.163.com/blog/static/16847184420116159138181/在iPhone 开发中,时常被版本所困扰, 苹果公司总会定期发布 iPhone 开发包,...
分类:移动开发   时间:2014-09-18 12:53:13    阅读次数:343
Assembly 'Microsoft.Office.Interop.Excel
编译的时候报错,都无法通过编译:Assembly 'Microsoft.Office.Interop.Excel, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c' uses 'Microsoft.Vbe.Inte...
分类:其他好文   时间:2014-09-16 23:41:51    阅读次数:359
第六篇、WebSphere8.5 (商业级服务器)大规模集群
一、前言 上一篇中讲述了WebSphere的安装与应用,该版本的WAS一般都用于开发测试(有些小应用生产环境下也会用到),在生产中绝大部份使用的WebSphere Application Server Network Deployment简称为WASND,可做大规模的集群。本篇中将阐述商业级App....
分类:Web程序   时间:2014-09-16 23:39:11    阅读次数:694
第四篇、Tomcat 集群
1. 前言 该篇中测试的机器发生了变更,在第一篇中设置的ApacheDocumentRoot "d:/deployment"修改为了DocumentRoot d:/cluster 。这个不影响实际操作,just换了台电脑。 在第一篇中讲了apache整合tomcat的,该篇中将阐述tomc...
分类:其他好文   时间:2014-09-15 15:41:29    阅读次数:291
Powershell配置SharePoint环境
Powershell配置SharePoint环境1. 设置outgoing email:1) Powershell:$loadasm =[System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint")$SPGlobal...
分类:其他好文   时间:2014-09-14 21:57:57    阅读次数:198
C#程序集系列11,全局程序集缓存
全局程序集缓存(GAC:Global Assembly Cache)用来存放可能被多次使用的强名称程序集。当主程序需要加载程序集的时候,优先选择到全局程序集缓存中去找寻需要的程序集。 为什么需要全局程序集缓存?假设程序A引用B程序集,程序C也引用B程序集,在这种情况下,可以把B程序集放到一个全局程序...
分类:其他好文   时间:2014-09-14 15:20:57    阅读次数:307
ZOJ 3805 Machine
搜索.... Machine Time Limit: 2 Seconds      Memory Limit: 65536 KB In a typical assembly line, machines are connected one by one. The first machine's output product will be the second mac...
分类:其他好文   时间:2014-09-11 20:59:42    阅读次数:186
C# 在运行时动态创建类型
C# 在运行时动态的创建类型,这里是通过动态生成C#源代码,然后通过编译器编译成程序集的方式实现动态创建类型 public static Assembly NewAssembly() { //创建编译器实例。 provider = new CSharpCodeProvider(); //设置编译参....
分类:其他好文   时间:2014-09-10 17:09:10    阅读次数:178
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!