File: DefaultIdentityTokenCredentialOptions.cs
Web Access
Project: src\src\Microsoft.DotNet.ArcadeAzureIntegration\Microsoft.DotNet.ArcadeAzureIntegration.csproj (Microsoft.DotNet.ArcadeAzureIntegration)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
#if !NET472_OR_GREATER

#nullable enable

namespace Microsoft.DotNet.ArcadeAzureIntegration;
 
 
public class DefaultIdentityTokenCredentialOptions
{
    public bool UseAzurePipelineCredentialAloneIfConfigured { get; set; } = true;
    public string? ManagedIdentityClientId { get; set; } = null;
    public bool ExcludeAzureCliCredential { get; set; }
    public bool DisableShortCache { get; set; }
}
 
#endif