|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
namespace Microsoft.CodeAnalysis.UnusedReferences;
internal enum ReferenceType
{
/// <summary>
/// Unknown reference type
/// </summary>
Unknown,
/// <summary>
/// Individual assembly reference `<Reference ... />`
/// </summary>
Assembly,
/// <summary>
/// NuGet package reference `<PackageReference ... />`
/// </summary>
Package,
/// <summary>
/// Project reference `<ProjectReference ... />`
/// </summary>
Project,
}
|