Skip to content

Commit

Permalink
Configured nuget package
Browse files Browse the repository at this point in the history
  • Loading branch information
kesac committed Dec 27, 2019
1 parent 961928b commit 89e580a
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,6 @@
/Syllabore/.vs/Syllabore/DesignTimeBuild
/Syllabore/Syllabore.Tests/bin/Debug/netcoreapp3.1
/Syllabore/Syllabore.Tests/obj
/Syllabore/Syllabore/bin/Release
/Syllabore/Syllabore.Example/bin/Release/netcoreapp2.1
/Syllabore/Syllabore.Tests/bin/Release/netcoreapp3.1
17 changes: 17 additions & 0 deletions Syllabore/Syllabore/Syllabore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Kevin Sacro</Authors>
<Title>Syllabore</Title>
<Description>A C# library for generating fantasy names. Name generation is done by randomly constructing syllables and joining them. Syllables are formed from a customizable pool of vowels and consonants. Names are checked against predefined constraints to improve the quality of output.</Description>
<Copyright>Copyright (c) 2019 Kevin Sacro</Copyright>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageProjectUrl>https://github.com/kesac/Syllabore</PackageProjectUrl>
<RepositoryUrl>https://github.com/kesac/Syllabore</RepositoryUrl>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageTags>name generation name-generation syllable syllables syllabore fantasy</PackageTags>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>

</Project>

0 comments on commit 89e580a

Please sign in to comment.