搜索Gradle插件

com.betomorrow.dotnet.wording

所有者: Gaëtan Marrot

插件用于从Google Sheet导入文本并将其作为.Net项目中的.resx文件集成。

https://github.com/gmarrot/dotnet-wording-plugin

来源: https://github.com/gmarrot/dotnet-wording-plugin

版本 1.0.1(最新版)

1.0.1

创建于 2019年8月5日。

插件用于从Google Sheet导入文本并将其作为.Net项目中的.resx文件集成。

使用 插件DSL

plugins {
  id("com.betomorrow.dotnet.wording") version "1.0.1"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.betomorrow.gradle:dotnet-wording-plugin:1.0.1")
  }
}

apply(plugin = "com.betomorrow.dotnet.wording")

使用 插件DSL

plugins {
  id "com.betomorrow.dotnet.wording" version "1.0.1"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.betomorrow.gradle:dotnet-wording-plugin:1.0.1"
  }
}

apply plugin: "com.betomorrow.dotnet.wording"

学习如何将插件应用到子项目中