Search Gradle plugins

Version 1.0.0-GA

Created 19 November 2019.

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

Add this plugin to your build using the plugins DSL:

plugins {
  id("xyz.ronella.dotnet.core") version "1.0.0-GA"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("xyz.ronella.dotnet.core:xyz.ronella.dotnet.core.gradle.plugin:1.0.0-GA")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("xyz.ronella.dotnet.core")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("xyz.ronella.dotnet.core:xyz.ronella.dotnet.core.gradle.plugin:1.0.0-GA")
      }
    }
    
    apply(plugin = "xyz.ronella.dotnet.core")
  • Applying plugins to all subprojects .