Skip to content
This repository was archived by the owner on Apr 16, 2020. It is now read-only.

Commit 36e4585

Browse files
authored
use 2.7.6 (#311)
1 parent 1a61266 commit 36e4585

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The [source link support documention](https://github.com/dotnet/core/blob/master
2020
``` xml
2121
<Project>
2222
<ItemGroup>
23-
<PackageReference Include="SourceLink.Create.CommandLine" Version="2.7.4" PrivateAssets="All" />
23+
<PackageReference Include="SourceLink.Create.CommandLine" Version="2.7.6" PrivateAssets="All" />
2424
</ItemGroup>
2525
</Project>
2626
```
@@ -49,7 +49,7 @@ As of SourceLink 2.7, the pdb files will automatically be included in your nupkg
4949

5050
Install by adding:
5151
``` xml
52-
<DotNetCliToolReference Include="dotnet-sourcelink" Version="2.7.4" />
52+
<DotNetCliToolReference Include="dotnet-sourcelink" Version="2.7.6" />
5353
```
5454

5555
# Embedding Source Files
@@ -60,7 +60,7 @@ For source files are not committed to the repository, it is helpful to embed the
6060

6161
If you just want to embed all of the source files in the pdb and not use source link support, add this package:
6262
``` xml
63-
<PackageReference Include="SourceLink.Embed.AllSourceFiles" Version="2.7.4" PrivateAssets="all" />
63+
<PackageReference Include="SourceLink.Embed.AllSourceFiles" Version="2.7.6" PrivateAssets="all" />
6464
```
6565

6666
# Documentation

SourceLink.Create.CommandLine/SourceLink.Create.CommandLine.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252

5353
<!--<Import Project="../build/sourcelink.props" />-->
5454
<ItemGroup>
55-
<PackageReference Include="SourceLink.Create.GitHub" Version="2.7.4" PrivateAssets="all" />
56-
<DotNetCliToolReference Include="dotnet-sourcelink-git" Version="2.7.4" />
55+
<PackageReference Include="SourceLink.Create.GitHub" Version="2.7.6" PrivateAssets="all" />
56+
<DotNetCliToolReference Include="dotnet-sourcelink-git" Version="2.7.6" />
5757
</ItemGroup>
5858
</Project>

build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$version = '2.7.4' # the version under development, update after a release
1+
$version = '2.7.7' # the version under development, update after a release
22
$versionSuffix = '-a125' # manually incremented for local builds
33

44
function isVersionTag($tag){

build/build.proj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
</PropertyGroup>
55

66
<ItemGroup>
7-
<DotNetCliToolReference Include="dotnet-sourcelink" Version="2.7.4" />
7+
<DotNetCliToolReference Include="dotnet-sourcelink" Version="2.7.6" />
88
</ItemGroup>
99
</Project>

build/sourcelink.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<Project>
22
<ItemGroup>
3-
<PackageReference Include="SourceLink.Create.CommandLine" Version="2.7.4" PrivateAssets="all" />
3+
<PackageReference Include="SourceLink.Create.CommandLine" Version="2.7.6" PrivateAssets="all" />
44
</ItemGroup>
55
</Project>

0 commit comments

Comments
 (0)