Как я могу установить службу Windows, установленную с помощью OctopusDeploy, с помощью app.config? - PullRequest
4 голосов
/ 07 марта 2012

До сих пор я смог создать Службу Windows, которую затем я могу заставить TeamCity собрать, упаковать и сделать доступным для Octopus Deploy.

То, что я не могу сделать, это иметь app.config, в котором есть строка подключения, и использовать эту строку подключения.

Вот мой Deploy.ps1:

# These variables should be set via the Octopus web portal:
#
#   ServiceName         - Name of the Windows service
# 
# sc.exe is the Service Control utility in Windows

# Default the service name
if (! $ServiceName)
{
    $ServiceName = "OctoService"
}

Write-Host "Service Name:" $ServiceName

# Get the exe name based ont the directory
$contentPath = (Join-Path $OctopusPackageDirectoryPath "content")
$configName = (Get-ChildItem $contentPath\*.config -Name | Select-Object -First 1)
$binPath  = (Join-Path $OctopusPackageDirectoryPath "lib\net40")
$exeName = (Get-ChildItem $binPath\*.exe -Name | Select-Object -First 1)
$fullPath = (Join-Path $binPath $exeName)
Write-Host "Service Path:" $fullPath

Write-Host "Config Path:" (Join-Path $contentPath $configName)
Copy-Item (Join-Path $contentPath $configName) $binPath

$service = Get-Service $ServiceName -ErrorAction SilentlyContinue
if (! $service)
{
    Write-Host "The service will be installed"
    New-Service -Name $ServiceName -BinaryPathName $fullPath -StartupType Automatic
}
else
{
    Stop-Service $ServiceName -Force

    $fullPath = Resolve-Path $fullPath
    & "sc.exe" config "$ServiceName" binPath= $fullPath start= auto | Write-Host

    Start-Service $ServiceName
}

Вот мой файл .nuspec:

<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
  <metadata>
    <id>$id$</id>
    <version>$version$</version>
    <title>$title$</title>
    <authors>$author$</authors>
    <owners>$author$</owners>
    <requireLicenseAcceptance>false</requireLicenseAcceptance>
    <description>$description$</description>
    <copyright>Copyright 2012</copyright>
  </metadata>
  <files>
    <file src="app.config" target="content" />
    <file src="Deploy.ps1" />
  </files>  
</package>

Если я попытаюсь получить доступ к ConfigurationManager.ConnectionStrings ["MyConnectionString"], я получу нулевую ссылку.

Есть предложения?

1 Ответ

4 голосов
/ 07 марта 2012

мои деньги лежат на том, что вам нужно назвать app.config для exename.exe.config, чтобы он был выбран вашей службой.

App.config - это временное имя, используемое в ide,он переименовывается как часть сборки в любое имя exe

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...