You've already forked linux-packaging-mono
Imported Upstream version 3.10.0
Former-commit-id: 172c8e3c300b39d5785c7a3e8dfb08ebdbc1a99b
This commit is contained in:
@@ -595,6 +595,10 @@ namespace Microsoft.Build.Internal
|
||||
foreach (DictionaryEntry p in globalProperties)
|
||||
globalPropertiesThatMakeSense [(string) p.Key] = (string) p.Value;
|
||||
var projectToBuild = new ProjectInstance (ProjectRootElement.Create (XmlReader.Create (projectFileName)), globalPropertiesThatMakeSense, toolsVersion, Projects);
|
||||
// Not very sure if ALL of these properties should be added, but some are certainly needed.
|
||||
foreach (var p in this.project.Properties.Where (p => !globalProperties.Contains (p.Name)))
|
||||
projectToBuild.SetProperty (p.Name, p.EvaluatedValue);
|
||||
|
||||
IDictionary<string,TargetResult> outs;
|
||||
var ret = projectToBuild.Build (targetNames ?? new string [] {"Build"}, Projects.Loggers, out outs);
|
||||
foreach (var p in outs)
|
||||
|
||||
Reference in New Issue
Block a user