This commit is contained in:
Larry Golding 2018-07-27 10:26:23 -07:00 коммит произвёл GitHub
Родитель aee4143010
Коммит 4cef97e396
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 34 добавлений и 0 удалений

30
appveyor.yml Normal file
Просмотреть файл

@ -0,0 +1,30 @@
image: Visual Studio 2017
init:
- git config --global core.autocrlf true
branches:
only:
- master
platform: Any CPU
configuration:
- Release
build_script:
- dotnet build src\Everything.sln
test:
assemblies: '**\*.UnitTests.dll'
notifications:
- provider: Email
to:
- vsarcplat@microsoft.com
subject: '{{projectName}} Build {{status}}: Version: {{buildVersion}}'
on_build_status_changed: true
cache:
- packages -> **\packages.config
- '%LocalAppData%\NuGet\Cache'

Просмотреть файл

@ -34,4 +34,8 @@ namespace $namespace
$outputFile = "$outputDirectory\VersionConstants.cs"
if (-not (Test-Path $outputDirectory)) {
New-Item -Type Directory $outputDirectory | Out-Null
}
Set-Content $outputFile $versionConstantsFileContents