<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
    <metadata>
        <!-- The identifier that must be unique within the hosting gallery -->
        <id>$id$</id>
        <title>{{packageTitle}}</title>

        <!-- The package version number that is used when resolving dependencies -->
        <version>$version$</version>

        <!-- Authors contain text that appears directly on the gallery -->
        <authors>$author$</authors>

        <!-- Owners are typically nuget.org identities that allow gallery
             users to earily find other packages by the same owners.  -->
        <owners>$author$</owners>
        <requireLicenseAcceptance>false</requireLicenseAcceptance>
        <developmentDependency>false</developmentDependency>

        <!-- The description can be used in package manager UI. Note that the
             nuget.org gallery uses information you add in the portal. -->
        <description>{{packageDescription}}</description>
        {{#termsOfService}}
        <copyright>{{termsOfService}}</copyright>
        {{/termsOfService}}
        {{#licenseUrl}}
        <licenseUrl>{{licenseUrl}}</licenseUrl>
        {{/licenseUrl}}

        <!-- Dependencies are automatically installed when the package is installed -->
        <dependencies>

            <dependency id="NewtonSoft.Json" version="10.0.3" />
            <dependency id="JsonSubTypes" version="1.2.0" />
            <dependency id="RestSharp" version="105.1.0" />
            {{#generatePropertyChanged}}
            <dependency id="Fody" version="1.29.4" />
            <dependency id="PropertyChanged.Fody" version="1.51.3" />
            {{/generatePropertyChanged}}

        </dependencies>
    </metadata>
    <files>

        <!-- A readme.txt will be displayed when the package is installed -->
        <file src="..\..\README.md" target="" />
        <file src="..\..\docs\**\*.*" target="docs" />
        {{#generatePropertyChanged}}
        <file src="..\..\packages\Fody.1.29.4\build\portable-net+sl+win+wpa+wp\Fody.targets" target="build" />
        {{/generatePropertyChanged}}

    </files>
</package>
