net.karlmartens.dotnet
Owner: Karl Martens
.NET CORE build plugin
https://github.com/3esi/dotnet-plugin
Sources: https://github.com/karlmartens/dotnet-plugin.git
Using the plugins DSL:
plugins {
id("net.karlmartens.dotnet") version "0.2.19"
}
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.19")
}
}
apply(plugin = "net.karlmartens.dotnet")
Using the plugins DSL:
plugins {
id "net.karlmartens.dotnet" version "0.2.19"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.net.karlmartens.dotnet:dotnet-plugin:0.2.19"
}
}
apply plugin: "net.karlmartens.dotnet"