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

Commit

Permalink
use 2.7.6 (#311)
Browse files Browse the repository at this point in the history
  • Loading branch information
ctaggart authored Jan 17, 2018
1 parent 1a61266 commit 36e4585
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The [source link support documention](https://github.com/dotnet/core/blob/master
``` xml
<Project>
<ItemGroup>
<PackageReference Include="SourceLink.Create.CommandLine" Version="2.7.4" PrivateAssets="All" />
<PackageReference Include="SourceLink.Create.CommandLine" Version="2.7.6" PrivateAssets="All" />
</ItemGroup>
</Project>
```
Expand Down Expand Up @@ -49,7 +49,7 @@ As of SourceLink 2.7, the pdb files will automatically be included in your nupkg

Install by adding:
``` xml
<DotNetCliToolReference Include="dotnet-sourcelink" Version="2.7.4" />
<DotNetCliToolReference Include="dotnet-sourcelink" Version="2.7.6" />
```

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

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

# Documentation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@

<!--<Import Project="../build/sourcelink.props" />-->
<ItemGroup>
<PackageReference Include="SourceLink.Create.GitHub" Version="2.7.4" PrivateAssets="all" />
<DotNetCliToolReference Include="dotnet-sourcelink-git" Version="2.7.4" />
<PackageReference Include="SourceLink.Create.GitHub" Version="2.7.6" PrivateAssets="all" />
<DotNetCliToolReference Include="dotnet-sourcelink-git" Version="2.7.6" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion build.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$version = '2.7.4' # the version under development, update after a release
$version = '2.7.7' # the version under development, update after a release
$versionSuffix = '-a125' # manually incremented for local builds

function isVersionTag($tag){
Expand Down
2 changes: 1 addition & 1 deletion build/build.proj
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
</PropertyGroup>

<ItemGroup>
<DotNetCliToolReference Include="dotnet-sourcelink" Version="2.7.4" />
<DotNetCliToolReference Include="dotnet-sourcelink" Version="2.7.6" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion build/sourcelink.props
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project>
<ItemGroup>
<PackageReference Include="SourceLink.Create.CommandLine" Version="2.7.4" PrivateAssets="all" />
<PackageReference Include="SourceLink.Create.CommandLine" Version="2.7.6" PrivateAssets="all" />
</ItemGroup>
</Project>

0 comments on commit 36e4585

Please sign in to comment.