-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update Vostok.Logging.Abstractions and other deps to the latest versions * use Nerdbank.GitVersioning to automate generation of assembly and nuget package versions * setup appveyor to publish packages to nuget.org and create github releases automatically when commit is tagged with "vX.Y-release"
- Loading branch information
1 parent
4deaba4
commit ca10a72
Showing
12 changed files
with
111 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Changelog | ||
|
||
## v1.0 - 2018.09.15 | ||
- Set TargetFramework to net472. | ||
- Switch to SDK-style project format and dotnet core build tooling. | ||
- Use [Vostok.Logging.Abstractions](https://github.com/vostok/logging.abstractions) as a logging framework facade. | ||
- Use [Nerdbank.GitVersioning](https://github.com/AArnott/Nerdbank.GitVersioning) to automate generation of assembly | ||
and nuget package versions. | ||
- Update [GroBuf](https://github.com/skbkontur/GroBuf) dependency to v1.4.2. | ||
- Update [GrobExp.Compiler](https://github.com/skbkontur/GrobExp.Compiler) dependency to v1.2.1. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,15 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net471</TargetFramework> | ||
<TargetFramework>net472</TargetFramework> | ||
<AssemblyName>GrobExp.Mutators</AssemblyName> | ||
<RootNamespace>GrobExp.Mutators</RootNamespace> | ||
<PackageId>$(AssemblyName)</PackageId> | ||
<VersionPrefix>1.0.0</VersionPrefix> | ||
<Version>$(VersionPrefix)-rc-003</Version> | ||
<AssemblyVersion>$(VersionPrefix).0</AssemblyVersion> | ||
<Authors>Igor Chevdar, Michael Samoylenko, Anton Chaplygin</Authors> | ||
<PackageTags>expression tree code generation</PackageTags> | ||
<Description>Code generation mechanics for documents conversion and validation</Description> | ||
<RepositoryType>git</RepositoryType> | ||
<RepositoryUrl>https://github.com/skbkontur/grobexp-mutators</RepositoryUrl> | ||
<PackageProjectUrl>$(RepositoryUrl)</PackageProjectUrl> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="GroBuf" Version="1.3.2" /> | ||
<PackageReference Include="GrobExp.Compiler" Version="1.1.1" /> | ||
<PackageReference Include="Vostok.Logging.Abstractions" Version="0.0.1" /> | ||
<PackageReference Include="GroBuf" Version="1.4.2" /> | ||
<PackageReference Include="GrobExp.Compiler" Version="1.2.1" /> | ||
<PackageReference Include="Vostok.Logging.Abstractions" Version="0.1.0" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
# Code generation mechanics for documents conversion and validation | ||
|
||
[![NuGet Status](https://img.shields.io/nuget/v/GrobExp.Mutators.svg)](https://www.nuget.org/packages/GrobExp.Mutators/) | ||
[![Build status](https://ci.appveyor.com/api/projects/status/rqyf5ndta4770afq?svg=true)](https://ci.appveyor.com/project/vostok/grobexp-mutators) | ||
[![Build status](https://ci.appveyor.com/api/projects/status/rqyf5ndta4770afq?svg=true)](https://ci.appveyor.com/project/skbkontur/grobexp-mutators) | ||
|
||
## Release Notes | ||
|
||
See [CHANGELOG](CHANGELOG.md). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,58 @@ | ||
version: '{build}' | ||
|
||
skip_commits: | ||
files: | ||
- '**/*.md' | ||
|
||
image: Visual Studio 2017 | ||
|
||
init: | ||
- cmd: git config --global core.autocrlf false | ||
- ps: | | ||
$ErrorActionPreference = "Stop" | ||
$tagName = $env:APPVEYOR_REPO_TAG_NAME | ||
if ($tagName -match '^v\d+\.\d+') # tag name starts with 'vX.Y' | ||
{ | ||
$env:SHOULD_PUBLISH_NUGET_PACKAGE = "true" | ||
Write-Host "Will publish nuget package for $tagName tag" -ForegroundColor "Green" | ||
if ($tagName -match '^v\d+\.\d+-release$') # tag name matches 'vX.Y-release' | ||
{ | ||
$env:SHOULD_CREATE_RELEASE = "true" | ||
Write-Host "Will create release for $tagName tag" -ForegroundColor "Green" | ||
} | ||
} | ||
nuget: | ||
disable_publish_on_pr: true | ||
|
||
before_build: | ||
- cmd: dotnet --info | ||
- cmd: dotnet restore ./GrobExp.Mutators.sln --verbosity minimal | ||
|
||
build_script: | ||
- cmd: dotnet build --configuration Release ./GrobExp.Mutators.sln | ||
- cmd: dotnet pack --no-build --configuration Release ./GrobExp.Mutators.sln | ||
|
||
test_script: | ||
- cmd: dotnet test --no-build --verbosity normal --configuration Release --filter TestCategory!=Failing ./Mutators.Tests/Mutators.Tests.csproj | ||
|
||
artifacts: | ||
- path: './Mutators/bin/Release/*.nupkg' | ||
|
||
deploy: | ||
- provider: NuGet | ||
server: https://nuget.org | ||
api_key: | ||
secure: dzTnT0xSlPrHnrG06cj354nTN4lXWhfh4ZCJ1910I3VnNdvbx0rQFLTyJ5l1+bgB | ||
skip_symbols: true | ||
on: | ||
SHOULD_PUBLISH_NUGET_PACKAGE: true | ||
|
||
- provider: GitHub | ||
tag: $(APPVEYOR_REPO_TAG_NAME) | ||
auth_token: | ||
secure: y8dDOcAtq4U1MTDJFX8f23xsvyFU1u4bhwr9Lzbkf2revNWPPTifBkWghris9v8i | ||
draft: false | ||
prerelease: false | ||
on: | ||
SHOULD_CREATE_RELEASE: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"sdk": { | ||
"version": "2.1.300" | ||
"version": "2.1.400" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"$schema": "https://raw.githubusercontent.com/AArnott/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json", | ||
"version": "1.0", | ||
"assemblyVersion": { | ||
"precision": "build" | ||
}, | ||
"publicReleaseRefSpec": [ | ||
"^refs/heads/master$", | ||
"^refs/tags/v\\d+\\.\\d+" | ||
], | ||
"nugetPackageVersion": { | ||
"semVer": 2 | ||
}, | ||
"cloudBuild": { | ||
"setVersionVariables": true, | ||
"buildNumber": { | ||
"enabled": false | ||
} | ||
} | ||
} |