Skip to content

Commit e9c0c83

Browse files
committed
Add package properties.
1 parent 06ae5ec commit e9c0c83

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,26 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4+
<VersionPrefix>0.1.0</VersionPrefix>
45
<TargetFramework>netstandard2.0</TargetFramework>
6+
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
7+
<Title>Playground Library</Title>
8+
<Description>Simple library to test publishing with GitHub Actions.</Description>
9+
<Copyright>Copyright 2019 Bradley Grainger</Copyright>
10+
<Authors>Bradley Grainger</Authors>
11+
<PackageProjectUrl>https://github.com/mysql-net/Playground</PackageProjectUrl>
12+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
13+
<RepositoryType>git</RepositoryType>
14+
<RepositoryUrl>https://github.com/mysql-net/Playground.git</RepositoryUrl>
15+
<IncludeSymbols>true</IncludeSymbols>
16+
<DebugType>portable</DebugType>
17+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
18+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
19+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
520
</PropertyGroup>
621

22+
<ItemGroup>
23+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-19367-01" PrivateAssets="All"/>
24+
</ItemGroup>
25+
726
</Project>

0 commit comments

Comments
 (0)