12 references to XMakeAttributes
Microsoft.Build.Tasks.Core (12)
AddToWin32Manifest.cs (2)
216
if (string.IsNullOrEmpty(winSettingsNode.GetAttribute(
XMakeAttributes
.xmlns)))
218
winSettingsNode.SetAttribute(
XMakeAttributes
.xmlns, WindowsSettingsNamespace);
CommunicationsUtilities.cs (8)
865
architectureFlagToSet =
XMakeAttributes
.GetCurrentMSBuildArchitecture();
869
ErrorUtilities.VerifyThrow(taskHostParameters.TryGetValue(
XMakeAttributes
.runtime, out string runtimeVersion), "Should always have an explicit runtime when we call this method.");
870
ErrorUtilities.VerifyThrow(taskHostParameters.TryGetValue(
XMakeAttributes
.architecture, out string architecture), "Should always have an explicit architecture when we call this method.");
872
if (runtimeVersion.Equals(
XMakeAttributes
.MSBuildRuntimeValues.clr2, StringComparison.OrdinalIgnoreCase))
876
else if (runtimeVersion.Equals(
XMakeAttributes
.MSBuildRuntimeValues.clr4, StringComparison.OrdinalIgnoreCase))
880
else if (runtimeVersion.Equals(
XMakeAttributes
.MSBuildRuntimeValues.net, StringComparison.OrdinalIgnoreCase))
895
if (architectureFlagToSet.Equals(
XMakeAttributes
.MSBuildArchitectureValues.x64, StringComparison.OrdinalIgnoreCase))
899
else if (architectureFlagToSet.Equals(
XMakeAttributes
.MSBuildArchitectureValues.arm64, StringComparison.OrdinalIgnoreCase))
CreateItem.cs (2)
64
(Include, bool expandedInclude) = TryExpandWildcards(Include,
XMakeAttributes
.include);
65
(Exclude, bool expandedExclude) = TryExpandWildcards(Exclude,
XMakeAttributes
.exclude);