4 writes to Version
Microsoft.Build.Utilities.Core (1)
ApiContract.cs (1)
33
Version
= version;
Microsoft.Build.Utilities.UnitTests (3)
ToolLocationHelper_Tests.cs (3)
68
string[] returnValue = ToolLocationHelper.GetApiContractReferences(new[] { new ApiContract { Name = "Foo",
Version
= "Bar" } }, tempDirectory);
84
string[] returnValue = ToolLocationHelper.GetApiContractReferences(new[] { new ApiContract { Name = "Foo",
Version
= "Bar" } }, tempDirectory);
107
string[] returnValue = ToolLocationHelper.GetApiContractReferences(new[] { new ApiContract { Name = "Foo",
Version
= "Bar" } }, tempDirectory, tempVersion);
6 references to Version
Microsoft.Build.Utilities.Core (2)
ToolLocationHelper.cs (2)
1131
ErrorUtilities.DebugTraceMessage("GetApiContractReferences", "Gathering contract references for contract with name '{0}' and version '{1}", contract.Name, contract.
Version
);
1132
string contractPath = Path.Combine(referencesRoot, contract.Name, contract.
Version
);
Microsoft.Build.Utilities.UnitTests (4)
PlatformManifest_Tests.cs (4)
217
contract.
Version
.ShouldBe(string.Empty);
245
contracts[0].
Version
.ShouldBe("1.2.0.4");
247
contracts[1].
Version
.ShouldBe("1.0.0.0");
249
contracts[2].
Version
.ShouldBe("1.5.0.0");