fix whitespace

This commit is contained in:
Tommy Parnell
2016-04-28 20:06:07 -04:00
parent 1d60c6a98f
commit 9f2b5f14d7
4 changed files with 89 additions and 82 deletions

5
.editorconfig Normal file
View File

@@ -0,0 +1,5 @@
# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true
indent_style = space

View File

@@ -1,10 +1,15 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.23107.0
VisualStudioVersion = 14.0.24720.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "QuikPak", "QuikPak\QuikPak.csproj", "{906448E0-73EA-4283-BAB1-4C81EEFC4EFA}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{FA4A9552-C278-45F3-90E7-BBE88F75C254}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU

View File

@@ -1,10 +1,10 @@
using System;
using CommandLine;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using CommandLine;
using Newtonsoft.Json;
using WixSharp;
namespace QuikPak
@@ -38,9 +38,9 @@ namespace QuikPak
{
attr["Header"] = Endpoint.DnsName;
}
addresses.Add(new WebSite.WebAddress() {
addresses.Add(new WebSite.WebAddress()
{
Attributes = attr
});
}
@@ -63,7 +63,6 @@ namespace QuikPak
WebAppPool = new WebAppPool(config.Name)
})
)
},
Version = new Version(config.Version) { },
GUID = new Guid(config.Id),
@@ -71,12 +70,10 @@ namespace QuikPak
OutFileName = config.Name,
PreserveTempFiles = true,
UpgradeCode = new Guid(config.UpgradeCode),
};
project.Properties.Add(new Property("REINSTALLMODE", "dmus"));
project.MajorUpgrade = new MajorUpgrade() { AllowDowngrades = true};
project.MajorUpgrade = new MajorUpgrade() { AllowDowngrades = true };
//project.MajorUpgradeStrategy = new MajorUpgradeStrategy() {
// UpgradeVersions = new VersionRange() {
// IncludeMinimum = true,
// IncludeMaximum = false,