gradle-msbuild-plugin icon indicating copy to clipboard operation
gradle-msbuild-plugin copied to clipboard

Gradle plugin for msbuild execution, supports C# project files for now

Results 18 gradle-msbuild-plugin issues
Sort by recently updated
recently updated
newest added

After the msbuild process ends (verified in task manager), the gradle process continues to hang. Windows 7, VS 2013 or 2015, Java 8, Gradle 3.0 or 3.2. No issues on...

bug

If I don't redefine `destinationDir` to be under `${buildDir}` then Gradle clean would not clean `msbuild` output

I have a source tree like so, where the solution file defines the paths to its constituent projects: ``` +---rootProject.sln +---src | +---project-a | +---project-a.csproj +---project-b +---project-b.csproj ``` This minimal...

bug

Under Msbuild.groovy we have the code ``` groovy ['OutDir', 'OutputPath', 'BaseIntermediateOutputPath', 'IntermediateOutputPath', 'PublishDir'].each { if (cmdParameters[it] && !cmdParameters[it].endsWith('\\')) { cmdParameters[it] += '\\' } } ``` which doesn't look right on...

bug

I have this error when the build is configuring. If I specify a solution file it works fine and if I specifify a project file and remove the task assemblyInfoPatcher...

bug

If to add gradle-properties-plugin to the build, msbuild task fails without clear reason: ``` FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':msbuild'. >...

bug

I'm still trying to get the plugin to complete the configuration phase without requiring mono, and found another case where mono gets invoked during the configuration phase: when AssemblyInfoVersionPatcher is...

My project's release process needs to update both the app and deploy manifests and signing some executables. It would be nice if I had support to mage.exe and signtool.exe on...

enhancement
up-for-grabs