com.ullink.msbuild
                  Owner:
                  
                    
                    Itiviti
                  
                
gradle-msbuild-plugin is a Gradle plugin for MSBuild project build
https://github.com/Itiviti/gradle-msbuild-plugin
Version 4.7 (latest)
Created 25 September 2024.
                Gradle plugin for MSBuild project build.
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("com.ullink.msbuild") version "4.7"
}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("com.ullink.msbuild:com.ullink.msbuild.gradle.plugin:4.7") }It can then be applied in the precompiled script plugin:plugins { id("com.ullink.msbuild") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.ullink.msbuild:com.ullink.msbuild.gradle.plugin:4.7") } } apply(plugin = "com.ullink.msbuild")
- Applying plugins to all subprojects .