All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonarsource.sonarlint.omnisharp.OmnisharpPlugin Maven / Gradle / Ivy

There is a newer version: 1.26.0.100277
Show newest version
/*
 * SonarOmnisharp
 * Copyright (C) 2021-2024 SonarSource SA
 * mailto:info AT sonarsource DOT com
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 3 of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */
package org.sonarsource.sonarlint.omnisharp;

import org.sonar.api.Plugin;
import org.sonar.api.SonarProduct;
import org.sonarsource.sonarlint.omnisharp.protocol.OmnisharpEndpoints;
import org.sonarsource.sonarlint.omnisharp.protocol.OmnisharpResponseProcessor;

public class OmnisharpPlugin implements Plugin {

  static final String LANGUAGE_KEY = "cs";
  static final String LANGUAGE_NAME = "C#";

  static final String REPOSITORY_KEY = "csharpsquid";
  static final String REPOSITORY_NAME = "SonarAnalyzer";
  static final String PLUGIN_KEY = "csharp";

  private static final String PROP_PREFIX = "sonar.";
  static final String FILE_SUFFIXES_KEY = PROP_PREFIX + LANGUAGE_KEY + ".file.suffixes";
  static final String FILE_SUFFIXES_DEFVALUE = ".cs";

  @Override
  public void define(Context context) {
    if (context.getRuntime().getProduct() == SonarProduct.SONARLINT) {
      context.addExtensions(
        OmnisharpServerController.class,
        OmnisharpSensor.class,
        OmnisharpEndpoints.class,
        OmnisharpServicesExtractor.class,
        OmnisharpFileListener.class,
        OmnisharpResponseProcessor.class,
        OmnisharpCommandBuilder.class);
    }

    context.addExtensions(
      CSharpLanguage.class,
      CSharpSonarRulesDefinition.class);

    context.addExtensions(new CSharpPropertyDefinitions().create());
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy