1 write to Type
Microsoft.Extensions.DependencyModel (1)
Library.cs (1)
57
Type
= type;
12 references to Type
dotnet-svcutil-lib (1)
Shared\MSBuildProj.cs (1)
904
switch (rtLib.
Type
)
Microsoft.AspNetCore.Mvc.Testing (1)
WebApplicationFactory.cs (1)
339
var projects = context.CompileLibraries.Where(l => l.
Type
== "project");
Microsoft.Extensions.DependencyModel (10)
DependencyContextWriter.cs (3)
162
Debug.Assert(compilationLibrary.
Type
== runtimeLibrary.
Type
);
422
jsonWriter.WriteString(DependencyContextStrings.TypePropertyName, library.
Type
);
Resolution\AppBaseCompilationAssemblyResolver.cs (5)
48
bool isProject = string.Equals(library.
Type
, "project", StringComparison.OrdinalIgnoreCase) ||
49
string.Equals(library.
Type
, "msbuildproject", StringComparison.OrdinalIgnoreCase);
51
bool isPackage = string.Equals(library.
Type
, "package", StringComparison.OrdinalIgnoreCase);
52
bool isReferenceAssembly = string.Equals(library.
Type
, "referenceassembly", StringComparison.OrdinalIgnoreCase);
56
!string.Equals(library.
Type
, "reference", StringComparison.OrdinalIgnoreCase))
Resolution\PackageCompilationAssemblyResolver.cs (1)
74
!string.Equals(library.
Type
, "package", StringComparison.OrdinalIgnoreCase))
Resolution\ReferenceAssemblyPathResolver.cs (1)
48
if (!string.Equals(library.
Type
, "referenceassembly", StringComparison.OrdinalIgnoreCase))