6 references to GlobalProperties
dotnet-svcutil-lib (6)
Shared\MSBuildProj.cs (6)
896
var depsFile = this.
GlobalProperties
.TryGetValue("Configuration", out var activeConfiguration) && !string.IsNullOrWhiteSpace(activeConfiguration) ?
977
if (!this.
GlobalProperties
.Any(p => p.Key == "TargetFramework"))
979
this.
GlobalProperties
["TargetFramework"] = this.TargetFrameworks.FirstOrDefault();
982
if (!this.
GlobalProperties
.Any(p => p.Key == "SdkVersion"))
984
this.
GlobalProperties
["SdkVersion"] = this.SdkVersion;
993
propertyTable = await _propertyResolver.EvaluateProjectPropertiesAsync(this.FullPath, this.TargetFramework, propertyNames, this.
GlobalProperties
, logger, cancellationToken).ConfigureAwait(false);