Added a script for replacing the credentials via the environment variables which can be set before the build. Changed the way the build works, only if private-credentials files are stored they will be used where before there would be an error if none were available.

The current credentials files now have replacement tokens, a build without replacement will work but the credentials will be invalid.
This commit is contained in:
RKrom 2014-06-11 14:51:30 +02:00
commit 848c77890a
13 changed files with 77 additions and 176 deletions

46
prebuild.ps1 Normal file
View file

@ -0,0 +1,46 @@
################################################################
# Greenshot PRE-BUILD script, written for the Windows Power Shell
# Assumes the installation of Microsoft .NET Framework 4.5
################################################################
# Greenshot - a free and open source screenshot tool
# Copyright (C) 2007-2014 Thomas Braun, Jens Klingen, Robin Krom
#
# For more information see: http://getgreenshot.org/
# The Greenshot project is hosted on Sourceforge: http://sourceforge.net/projects/greenshot/
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 1 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
################################################################
# Fill the credentials
Function FillCredentials {
Write-Host "Filling credentials with Environment variable values`n`n"
Get-ChildItem . -recurse *Credentials.cs | foreach {
$template = Get-Content $_.FullName
# Create an empty array, this will contain the replaced lines
$newtext = @()
foreach ($line in $template) {
get-childitem -path env:credentials_* | foreach {
$varname=$_.Name
$varvalue=$_.Value
$line = $line -replace "\@$varname\@", $varvalue
}
$newtext += $line
}
# Write the new information to the file
Write-Host "Updating $_.FullName`n"
$newtext | Set-Content $_.FullName -encoding UTF8
}
}
FillCredentials