예제 #1
0
		public override SolutionItemConfiguration CreateConfiguration (string name)
		{
			var conf = new IPhoneProjectConfiguration (name);
			conf.CopyFrom (base.CreateConfiguration (name));
			
			if (conf.IsDevicePlatform) {
				conf.CodesignKey = DEV_CERT_PREFIX;
			} else if (conf.IsSimPlatform) {
				conf.MtouchLink = MtouchLinkMode.None;
			}
			conf.SanitizeAppName ();
			return conf;
		}
예제 #2
0
        public override SolutionItemConfiguration CreateConfiguration(string name)
        {
            var conf = new IPhoneProjectConfiguration(name);

            conf.CopyFrom(base.CreateConfiguration(name));

            if (conf.Platform == PLAT_IPHONE)
            {
                conf.CodesignKey = Keychain.DEV_CERT_PREFIX;
            }
            else if (conf.Platform == PLAT_SIM)
            {
                conf.MtouchLink = MtouchLinkMode.None;
            }
            conf.SanitizeAppName();
            return(conf);
        }
예제 #3
0
		public override SolutionItemConfiguration CreateConfiguration (string name)
		{
			var conf = new IPhoneProjectConfiguration (name);
			conf.CopyFrom (base.CreateConfiguration (name));
			
			if (conf.Platform == PLAT_IPHONE) {
				conf.CodesignKey = DEV_CERT_PREFIX;
			} else if (conf.Platform == PLAT_SIM) {
				conf.MtouchLink = MtouchLinkMode.None;
			}
			conf.SanitizeAppName ();
			return conf;
		}