From 0f7afe2ebc66cf9065a6656c6b2d75788a9f98e7 Mon Sep 17 00:00:00 2001 From: Tommy Parnell Date: Tue, 28 Feb 2017 09:32:30 -0500 Subject: [PATCH] fix up --- QuikPak.sln | 3 +-- QuikPak/Config.json | 18 ++++++++---------- Readme.md | 24 ++++++++++++++++++++++-- config.json | 19 ------------------- 4 files changed, 31 insertions(+), 33 deletions(-) delete mode 100644 config.json diff --git a/QuikPak.sln b/QuikPak.sln index 3594c6c..a5c805d 100644 --- a/QuikPak.sln +++ b/QuikPak.sln @@ -1,7 +1,7 @@  Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 14 -VisualStudioVersion = 14.0.24720.0 +VisualStudioVersion = 14.0.25420.1 MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "QuikPak", "QuikPak\QuikPak.csproj", "{906448E0-73EA-4283-BAB1-4C81EEFC4EFA}" EndProject @@ -9,7 +9,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution ProjectSection(SolutionItems) = preProject .editorconfig = .editorconfig build.cmd = build.cmd - config.json = config.json QuikPak\choco\quikpak.nuspec = QuikPak\choco\quikpak.nuspec Readme.md = Readme.md EndProjectSection diff --git a/QuikPak/Config.json b/QuikPak/Config.json index 352fbfa..ec1ba67 100644 --- a/QuikPak/Config.json +++ b/QuikPak/Config.json @@ -1,19 +1,17 @@ { "UpgradeCode": "317e4313-2314-46e9-ae7e-6cdfee60c05d", - "Name": "terribled", - "Version": "1.0.0.0", + "Name": "terribledev", + "Version": "1.0.0.1", "Endpoints": [ { "port": 10000, - "DnsName": "terribledev.io", - "Secure": true - } - ], - "Certificates": [ + "DnsName": "*", + "Secure": false + }, { - "Name": "terribledev.io", - "Path": "c:/projects/quikpak/mycert.pfx", - "Password": "awesome" + "port": 8000, + "DnsName": "localhost", + "Secure" : false } ] } diff --git a/Readme.md b/Readme.md index 8c7c404..3ea3e9c 100644 --- a/Readme.md +++ b/Readme.md @@ -10,7 +10,7 @@ You can also install it from our public feed which might have newer versions fas ## How to use -Create a json config file that looks something like this +Create a json config file that looks something like this. The upgrade code must be a unique uuid, that will identify your msi. ```json @@ -37,4 +37,24 @@ then call QuikPak.exe -c path\to\your\config.jsondfsa -x path\to\your\web\conten You can also add certificates to your json bindings. -....f.dfa. +```json + +{ + "UpgradeCode": "317e4313-2314-46e9-ae7e-6cdfee60c05d", + "Name": "terribledev", + "Version": "1.0.0.1", + "Endpoints": [ + { + "port": 10000, + "DnsName": "*", + "Secure": false + }, + { + "port": 8000, + "DnsName": "localhost", + "Secure" : false + } + ] +} + +``` diff --git a/config.json b/config.json deleted file mode 100644 index 017e9f9..0000000 --- a/config.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "UpgradeCode": "317e4313-2314-46e9-ae7e-6cdfee60c05d", - "Name": "terribled", - "Version": "1.0.0.0", - "Endpoints": [ - { - "port": 10000, - "DnsName": "terribledev.io", - "Secure": true - } - ], - "Certificates": [ - { - "Name": "terribledev.io", - "Path": "c:/projects/quikpak/mycert.pfx", - "Password": "awesome" - } - ] -}