加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > asp.Net > 正文

asp.net – 如何使用OctopusDeploy安装Windows服务,使用app.conf

发布时间:2020-12-16 10:01:52 所属栏目:asp.Net 来源:网络整理
导读:到目前为止,我已经能够创建一个 Windows服务,然后我可以让TeamCity构建和打包并提供给Octopus Deploy. 我似乎无法做的是,有一个app.config,其中有一个连接字符串并使用该连接字符串. 以下是我的Deploy.ps1: # These variables should be set via the Octopu
到目前为止,我已经能够创建一个 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 "libnet40")
$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”],我将获得一个空引用.

有什么建议?

解决方法

我的钱是你需要将你的app.config命名为exename.exe.config,以便你的服务选择它.

App.config是ide中使用的’临时’名称,它将作为构建的一部分重命名为exe名称

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读