An example nuget.config file:
```
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>sample</id>
<version>1.2.3</version>
<authors>Kim Abercrombie, Franck Halmaert</authors>
<description>Sample exists only to show a sample .nuspec file.</description>
<language>en-US</language>
<projectUrl>http://xunit.codeplex.com/</projectUrl>
<license type="expression">MIT</license>
<dependencies>
<dependency id="another-package" version="3.0.0" />
<dependency id="yet-another-package" version="1.0.0" />
</dependencies>
</metadata>
<files>
<file src="bin\Debug\*.dll" target="lib" />
</files>
</package>
```
In codemeta:
```
[
{
"http://schema.org/author": [
{
"@list": [
{
"http://schema.org/name": [
{
"@value": "Kim Abercrombie"
}
],
"@type": [
"http://schema.org/Person"
]
},
{
"http://schema.org/name": [
{
"@value": "Franck Halmaert"
}
],
"@type": [
"http://schema.org/Person"
]
}
]"@context": "https://raw.githubusercontent.com/codemeta/codemeta/2.0/codemeta.jsonld",
}"type": "SoftwareSourceCode",
],"author": [
"http://schema.org/description": [
{
"@value": "Sample exists only to show a sample .nuspec file."
}
],
"http://schema.org/license": [
{
"@id"type": "https://spdx.org/licenses/MIT"Person",
}"name": "Kim Abercrombie"
]},
"http://schema.org/softwareRequirements": [{
{}
],
"@type": ["type": "Person",
"http://schema.org/SoftwareSourceCode""name": "Franck Halmaert"
],
"http://schema.org/url": [
{
"@id": "http://xunit.codeplex.com/"
}
],
"http://schema.org/version": [
{"description": "Sample exists only to show a sample .nuspec file.",
"@value": "1.2.3""license": "https://spdx.org/licenses/MIT",
}"softwareRequirements": {},
]"url": "http://xunit.codeplex.com/",
}"version": "1.2.3"
]}
```