Search Gradle plugins

Version 0.2.21 (latest)

Created 14 December 2018.

.NET CORE build plugin

Using the plugins DSL:

plugins {
  id("net.karlmartens.dotnet") version "0.2.21"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.net.karlmartens.dotnet:dotnet-plugin:0.2.21")
  }
}

apply(plugin = "net.karlmartens.dotnet")

Using the plugins DSL:

plugins {
  id "net.karlmartens.dotnet" version "0.2.21"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.net.karlmartens.dotnet:dotnet-plugin:0.2.21"
  }
}

apply plugin: "net.karlmartens.dotnet"

Learn how to apply plugins to subprojects