.NET Core - klagan/learning GitHub Wiki

Getting started

[some blurb here]

dotnet Tools

Validate NuGet packages

# install
dotnet tool install --global dotnet-validate --version 0.0.1-preview.280

# example
dotnet validate package local package.nupkg

Check for outdated NuGet references

# install
dotnet tool install --global dotnet-outdated-tool

# example
dotnet outdated -inc My.Nuget.*
dotnet outdated -inc My.Nuget.* -u:Prompt
dotnet outdated -pre Always 

Azure artifacts credential provider

Artifact credential helper


# restore packages
dotnet restore --interactive

# add package
dotnet add package --interactive [some.package]
⚠️ **GitHub.com Fallback** ⚠️