1 write to Version
dotnet-svcutil-lib (1)
Shared\ProjectDependency.cs (1)
147
this.
Version
= packageVersion;
9 references to Version
dotnet-svcutil-lib (5)
Shared\MSBuildProj.cs (3)
544
this.PacakgeReferenceGroup.Add(new XElement("PackageReference", new XAttribute("Include", dependency.Name), new XAttribute("Version", dependency.
Version
)));
547
this.ReferenceGroup.Add(new XElement("DotNetCliToolReference", new XAttribute("Include", dependency.Name), new XAttribute("Version", dependency.
Version
)));
568
basePath = $"$(NuGetPackageRoot){dependency.Name}\\{dependency.
Version
}";
Shared\ProjectDependency.cs (2)
155
string.Format(CultureInfo.InvariantCulture, "{0}, {{{1}, {2}}}", this.AssemblyName, this.Name, this.
Version
) :
413
return new ProjectDependency(this.FullPath, this.Name, this.
Version
, this.DependencyType);
dotnet-svcutil-lib.Tests (4)
MSBuildProjTests.cs (4)
45
Assert.Contains(build.Dependencies, x => x.Name == "xunit" && x.
Version
== "2.4.1");
65
Assert.Contains(build.Dependencies, x => x.Name == "xunit" && x.
Version
== "2.4.1");
84
Assert.Contains(build.Dependencies, x => x.Name == "xunit" && x.
Version
== "2.4.1");
104
Assert.Contains(build.Dependencies, x => x.Name == "xunit" && x.
Version
== "2.4.1");