package - nuget pack content files only -
i'd create nuget package (from c# project), don't want embed generated dll, static files instead.
i added tag @ end of nuspec file, nuget pack command continues embed project.dll in package. thing don't want dll published.
is there way that?
thanks,
régis
yes. can create .nuspec file references content files.
you must use nuget pack mypackage.nuspec
don't pack .csproj file causes nuget include built assembly.
see http://docs.nuget.org/create/nuspec reference more info.
Comments
Post a Comment