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