fix whitespace
This commit is contained in:
5
.editorconfig
Normal file
5
.editorconfig
Normal 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
|
||||
@@ -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
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user