diff --git a/.publish-nuget-package.cmd b/.rebuild-nuget-package.cmd similarity index 78% rename from .publish-nuget-package.cmd rename to .rebuild-nuget-package.cmd index 4a1321f..879953c 100644 --- a/.publish-nuget-package.cmd +++ b/.rebuild-nuget-package.cmd @@ -13,8 +13,4 @@ dotnet build --force --no-incremental --configuration Release "./%SolutionName%. dotnet pack --no-build --configuration Release "./%SolutionName%.sln" || exit /b 1 -pushd "./%SolutionName%/bin/Release" -dotnet nuget push *.nupkg -s https://nuget.org || exit /b 1 -popd - pause \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index dbef85a..9d82663 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,23 +1,26 @@ # Changelog -## v3.2 - 2019.09.16 +## v3.2.x - 2019.11.21 +- Use [SourceLink](https://github.com/dotnet/sourcelink) to help ReSharper decompiler show actual code. + +## v3.2.1 - 2019.09.16 - Support for Mono 6.0 -## v3.1 - 2019.02.26 +## v3.1.1 - 2019.02.26 - Target .NET Core 2.1 and 2.2 versions. - `EmitCalli` method with native calling convention is now accessible for clients targeting .NET Core 2.1 or later. - Switch tests to run on .NET Core 2.0, 2.1 and 2.2. -## v3.0 - 2019.01.14 +## v3.0.9 - 2019.01.14 - Remove IL modification related functionality (`MethodBodyParsing` namespace) entirely since it had been broken after adding .NET Core support. - Switch tests to run on .NET Core 2.2. -## v2.3 - 2018.09.13 +## v2.3.1 - 2018.09.13 - Use [Nerdbank.GitVersioning](https://github.com/AArnott/Nerdbank.GitVersioning) to automate generation of assembly and nuget package versions. -## v2.2 - 2018.01.01 +## v2.2.0 - 2018.01.01 - Support .NET Standard 2.0 (PR [#9](https://github.com/skbkontur/gremit/pull/9) by [@Amartel1986](https://github.com/Amartel1986)). - Switch to SDK-style project format and dotnet core build tooling. diff --git a/Directory.Build.props b/Directory.Build.props index 845a963..56991ad 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -4,16 +4,17 @@ full true - true + true $(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb + diff --git a/appveyor.yml b/appveyor.yml index 9a0fb9c..40b6351 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -4,7 +4,7 @@ skip_commits: files: - '**/*.md' -image: Visual Studio 2017 +image: Visual Studio 2019 init: - cmd: git config --global core.autocrlf false @@ -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" diff --git a/global.json b/global.json index a4a01b2..3cd92d1 100644 --- a/global.json +++ b/global.json @@ -1,5 +1,5 @@ { "sdk": { - "version": "2.2.100" + "version": "2.2.402" } } \ No newline at end of file