internal protected virtual void Read (IMSBuildEvaluatedPropertyCollection pset, string toolsVersion) { evaluatedProperties = pset; intermediateOutputDirectory = pset.GetPathValue ("IntermediateOutputPath"); outputDirectory = pset.GetPathValue ("OutputPath", defaultValue:"." + Path.DirectorySeparatorChar); debugMode = pset.GetValue<bool> ("DebugSymbols", false); pauseConsoleOutput = pset.GetValue ("ConsolePause", true); externalConsole = pset.GetValue<bool> ("ExternalConsole"); commandLineParameters = pset.GetValue ("Commandlineparameters", ""); runWithWarnings = pset.GetValue ("RunWithWarnings", true); // Special case: when DebugType=none, xbuild returns an empty string debugType = pset.GetValue ("DebugType"); if (string.IsNullOrEmpty (debugType)) { debugType = "none"; debugTypeReadAsEmpty = true; } debugTypeWasNone = debugType == "none"; var svars = pset.GetValue ("EnvironmentVariables"); ParseEnvironmentVariables (svars, environmentVariables); // Kep a clone of the loaded env vars, so we can check if they have changed when saving loadedEnvironmentVariables = new Dictionary<string, string> (environmentVariables); pset.ReadObjectProperties (this, GetType (), true); }
internal protected virtual void Read (IMSBuildEvaluatedPropertyCollection pset, string toolsVersion) { pset.ReadObjectProperties (this, GetType (), true); }
protected override void Read (IMSBuildEvaluatedPropertyCollection pset, string toolsVersion) { base.Read (pset, toolsVersion); var prop = pset.GetProperty ("GenerateDocumentation"); if (prop != null && documentationFile != null) { if (prop.GetValue<bool> ()) documentationFile = ParentConfiguration.CompiledOutputName.ChangeExtension (".xml"); else documentationFile = null; } optimize = pset.GetValue ("Optimize", (bool?)null); }
protected override void OnReadConfiguration (ProgressMonitor monitor, ProjectConfiguration config, IMSBuildEvaluatedPropertyCollection pset) { base.OnReadConfiguration (monitor, config, pset); // Backwards compatibility. Move parameters to the project parameters object var prop = pset.GetProperty ("ApplicationIcon"); if (prop != null) win32Icon = prop.GetPathValue (); prop = pset.GetProperty ("Win32Resource"); if (prop != null) win32Resource = prop.GetPathValue (); prop = pset.GetProperty ("StartupObject"); if (prop != null) mainclass = prop.Value; prop = pset.GetProperty ("CodePage"); if (prop != null) codePage = int.Parse (prop.Value); }
internal protected virtual void OnReadConfiguration (ProgressMonitor monitor, ProjectConfiguration config, IMSBuildEvaluatedPropertyCollection pset) { next.OnReadConfiguration (monitor, config, pset); }