| File: CertificateGenerator.cs | Web Access |
| Project: src\aspnetcore\src\Tools\FirstRunCertGenerator\src\Microsoft.AspNetCore.DeveloperCertificates.XPlat.csproj (Microsoft.AspNetCore.DeveloperCertificates.XPlat) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; using Microsoft.AspNetCore.Certificates.Generation; namespace Microsoft.AspNetCore.DeveloperCertificates.XPlat; public static class CertificateGenerator { public static void GenerateAspNetHttpsCertificate() { var manager = CertificateManager.Instance; var now = DateTimeOffset.Now; manager.EnsureAspNetCoreHttpsDevelopmentCertificate(now, now.AddYears(1), isInteractive: false); } }