搜索Gradle插件

版本 0.3.0 (最新版)

0.3.0

创建于2023年6月26日。

提供使用NET CLI的功能

使用插件DSL

plugins {
  id("net.wooga.dotnet") version "0.3.0"
}

使用遗留插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("net.wooga.gradle:dotnet:0.3.0")
  }
}

apply(plugin = "net.wooga.dotnet")

使用插件DSL

plugins {
  id "net.wooga.dotnet" version "0.3.0"
}

使用遗留插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "net.wooga.gradle:dotnet:0.3.0"
  }
}

apply plugin: "net.wooga.dotnet"

了解如何将插件应用到子项目