Skip to content

loic-sharma/symbols

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Symbol downloader

This downloads symbols missing from your build. Use it by adding a dependency to Cobalt.Symbols.MSBuild:

<Project Sdk="Microsoft.NET.Sdk">

  ...

  <ItemGroup>
    <PackageReference Include="Cobalt.Symbols.MSBuild" Version="1.0.0" />
  </ItemGroup>

</Project>

Development

Building this package requires manual steps:

Steps:

  1. Create the tool to download symbols

    1. dotnet publish -c Release -f net472 ./src/Cobalt.Symbols.Downloader/
    2. dotnet publish -c Release -f net5.0 ./src/Cobalt.Symbols.Downloader/
  2. Create the NuGet package

    1. Create the base package: dotnet pack -c Release ./src/Cobalt.Symbols.MSBuild
    2. Use NuGet Package Explorer to open ./src/Cobalt.Symbols.MSBuild/bin/Release/Cobalt.Symbols.MSBuild.1.0.0.nupkg
    3. Add the tool to the NuGet package
      1. Copy all files from ./src/Cobalt.Symbols.Downloader/bin/Release/net472/publish/ into the package at path tools/net472
      2. Copy all files from ../src/Cobalt.Symbols.Downloader/bin/Release/net5.0/publish/ into the package at path tools/net5.0

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages