From f34c74c96d4a00e746c4119fe40a03bf147bbc8c Mon Sep 17 00:00:00 2001 From: Markus Quaritsch <markus.quaritsch@tugraz.at> Date: Thu, 21 Feb 2019 15:55:02 +0100 Subject: [PATCH] adding the ini-file for switching to installed mode to the build script --- Build/Packaging.targets | 4 ++++ Documentation/User Manual/1-user-interface/0_start.md | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Build/Packaging.targets b/Build/Packaging.targets index 8e783fb915..3df6c22e9f 100644 --- a/Build/Packaging.targets +++ b/Build/Packaging.targets @@ -75,6 +75,8 @@ <HashingTool Include="$(SolutionDir)HashingTool\bin\Release\HashingTool.exe"/> <HashingTool Include="$(SolutionDir)VectoCommon\VectoHashing\bin\Release\VectoHashing.XML"/> <HashingTool Include="$(SolutionDir)HashingCmd\bin\Release\hashingcmd.exe"/> + + <VectoConfigurationSample Include="$(SolutionDir)VECTO\install.ini"/> </ItemGroup> <Message Text="@(VectoCommandLine)"/> @@ -87,6 +89,7 @@ <Copy SourceFiles="@(VectoXSD)" DestinationFolder="$(OutputPath)\XML\XSD" /> <Copy SourceFiles="@(UserManual)" DestinationFolder="$(OutputPath)\User Manual" /> <Copy SourceFiles="@(ReleaseNotes)" DestinationFiles="$(OutputPath)\User Manual\Release Notes.pdf" /> + <Copy SourceFiles="@(VectoConfigurationSample)" DestinationFolder="$(OutputPath)"/> <Copy SourceFiles="$(SolutionDir)\Documentation\User Manual Source\README for Mission Profiles Directory.txt" DestinationFiles="$(OutputPath)\Mission Profiles\!! README !!.TXT"/> <Copy SourceFiles="$(SolutionDir)\Documentation\User Manual Source\README for Declaration Directory.txt" DestinationFiles="$(OutputPath)\Declaration\!! README !!.TXT"/> <ItemGroup> @@ -102,6 +105,7 @@ </GetAssemblyIdentity> <ItemGroup> <ZipFiles Include="$(OutputPath)*.dll" /> + <ZipFiles Include="$(OutputPath)*.ini" /> <ZipFiles Include="$(OutputPath)VECTO.exe*" /> <ZipFiles Include="$(OutputPath)vectocmd.exe*"/> <ZipFiles Include="$(OutputPath)HashingTool.exe*"/> diff --git a/Documentation/User Manual/1-user-interface/0_start.md b/Documentation/User Manual/1-user-interface/0_start.md index 18c065f101..4907054fe2 100644 --- a/Documentation/User Manual/1-user-interface/0_start.md +++ b/Documentation/User Manual/1-user-interface/0_start.md @@ -16,8 +16,8 @@ VECTO is distributed as a portable application. This means you can simply unzip In case you do not have execute permissions, please ask your system administrator to install VECTO into an appropriate directory (e.g. under `C:\Program Files`). Installing VECTO requires the following two steps: - + copy the VECTO directory and all its files and subdirectories to the appropriate location - + edit the file `install.ini` and remove the comment character (#) in the line containing `ExecutionMode = install` + + Copy the VECTO directory and all its files and subdirectories to the appropriate location + + Edit the file `install.ini` and remove the comment character (#) in the line containing `ExecutionMode = install` If the ExecutionMode is set to `install` (this is also possible when running VECTO from an arbitrary directory), VECTO does not write its configuration files and log files to the application directory but to the directories `%APPDATA%` and `%LOCALAPPDATA%` (usually `C:\Users\<username>\AppData\Roaming` and `C:\Users\<username>\AppData\Local`). -- GitLab