Created
October 12, 2020 16:38
-
-
Save enisn/41c7cdb890e7c46cf1db7b343648ba5f to your computer and use it in GitHub Desktop.
Sample nuget package overview
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<TargetFramework>netstandard2.0</TargetFramework> | |
<PackageId>My.Package</PackageId> | |
<Version>1.0.1</Version> | |
<Authors>enisn</Authors> | |
<Company>enisn</Company> | |
<Product>My Package</Product> | |
<Description>This is my packages description.</Description> | |
<Copyright>All rights reserved</Copyright> | |
<PackageLicenseExpression>MIT</PackageLicenseExpression> | |
<PackageProjectUrl>https://github.com/enisn/MyPackage</PackageProjectUrl> | |
<RepositoryUrl>https://github.com/enisn/MyPackage</RepositoryUrl> | |
<PackageTags>my,awesome,package</PackageTags> | |
<PackageReleaseNotes>Hot fixes</PackageReleaseNotes> | |
</PropertyGroup> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment