Enable all steps and add/update comments.

FossilOrigin-Name: 788f99f47f40be42f30d3f324983f39e84d8cfbb
This commit is contained in:
mistachkin 2016-02-25 02:56:53 +00:00
parent c32db469f4
commit 6ae4d84fdf
3 changed files with 17 additions and 15 deletions

View File

@ -1,5 +1,5 @@
C More\swork.\s\sInstall\sand\sbuild\ssteps\sare\snow\stested. C Enable\sall\ssteps\sand\sadd/update\scomments.
D 2016-02-25T02:49:58.520 D 2016-02-25T02:56:53.408
F Makefile.in 4e90dc1521879022aa9479268a4cd141d1771142 F Makefile.in 4e90dc1521879022aa9479268a4cd141d1771142
F Makefile.linux-gcc 7bc79876b875010e8c8f9502eb935ca92aa3c434 F Makefile.linux-gcc 7bc79876b875010e8c8f9502eb935ca92aa3c434
F Makefile.msc 28fc4ee02333996d31b3602b39eeb8e609a89ce4 F Makefile.msc 28fc4ee02333996d31b3602b39eeb8e609a89ce4
@ -1446,11 +1446,11 @@ F vsixtest/Package.appxmanifest 6b6db1eb7df3a315c5d681059754d5f0e0c47a93
F vsixtest/pch.cpp cb823cfac36f1a39a7eb0acbd7e9a0b0de8f23af F vsixtest/pch.cpp cb823cfac36f1a39a7eb0acbd7e9a0b0de8f23af
F vsixtest/pch.h 9cab7980f2ac4baa40807d8b5e52af32a21cf78c F vsixtest/pch.h 9cab7980f2ac4baa40807d8b5e52af32a21cf78c
F vsixtest/vsixtest.sln 77cadbe4e96c1fe1bf51cd77de9e9b0a12ada547 F vsixtest/vsixtest.sln 77cadbe4e96c1fe1bf51cd77de9e9b0a12ada547
F vsixtest/vsixtest.tcl 63aff906d5b2635ade235599a45fcc95a7e296bc F vsixtest/vsixtest.tcl b80b4e1f007448d382e4a0d4f3751dba0fc47ba9
F vsixtest/vsixtest.vcxproj.data 2ed517e100c66dc455b492e1a33350c1b20fbcdc w vsixtest/vsixtest.vcxproj F vsixtest/vsixtest.vcxproj.data 2ed517e100c66dc455b492e1a33350c1b20fbcdc
F vsixtest/vsixtest.vcxproj.filters 37e51ffedcdb064aad6ff33b6148725226cd608e F vsixtest/vsixtest.vcxproj.filters 37e51ffedcdb064aad6ff33b6148725226cd608e
F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0 F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0
P e0029bdf20df90abd8b81e5b08133866665b1c87 P 0ab74373bd37d48d6afa7aecb67885afcd3a85b1
R fd73554594351ac51b867a9ca61df57d R ba41dee91dbb0324b1abb0791f91a36f
U mistachkin U mistachkin
Z 85ba38141fc589bcd3be4f139cce818c Z c3b39230971278db58f1c6301bccf9b2

View File

@ -1 +1 @@
0ab74373bd37d48d6afa7aecb67885afcd3a85b1 788f99f47f40be42f30d3f324983f39e84d8cfbb

View File

@ -5,22 +5,24 @@
# #
# PREREQUISITES # PREREQUISITES
# #
# 1. Tcl 8.4 and later are supported, earlier versions have not been tested. # 1. This tool must be executed with "elevated administrator" privileges.
# #
# 2. The "sqlite-UWP-output.vsix" file is assumed to exist in the parent # 2. Tcl 8.4 and later are supported, earlier versions have not been tested.
#
# 3. The "sqlite-UWP-output.vsix" file is assumed to exist in the parent
# directory of the directory containing this script. The [optional] first # directory of the directory containing this script. The [optional] first
# command line argument to this script may be used to specify an alternate # command line argument to this script may be used to specify an alternate
# file. However, currently, the file must be compatible with both Visual # file. However, currently, the file must be compatible with both Visual
# Studio 2015 and the Universal Windows Platform. # Studio 2015 and the Universal Windows Platform.
# #
# 3. The "VERSION" file is assumed to exist in the parent directory of the # 4. The "VERSION" file is assumed to exist in the parent directory of the
# directory containing this script. It must contain a version number that # directory containing this script. It must contain a version number that
# matches the VSIX file being tested. # matches the VSIX file being tested.
# #
# 4. The temporary directory specified in the TEMP or TMP environment variables # 5. The temporary directory specified in the TEMP or TMP environment variables
# must refer to an existing directory writable by the current user. # must refer to an existing directory writable by the current user.
# #
# 5. The VS140COMNTOOLS environment variable must refer to the Visual Studio # 6. The VS140COMNTOOLS environment variable must refer to the Visual Studio
# 2015 common tools directory. # 2015 common tools directory.
# #
# USAGE # USAGE
@ -259,7 +261,7 @@ if {1} then {
############################################################################### ###############################################################################
if {1} then { if {1} then {
# putsAndEval $commands(1) putsAndEval $commands(1)
set versionNumber [string trim [readFile $versionFileName]] set versionNumber [string trim [readFile $versionFileName]]
set data [readFile $projectTemplateFileName] set data [readFile $projectTemplateFileName]
@ -277,5 +279,5 @@ if {1} then {
} }
} }
# putsAndEval $commands(3) putsAndEval $commands(3)
} }