Inheritance: MonoDevelop.Projects.ProjectParameters
Ejemplo n.º 1
0
		void DefineSymbols (ConfigurationParameters pars, XmlElement projectOptions, string attributeName)
		{
			if (projectOptions != null) {
				string symbols = projectOptions.GetAttribute (attributeName);
				if (!String.IsNullOrEmpty (symbols)) {
					pars.AddDefineSymbol (symbols);
				}
			}
		}