Skip to content

Instantly share code, notes, and snippets.

@dgg
Last active July 3, 2017 10:43
Show Gist options
  • Save dgg/21e3b42e45f7bd8b8e38243785cae7bb to your computer and use it in GitHub Desktop.
Save dgg/21e3b42e45f7bd8b8e38243785cae7bb to your computer and use it in GitHub Desktop.
multi-targeting-source-code-packages
/
|
+---content
| \---Infrastructure
| \---Serialization
| Json_NET.cs
|
+---contentFiles
| \---cs
| \---any
| \---Infrastructure
| \---Serialization
| Json_NET.cs
|
\
<?xml version="1.0"?>
<package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<id>NMoneys.Serialization.Json_NET</id>
<title>NMoneys Serialization: Json.NET</title>
<version>4.0.0.0</version>
<authors>Daniel González García</authors>
<licenseUrl>http://www.opensource.org/licenses/bsd-license.php</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Custom serialization when NMoneys objects are to be serialized/deserialized using Json.NET.</description>
<summary>
NMoneys Serialization: Json.NET is an extension to the NMoneys library that allows customize the serialization and deserialization process
when using the library Json.NET via custom converters.
</summary>
<projectUrl>https://github.com/dgg/nmoneys</projectUrl>
<iconUrl>https://nugetgallery.blob.core.windows.net/icons/NMoneys.2.0.0.0.png</iconUrl>
<tags>.net currency money iso iso4217 serialization newtonsoft Json.NET JSON</tags>
<dependencies>
<group targetFramework="netcoreapp1.0">
<dependency id="nmoneys" version="5.0.0.0" />
<dependency id="newtonsoft.json" version="9.0.1" />
</group>
<group targetFramework="net40">
<dependency id="nmoneys" version="4.0.0.0" />
<dependency id="newtonsoft.json" version="4.5.11" />
</group>
</dependencies>
<contentFiles>
<files include="cs\**\*.*" buildAction="Compile" />
</contentFiles>
</metadata>
<files>
<file src="content\**\Json_NET.cs" target="content" />
<file src="contentfiles\**\Json_NET.cs" target="contentFiles" />
</files>
</package>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment