Search Gradle plugins

Version 0.2.7

0.2.7

Created 07 March 2018.

.NET CORE build plugin

Add this plugin to your build using the plugins DSL:

plugins {
  id("net.karlmartens.dotnet") version "0.2.7"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.net.karlmartens.dotnet:buildSrc:0.2.7")
      }
    }
    
    apply(plugin = "net.karlmartens.dotnet")
  • Applying plugins to all subprojects .