install websites
This commit is contained in:
@@ -10,6 +10,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
|
||||
.editorconfig = .editorconfig
|
||||
build.cmd = build.cmd
|
||||
config.json = config.json
|
||||
QuikPak\choco\quikpak.nuspec = QuikPak\choco\quikpak.nuspec
|
||||
Readme.md = Readme.md
|
||||
EndProjectSection
|
||||
EndProject
|
||||
|
||||
@@ -1,8 +1,4 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace QuikPak
|
||||
{
|
||||
|
||||
@@ -1,10 +1,6 @@
|
||||
using CommandLine;
|
||||
using CommandLine.Text;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace QuikPak
|
||||
{
|
||||
|
||||
@@ -2,9 +2,6 @@
|
||||
using Newtonsoft.Json;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WixSharp;
|
||||
|
||||
namespace QuikPak
|
||||
@@ -49,6 +46,7 @@ namespace QuikPak
|
||||
Dirs = new[]
|
||||
{
|
||||
new Dir(new Id("IISMain"), config.Name + "_" +config.Version.ToString() +"_Web",
|
||||
|
||||
new Files(System.IO.Path.Combine(options.Path, "**")),
|
||||
new File(options.Config,
|
||||
new IISVirtualDir
|
||||
@@ -58,10 +56,10 @@ namespace QuikPak
|
||||
{
|
||||
InstallWebSite = false,
|
||||
Description = config.Name,
|
||||
Addresses = addresses.ToArray(),
|
||||
Addresses = addresses.ToArray()
|
||||
},
|
||||
WebAppPool = new WebAppPool(config.Name) {
|
||||
Attributes = new Dictionary<string, string>() {
|
||||
Attributes = new Dictionary<string, string>() {
|
||||
["Identity"] = config.Identity,
|
||||
["RecycleMinutes"] = config.RecycleMinutes.ToString(),
|
||||
["IdleTimeout"] = config.IdleTimeout.ToString(),
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// General Information about an assembly is controlled through the following
|
||||
|
||||
Reference in New Issue
Block a user