Search Gradle plugins

Version 0.0.1 (latest)

Created 04 April 2019.

Csharp compile plugin (under development)

Using the plugins DSL:

plugins {
  id("de.crazypokemondev.gsharp") version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("de.crazypokemondev:gsharp:0.0.1")
  }
}

apply(plugin = "de.crazypokemondev.gsharp")

Using the plugins DSL:

plugins {
  id "de.crazypokemondev.gsharp" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "de.crazypokemondev:gsharp:0.0.1"
  }
}

apply plugin: "de.crazypokemondev.gsharp"

Learn how to apply plugins to subprojects