1 instantiation of NuGetLicenseException
NuGet.Packaging (1)
Licenses\NuGetLicenseException.cs (1)
38new NuGetLicenseException(exceptionIdentifier) :
5 references to NuGetLicenseException
NuGet.Packaging (5)
Licenses\NuGetLicenseException.cs (1)
31internal static NuGetLicenseException ParseIdentifier(string exceptionIdentifier)
Licenses\NuGetLicenseExpressionExtensions.cs (1)
47public static void OnEachLeafNode(this NuGetLicenseExpression expression, Action<NuGetLicense>? licenseProcessor, Action<NuGetLicenseException>? exceptionProcessor)
Licenses\NuGetLicenseExpressionParser.cs (1)
181var withNode = new WithOperator(NuGetLicense.ParseIdentifier(left.Value), NuGetLicenseException.ParseIdentifier(right.Value));
Licenses\WithOperator.cs (2)
14public WithOperator(NuGetLicense license, NuGetLicenseException exception) : 29public NuGetLicenseException Exception { get; private set; }