* plist-cil/plist-cil.nuspec:

* plist-cil/plist-cil.csproj:
	  Added NuGet package.

	* SvnInfo.txt:
	  Sync'ed with svn r114
This commit is contained in:
2015-02-25 18:06:20 +00:00
parent 399a043c62
commit df673df0a9
5 changed files with 44 additions and 3 deletions

View File

@@ -1,3 +1,8 @@
2015-02-25 Natalia Portillo <claunia@claunia.com>
* SvnInfo.txt:
Sync'ed with svn r114
2015-02-24 Natalia Portillo <claunia@claunia.com>
* plist-cil.sln:

View File

@@ -3,10 +3,10 @@ Working Copy Root Path: /Development/plist
URL: http://plist.googlecode.com/svn/trunk
Repository Root: http://plist.googlecode.com/svn
Repository UUID: 08b5d097-3e27-63a3-4c6f-efc316e1e7e5
Revision: 113
Revision: 114
Node Kind: directory
Schedule: normal
Last Changed Author: daniel.dreibrodt@gmail.com
Last Changed Rev: 113
Last Changed Date: 2014-11-17 16:31:28 +0000 (lun, 17 nov 2014)
Last Changed Rev: 114
Last Changed Date: 2015-02-24 18:53:46 +0000 (mar, 24 feb 2015)

View File

@@ -1,3 +1,9 @@
2015-02-25 Natalia Portillo <claunia@claunia.com>
* plist-cil.nuspec:
* plist-cil.csproj:
Added NuGet package.
2015-02-24 Natalia Portillo <claunia@claunia.com>
* PropertyListParser.cs:

View File

@@ -31,6 +31,10 @@
<Command type="AfterBuild" command="monodocer -pretty -importslashdoc:plist-cil.xml -assembly:plist-cil.dll -path:docs/mono" workingdir="${TargetDir}" />
<Command type="AfterBuild" command="mdoc export-html -o docs/html docs/mono" workingdir="${TargetDir}" />
<Command type="AfterBuild" command="zip -9r ${ProjectName}.zip ." workingdir="${TargetDir}" />
<Command type="AfterBuild" command="cp README.md README.txt" workingdir="${TargetDir}" />
<Command type="AfterBuild" command="cp ChangeLog ChangeLog.txt" workingdir="${TargetDir}" />
<Command type="AfterBuild" command="cp LICENSE LICENSE.txt" workingdir="${TargetDir}" />
<Command type="AfterBuild" command="nuget pack plist-cil.nuspec -Verbosity Detailed" workingdir="${ProjectDir}" />
</CustomCommands>
</CustomCommands>
</PropertyGroup>
@@ -134,5 +138,6 @@
<Gettext-ScanForTranslations>False</Gettext-ScanForTranslations>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="plist-cil.nuspec" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<package>
<metadata>
<id>plist-cil</id>
<version>1.14</version>
<title>plist-cil</title>
<authors>Natalia Portillo</authors>
<owners>Natalia Portillo</owners>
<licenseUrl>https://raw.githubusercontent.com/claunia/plist-cil/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/claunia/plist-cil</projectUrl>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<description>C#/.NET parser for Apple and GnuStep Property List (aka plist), based on Java's dd-plist</description>
<releaseNotes>Added support for UTF-8 strings in binary property lists</releaseNotes>
<copyright>Copyright (C) 2015 Natalia Portillo</copyright>
<tags>plist apple propertylist property list</tags>
</metadata>
<files>
<file src="bin/Release/*.dll" target="lib"/>
<file src="bin/Release/ChangeLog.txt" target="content\docs"/>
<file src="bin/Release/LICENSE.txt" target="content\docs"/>
<file src="bin/Release/*.xml" target="lib"/>
<file src="bin/Release/README.txt" target="content\docs"/>
<file src="bin/Release/docs/**/*.*" target="content\docs"/>
</files>
</package>