1 write to DependencyType
dotnet-svcutil-lib (1)
Shared\ProjectDependency.cs (1)
146this.DependencyType = dependencyType;
15 references to DependencyType
dotnet-svcutil-lib (15)
Shared\MSBuildProj.cs (3)
522switch (d.DependencyType) 538switch (dependency.DependencyType) 572switch (dependency.DependencyType)
Shared\ProjectDependency.cs (12)
154this.ReferenceIdentity = this.DependencyType == ProjectDependencyType.Package || this.DependencyType == ProjectDependencyType.Tool || !string.IsNullOrWhiteSpace(packageName) ? 398if (other.DependencyType == ProjectDependencyType.Binary) 400return this.DependencyType == other.DependencyType ? 402this.DependencyType > other.DependencyType ? 1 : -1; 405return this.DependencyType == other.DependencyType ? 407this.DependencyType > other.DependencyType ? 1 : -1; 413return new ProjectDependency(this.FullPath, this.Name, this.Version, this.DependencyType);