Generating a Nuget + Symbols package I get the error:
Error NU5012: Unable to find 'Autofac.4.9.4.nupkg'. Make sure the project has been built.
The command to generate the package is as follows
nuget pack "C:\rute\al\file\file.csproj" -Verbosity detailed -Symbols -SymbolPackageFormat snupkg -Version 0.0.18
I have other projects, generated with the same command and I do not skip the error. The project on which the command is executed is a .NetFramework project, with its file . Nuspec generated.
The configuration .nuspec is the basic one, without dependencies.
<?xml version="1.0"?>
<package >
<metadata>
<id>$id$</id>
<version>$version$</version>
<title>$title$</title>
<authors>Autor</authors>
<owners>$author$</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>La descripcion</description>
<copyright>Copyright 2020</copyright>
</metadata>
</package>