baseclass / Contrib.Nuget

Extending nuget with nuget packages
MIT License
30 stars 21 forks source link

Some packages not copy output folder #50

Open Maradaehne opened 6 years ago

Maradaehne commented 6 years ago

We got the issue that not every output folder from our nuget packages will be copied. We treated every nuget package similar but one of the packages will not copy the content of the output folder,

in our nuspec file we added the following line <file src="..\$id$.Tests\bin\$configuration$\$id$.Tests.dll" target="output"/>

nuget package contains a output folder and will be installed, but one of multiple packages will not be copied the output folder. The package which is not working looks like image

Do you have an idea why we face this issue?

romerod commented 6 years ago

Does that package depend on the Baseclass Output package?


From: André Dähne notifications@github.com Sent: Tuesday, March 27, 2018 3:53:21 PM To: baseclass/Contrib.Nuget Cc: Subscribed Subject: [baseclass/Contrib.Nuget] Some packages not copy output folder (#50)

We got the issue that not every output folder from our nuget packages will be copied. We treated every nuget package similar but one of the packages will not copy the content of the output folder,

in our nuspec file we added the following line

nuget package contains a output folder and will be installed, but one of multiple packages will not be copied the output folder. The package which is not working looks like [image]https://user-images.githubusercontent.com/25588591/37971617-b1a4ff44-31d6-11e8-8e5e-cd7491d24904.png

Do you have an idea why we face this issue?

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHubhttps://github.com/baseclass/Contrib.Nuget/issues/50, or mute the threadhttps://github.com/notifications/unsubscribe-auth/ADEJ3k1G0xISmn0YcLG7sZfh510N9Sb1ks5tikRRgaJpZM4S892M.

Maradaehne commented 6 years ago

Yes, it does. here is the packages.config

`<?xml version="1.0" encoding="utf-8"?>

` and we also set the dependencies in the nuspec. ` $id$ $version$ $title$ $author$ $author$ false Utility classes for projects Contains utility classes First draft. $copyright$ Infrastructure Utilities Extensions Parser ` This Package depends on another packages, which uses this also Baseclass Output package. Interesting part is, that this output folders will be copied, but not the output folder of the current package itself. What I also experienced is, that in the package folder of the package where the copying is not working, the folder does not contain a created nuspec file. Normally you create a nuspec while when it tries to copy files, doesn't it?
Maradaehne commented 6 years ago

I found the issue. Was all my fault, please close this issue.

Sorry for the inconvenience.