10 references to SupportPhase
dotnet (1)
Commands\Sdk\Check\BundleOutputWriter.cs (1)
27?.SupportPhase.Equals(SupportPhase.Maintenance);
Microsoft.Deployment.DotNet.Releases (9)
Product.cs (8)
127public SupportPhase SupportPhase 131} = SupportPhase.Unknown; 134/// <see langword="true"/> if the support phase is not <see cref="SupportPhase.EOL"/> 155Enum.TryParse(value.GetString()?.Replace("-", ""), ignoreCase: true, out SupportPhase supportPhase) ? supportPhase : SupportPhase.Unknown : 156SupportPhase.Unknown; 209/// <see langword="true"/> if the support phase is <see cref="SupportPhase.EOL"/> 216return SupportPhase == SupportPhase.EOL || EndOfLifeDate?.Date <= DateTime.Now.Date;
ProductCollection.cs (1)
35public IEnumerable<SupportPhase> GetSupportPhases()