4 writes to Name
Microsoft.Build.Utilities.Core (1)
ApiContract.cs (1)
30Name = name;
Microsoft.Build.Utilities.UnitTests (3)
ToolLocationHelper_Tests.cs (3)
65string[] returnValue = ToolLocationHelper.GetApiContractReferences(new[] { new ApiContract { Name = "Foo", Version = "Bar" } }, tempDirectory); 81string[] returnValue = ToolLocationHelper.GetApiContractReferences(new[] { new ApiContract { Name = "Foo", Version = "Bar" } }, tempDirectory); 104string[] returnValue = ToolLocationHelper.GetApiContractReferences(new[] { new ApiContract { Name = "Foo", Version = "Bar" } }, tempDirectory, tempVersion);
6 references to Name
Microsoft.Build.Utilities.Core (2)
ToolLocationHelper.cs (2)
1136ErrorUtilities.DebugTraceMessage("GetApiContractReferences", "Gathering contract references for contract with name '{0}' and version '{1}", contract.Name, contract.Version); 1137string contractPath = Path.Combine(referencesRoot, contract.Name, contract.Version);
Microsoft.Build.Utilities.UnitTests (4)
PlatformManifest_Tests.cs (4)
217contract.Name.ShouldBe("System"); 245contracts[0].Name.ShouldBe("System"); 247contracts[1].Name.ShouldBe("Windows.Foundation"); 249contracts[2].Name.ShouldBe("Windows.Foundation.OtherStuff");