Merge pull request #2 from TerribleDev/preserveTemp
preserve temp files
This commit is contained in:
@@ -18,6 +18,7 @@ namespace QuikPak
|
|||||||
public string ManagedPipelineMode { get; set; } = "Integrated";
|
public string ManagedPipelineMode { get; set; } = "Integrated";
|
||||||
public string ManagedRuntimeVersion { get; set; } = "v4.0";
|
public string ManagedRuntimeVersion { get; set; } = "v4.0";
|
||||||
public bool Enable64Bits { get; set; } = false;
|
public bool Enable64Bits { get; set; } = false;
|
||||||
|
public bool PreserveTempFiles { get; set; } = false;
|
||||||
public IEnumerable<Cert> Certificates { get; set; }
|
public IEnumerable<Cert> Certificates { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -76,7 +76,7 @@ namespace QuikPak
|
|||||||
GUID = string.IsNullOrWhiteSpace(config.Id) ? Guid.NewGuid() : new Guid(config.Id),
|
GUID = string.IsNullOrWhiteSpace(config.Id) ? Guid.NewGuid() : new Guid(config.Id),
|
||||||
UI = WUI.WixUI_ProgressOnly,
|
UI = WUI.WixUI_ProgressOnly,
|
||||||
OutFileName = config.Name,
|
OutFileName = config.Name,
|
||||||
PreserveTempFiles = true,
|
PreserveTempFiles = config.PreserveTempFiles,
|
||||||
Binaries = config.Certificates?.Select(a=> {
|
Binaries = config.Certificates?.Select(a=> {
|
||||||
var bin = new Binary(a.Path);
|
var bin = new Binary(a.Path);
|
||||||
a.BinaryKey = bin;
|
a.BinaryKey = bin;
|
||||||
|
|||||||
@@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
|
|||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("0.9.0.0")]
|
[assembly: AssemblyVersion("0.1.0.0")]
|
||||||
[assembly: AssemblyFileVersion("0.9.0.0")]
|
[assembly: AssemblyFileVersion("0.1.0.0")]
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
<!-- Read this before publishing packages to chocolatey.org: https://github.com/chocolatey/chocolatey/wiki/CreatePackages -->
|
<!-- Read this before publishing packages to chocolatey.org: https://github.com/chocolatey/chocolatey/wiki/CreatePackages -->
|
||||||
<id>quikpak</id>
|
<id>quikpak</id>
|
||||||
<title>QuikPak (Install)</title>
|
<title>QuikPak (Install)</title>
|
||||||
<version>0.9.0</version>
|
<version>0.10.0-beta2</version>
|
||||||
<authors>Tommy Parnell</authors>
|
<authors>Tommy Parnell</authors>
|
||||||
<owners>Tommy Parnell</owners>
|
<owners>Tommy Parnell</owners>
|
||||||
<summary>quickly pack directory's as IIS websites</summary>
|
<summary>quickly pack directory's as IIS websites</summary>
|
||||||
@@ -22,7 +22,7 @@
|
|||||||
<licenseUrl>https://github.com/terribledev/QuikPak/blob/master/LICENSE.md</licenseUrl>
|
<licenseUrl>https://github.com/terribledev/QuikPak/blob/master/LICENSE.md</licenseUrl>
|
||||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency id="wixtoolset" version="3.10.2.2516" />
|
<dependency id="wixtoolset" version="3.10.3.300701" />
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</metadata>
|
</metadata>
|
||||||
<files>
|
<files>
|
||||||
|
|||||||
Reference in New Issue
Block a user