Search Gradle plugins

com.betomorrow.dotnet.wording

Plugin to import wording from Google Sheet then integrate it as .resx files in .Net Projects.

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

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

Version 1.0.1 (latest)

Created 05 August 2019.

Plugin to import wording from Google Sheet then integrate it as .resx files in .Net Projects.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects