Search Gradle plugins

Version 1.1.3

Created 10 April 2020.

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.3"
}

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.3")
  }
}

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

Using the plugins DSL:

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

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.3"
  }
}

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

Learn how to apply plugins to subprojects