diff --git a/README.md b/README.md index f01f2be..6284707 100644 --- a/README.md +++ b/README.md @@ -16,15 +16,15 @@ Most of the SourceLink 2 tools from this repository are made obsolete by the .NE # Test -For SourceLink version 3, [sourcelink](https://www.nuget.org/packages/SourceLink/3.0.0-build.732) is a [.NET Core global tool](https://natemcmaster.com/blog/2018/05/12/dotnet-global-tools/). +For SourceLink version 3, [sourcelink](https://www.nuget.org/packages/SourceLink) is a [.NET Core global tool](https://natemcmaster.com/blog/2018/05/12/dotnet-global-tools/). ``` -dotnet tool install --global sourcelink --version 3.0.0-build.732 +dotnet tool install --global sourcelink ``` -`sourcelink` is a command you can use to test that the source link works. It makes sure all links work for every source file that is not embedded in the PDB. You can test a nupkg, a pdb, or a dll if the pdb is embedded. Run `sourcelink` without any options for a list of diagnostic commands and help: +`sourcelink` is a tool to test that the source link enabled nupkg or pdb file work. It tests all source files listed in the pdb. You can also print diagnostic information for a pdb. Run `sourcelink` without any options for a list of diagnostic commands and help: ``` -SourceLink 3.0.0-build.732 +SourceLink 3.0.0 Source Code On Demand Usage: [options] [command] diff --git a/SourceLink.Create.CommandLine/SourceLink.Create.CommandLine.csproj b/SourceLink.Create.CommandLine/SourceLink.Create.CommandLine.csproj index 24f08d3..d0724e9 100644 --- a/SourceLink.Create.CommandLine/SourceLink.Create.CommandLine.csproj +++ b/SourceLink.Create.CommandLine/SourceLink.Create.CommandLine.csproj @@ -6,6 +6,7 @@ false True + A tool to help enable source link for pdb files using command line applications. git is used by default. diff --git a/build/common.props b/build/common.props index f97334d..1dc7326 100644 --- a/build/common.props +++ b/build/common.props @@ -5,9 +5,5 @@ https://ctaggart.github.io/SourceLink/SourceLink128.jpg https://github.com/ctaggart/SourceLink sourcelink pdb symbols git sourceindexing debugging sourceserver build - - SourceLink: Source Code On Demand - Source Link your Portable PDB files to allow source code to be downloaded on demand - \ No newline at end of file diff --git a/dotnet-sourcelink/sourcelink.csproj b/dotnet-sourcelink/sourcelink.csproj index 2deadaa..cd101db 100644 --- a/dotnet-sourcelink/sourcelink.csproj +++ b/dotnet-sourcelink/sourcelink.csproj @@ -6,6 +6,7 @@ SourceLink sourcelink True + A tool to test that the source link enabled nupkg or pdb file work. It tests all source files listed in the pdb. You can also print diagnostic information for a pdb.