Skip to content

Commit

Permalink
* use SourceLink to help resharper decompiler show actual code
Browse files Browse the repository at this point in the history
* update appveyor.yml to allow github release publication from 'vX.Y-release.Z' tags

* update GrobExp.Compiler to v1.3.10
  • Loading branch information
Anton92nd committed Nov 22, 2019
1 parent 4dd8a62 commit 5f42c16
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 13 deletions.
4 changes: 0 additions & 4 deletions .publish-nuget-package.cmd → .rebuild-nuget-package.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,4 @@ dotnet build --force --no-incremental --configuration Release "./%SolutionName%.

dotnet pack --no-build --configuration Release "./%SolutionName%.sln" || exit /b 1

pushd "./%PackagedProjectName%/bin/Release"
dotnet nuget push *.nupkg -s https://nuget.org || exit /b 1
popd

pause
12 changes: 8 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,23 @@
# Changelog

## v1.3 - 2019.09.25
## v1.3.x - 2019.11.22
- Use [SourceLink](https://github.com/dotnet/sourcelink) to help ReSharper decompiler show actual code.
- Update GrobExp.Compiler dependency

## v1.3.3 - 2019.09.25
- Set TargetFramework to netstandard2.0
- Update dependencies

## v1.2 - 2018.29.12
## v1.2.4 - 2018.29.12
- Lazy converter expression compilation (some public methods of `ConverterCollection` don't need to be compiled)
- No more failing tests
- Some visistors covered by tests
- [Breaking] Introduced explicit public API, some classes made internal

## v1.1 - 2018.10.03
## v1.0.10 - 2018.10.03
- Support concurrent validation and convertation recording

## v1.0 - 2018.09.15
## v1.0.1 - 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.
Expand Down
3 changes: 2 additions & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,16 @@
<PropertyGroup>
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
<EmbedAllSources>true</EmbedAllSources>
</PropertyGroup>

<!-- include pdbs into nuget package -->
<PropertyGroup>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-19554-01" PrivateAssets="All" />
<PackageReference Include="Nerdbank.GitVersioning" Version="2.3.138" PrivateAssets="All" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion Mutators/Mutators.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<ItemGroup>
<PackageReference Include="GroBuf" Version="1.4.8" />
<PackageReference Include="GrobExp.Compiler" Version="1.3.5" />
<PackageReference Include="GrobExp.Compiler" Version="1.3.10" />
<PackageReference Include="Vostok.Logging.Abstractions" Version="1.0.2" />
</ItemGroup>

Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ skip_commits:
files:
- '**/*.md'

image: Visual Studio 2017
image: Visual Studio 2019

init:
- cmd: git config --global core.autocrlf false
Expand All @@ -15,7 +15,7 @@ init:
{
$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'
if ($tagName -match '^v\d+\.\d+-release') # tag name starts with 'vX.Y-release' (e.g. use 'v4.2-release.1' tag for the first patch for release v4.2)
{
$env:SHOULD_CREATE_RELEASE = "true"
Write-Host "Will create release for $tagName tag" -ForegroundColor "Green"
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"sdk": {
"version": "2.2.100"
"version": "2.2.402"
}
}

0 comments on commit 5f42c16

Please sign in to comment.