File tree 5 files changed +13
-13
lines changed
5 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -13,8 +13,4 @@ dotnet build --force --no-incremental --configuration Release "./%SolutionName%.
13
13
14
14
dotnet pack --no-build --configuration Release " ./%SolutionName% .sln" || exit /b 1
15
15
16
- pushd " ./%SolutionName% /bin/Release"
17
- dotnet nuget push *.nupkg -s https://nuget.org || exit /b 1
18
- popd
19
-
20
16
pause
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
- ## v3.2 - 2019.09.16
3
+ ## v3.2.x - 2019.11.21
4
+ - Use [ SourceLink] ( https://github.com/dotnet/sourcelink ) to help ReSharper decompiler show actual code.
5
+
6
+ ## v3.2.1 - 2019.09.16
4
7
- Support for Mono 6.0
5
8
6
- ## v3.1 - 2019.02.26
9
+ ## v3.1.1 - 2019.02.26
7
10
- Target .NET Core 2.1 and 2.2 versions.
8
11
- ` EmitCalli ` method with native calling convention is now accessible for clients targeting .NET Core 2.1 or later.
9
12
- Switch tests to run on .NET Core 2.0, 2.1 and 2.2.
10
13
11
- ## v3.0 - 2019.01.14
14
+ ## v3.0.9 - 2019.01.14
12
15
- Remove IL modification related functionality (` MethodBodyParsing ` namespace) entirely since it had been broken
13
16
after adding .NET Core support.
14
17
- Switch tests to run on .NET Core 2.2.
15
18
16
- ## v2.3 - 2018.09.13
19
+ ## v2.3.1 - 2018.09.13
17
20
- Use [ Nerdbank.GitVersioning] ( https://github.com/AArnott/Nerdbank.GitVersioning ) to automate generation of assembly
18
21
and nuget package versions.
19
22
20
- ## v2.2 - 2018.01.01
23
+ ## v2.2.0 - 2018.01.01
21
24
- Support .NET Standard 2.0 (PR [ #9 ] ( https://github.com/skbkontur/gremit/pull/9 )
22
25
by [ @Amartel1986 ] ( https://github.com/Amartel1986 ) ).
23
26
- Switch to SDK-style project format and dotnet core build tooling.
Original file line number Diff line number Diff line change 4
4
<PropertyGroup >
5
5
<DebugType >full</DebugType >
6
6
<DebugSymbols >true</DebugSymbols >
7
- <EmbedAllSources >true</EmbedAllSources >
8
7
</PropertyGroup >
9
8
10
9
<!-- include pdbs into nuget package -->
11
10
<PropertyGroup >
11
+ <PublishRepositoryUrl >true</PublishRepositoryUrl >
12
12
<AllowedOutputExtensionsInPackageBuildOutputFolder >$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder >
13
13
</PropertyGroup >
14
14
15
15
<!-- Nerdbank.GitVersioning does not work on Ubuntu+Mono (see https://github.com/AArnott/Nerdbank.GitVersioning/issues/224) -->
16
16
<ItemGroup Condition =" '$(OS)' != 'Unix'" >
17
+ <PackageReference Include =" Microsoft.SourceLink.GitHub" Version =" 1.0.0-beta2-19554-01" PrivateAssets =" All" />
17
18
<PackageReference Include =" Nerdbank.GitVersioning" Version =" 2.3.138" PrivateAssets =" All" />
18
19
</ItemGroup >
19
20
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ skip_commits:
4
4
files :
5
5
- ' **/*.md'
6
6
7
- image : Visual Studio 2017
7
+ image : Visual Studio 2019
8
8
9
9
init :
10
10
- cmd : git config --global core.autocrlf false
15
15
{
16
16
$env:SHOULD_PUBLISH_NUGET_PACKAGE = "true"
17
17
Write-Host "Will publish nuget package for $tagName tag" -ForegroundColor "Green"
18
- if ($tagName -match '^v\d+\.\d+-release$ ') # tag name matches 'vX.Y-release'
18
+ 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)
19
19
{
20
20
$env:SHOULD_CREATE_RELEASE = "true"
21
21
Write-Host "Will create release for $tagName tag" -ForegroundColor "Green"
Original file line number Diff line number Diff line change 1
1
{
2
2
"sdk" : {
3
- "version" : " 2.2.100 "
3
+ "version" : " 2.2.402 "
4
4
}
5
5
}
You can’t perform that action at this time.
0 commit comments