File: SourceLanguage.cs
Web Access
Project: src\src\System.Windows.Forms.Analyzers\tests\UnitTests\System.Windows.Forms.Analyzers.Tests.csproj (System.Windows.Forms.Analyzers.Tests)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace System.Windows.Forms.Analyzers.Tests;
 
public enum SourceLanguage
{
    /// <summary>
    ///  This is the case of no extension added to the test input file, for example for manifest files.
    /// </summary>
    None,
    CSharp,
    VisualBasic
}