使用gradle for .net项目中的setupbuilder插件创建msi或exe安装程序

时间:2017-10-11 11:15:39

标签: .net gradle msbuild wix

我有一个.net项目,我使用MSBuild插件为gradle构建。在最后的任务中,我想创建一个.msi或.exe安装程序,包括构建步骤中的dll。当前的gradle构建脚本如下所示:

    buildscript {
    repositories {
        mavenCentral()
        jcenter()
        maven {
            url "https://plugins.gradle.org/m2/"
        }
    }

    dependencies {
        classpath "com.ullink.gradle:gradle-msbuild-plugin:2.16"
        classpath "gradle.plugin.de.inetsoftware:SetupBuilder:1.8.0"
    }
}

apply plugin: 'msbuild'
apply plugin: "de.inetsoftware.setupbuilder"

msbuild {
// Project solution file
    solutionFile = 'Test.sln'

    targets = ['Clean', 'Rebuild']
}

setupBuilder {
    vendor = 'MyOrg'
    application = "Test"
    appIdentifier = "Test"
    version = '1.0'
    licenseFile = 'license.txt'
    // icons in different sizes for different usage. you can also use a single *.ico or *.icns file
    icons = 'test.icns'
    // all files for all platforms
    from( 'testbuild' ) {
        include 'bin/Debug/*.dll'
    }
    bundleJre = 1.8
}

msi {
    // files only for the Windows platform

}

当我运行gradle msi时,错误是 -

Execution failed for task ':msi'.
> org.gradle.api.internal.file.copy.CopyActionExecuter.<init>(Lorg/gradle/internal/reflect/Instantiator;Lorg/gradle/internal/nativeintegration/filesystem/FileSystem;)V

我正在使用gradle 4.2.1,wixtools,setupbuilder 1.8。是否存在我缺少的依赖项或代码块中的某些内容?

1 个答案:

答案 0 :(得分:0)

根据GitHub上的插件referenceSetup Builder插件版1.8需要Gradle版本3.0。当我尝试Setup Builder插件版本1.8且版本Gradle大于3.0时,出现了类似的问题(WiX Toolset版本为3.11)。您可以使用Gradle 3.0重试。

相关问题