Search Gradle plugins

Version 1.1.2

Created 22 November 2019.

The plugin that allows you access to dotnet commands inside gradle as task

Using the plugins DSL:

plugins {
  id("xyz.ronella.dotnet.core") version "1.1.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.xyz.ronella.gradle.plugin:simple-dotnet-core:1.1.2")
  }
}

apply(plugin = "xyz.ronella.dotnet.core")

Using the plugins DSL:

plugins {
  id "xyz.ronella.dotnet.core" version "1.1.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.xyz.ronella.gradle.plugin:simple-dotnet-core:1.1.2"
  }
}

apply plugin: "xyz.ronella.dotnet.core"

Learn how to apply plugins to subprojects