Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NuGet Support #9

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions PlistCS/PlistCS/PlistCS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@
<Compile Include="PlistTests.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="PlistCS.nuspec" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
Expand Down
18 changes: 18 additions & 0 deletions PlistCS/PlistCS/PlistCS.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?xml version="1.0"?>
<package >
<metadata>
<id>$id$</id>
<version>$version$</version>
<title>$title$</title>
<authors>Mark Tilton, $author$</authors>
<owners>Mark Tilton, $author$</owners>
<licenseUrl>https://github.com/animetrics/PlistCS/blob/master/PlistCS/Src/Plist.cs</licenseUrl>
<projectUrl>https://github.com/animetrics/PlistCS</projectUrl>
<!--<iconUrl>http://ICON_URL_HERE_OR_DELETE_THIS_LINE</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>-->
<description>$description$</description>
<releaseNotes>Initial release.</releaseNotes>
<copyright>Copyright Mark Tilton, Animetrics Inc. 2014</copyright>
<tags>plist</tags>
</metadata>
</package>
2 changes: 1 addition & 1 deletion PlistCS/PlistCS/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("PlistCS")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyDescription("A C# Property List (plist) serialization library.")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Animetrics")]
[assembly: AssemblyProduct("PlistCS")]
Expand Down