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": [
{
"@context": "https://doi.org/10.5063/schema/codemeta-2.0""http://schema.org/name": [
{
"@value": "Kim Abercrombie"
}
],
""@type": "SoftwareSourceCode",[
"http://schema.org/Person"
]
},
{
"description": "Sample exists only to show a sample .nuspec file.","http://schema.org/name": [
{
"@value": "Franck Halmaert"
}
"url": "http://xunit.codeplex.com/"],
"version": "1.2.3","@type": [
"http://schema.org/Person"
"author":]
}
]
}
],
"http://schema.org/description": [
{
"type": "Person""@value": "Sample exists only to show a sample .nuspec file."
"name": "Kim Abercrombie"}
],
},"http://schema.org/license": [
{
"type": "Person""@id": "https://spdx.org/licenses/MIT"
"name": "Franck Halmaert"}
}],
]"http://schema.org/softwareRequirements": [
"license": "https://spdx.org/licenses/MIT",{}
],
"@type": [
"shttp://schema.org/SoftwareRequirements": {SourceCode"
],
"http://schema.org/url": [
"another-package": "3.0.0", {
"yet-another-package": "1.0.0","@id": "http://xunit.codeplex.com/"
}
],
"http://schema.org/version": [
{
"@value": "1.2.3"
}
]
}
]
```