Search Gradle plugins

Version 3.0.0 (latest)

Created 21 June 2023.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects