4 writes to Name
Microsoft.Build.Utilities.Core (1)
ApiContract.cs (1)
32Name = name;
Microsoft.Build.Utilities.UnitTests (3)
ToolLocationHelper_Tests.cs (3)
68string[] returnValue = ToolLocationHelper.GetApiContractReferences(new[] { new ApiContract { Name = "Foo", Version = "Bar" } }, tempDirectory); 84string[] returnValue = ToolLocationHelper.GetApiContractReferences(new[] { new ApiContract { Name = "Foo", Version = "Bar" } }, tempDirectory); 107string[] returnValue = ToolLocationHelper.GetApiContractReferences(new[] { new ApiContract { Name = "Foo", Version = "Bar" } }, tempDirectory, tempVersion);
6 references to Name
Microsoft.Build.Utilities.Core (2)
ToolLocationHelper.cs (2)
1131ErrorUtilities.DebugTraceMessage("GetApiContractReferences", "Gathering contract references for contract with name '{0}' and version '{1}", contract.Name, contract.Version); 1132string contractPath = Path.Combine(referencesRoot, contract.Name, contract.Version);
Microsoft.Build.Utilities.UnitTests (4)
PlatformManifest_Tests.cs (4)
216contract.Name.ShouldBe("System"); 244contracts[0].Name.ShouldBe("System"); 246contracts[1].Name.ShouldBe("Windows.Foundation"); 248contracts[2].Name.ShouldBe("Windows.Foundation.OtherStuff");