Skip to content

neogeek/NETStandardClassLibraryTemplate

Repository files navigation

.NET Standard Class Library Template

Template for building a .NET Standard Class Library in Rider.

Build Status Nuget

Install

NuGet

$ dotnet new --install com.scottdoxey.netstandardclasslibrary::1.0.0

or download the latest package file from releases and install via the Project Templates dialog in Rider.

or via command line

$ dotnet new --install "com.scottdoxey.netstandardclasslibrary.1.0.0.nupkg"

Repo

$ dotnet new --install "$(shell pwd)/NETStandardClassLibrary"

Uninstall

NuGet

$ dotnet new --uninstall com.scottdoxey.netstandardclasslibrary

Repo

$ dotnet new --uninstall "$(shell pwd)/NETStandardClassLibrary"

Setup

Build Nuget

$ dotnet pack "$(shell pwd)/NETStandardClassLibraryTemplate.csproj"