-
Notifications
You must be signed in to change notification settings - Fork 153
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CopyBinaries target does not support web application projects #152
Comments
Is this is just a different convention for the default output path of the project, or is it something more hardwired, IE not possible to change in project->properties->build->output path? Pre CopyBinaries, each new project had to manually set the output path to In order to fix this we have to either:
|
Hi, your new solution is top. But a WebApplication has this as default and also need this setting; otherwise it's not abel to load its binaries on startup. Maybe you can check on your loop method if |
Well, but using the project's output path from Release configuration would be better ;) @forki told me that you could port the Paket detection code over to FAKE maybe. Edit: https://github.com/fsprojects/Paket/blob/master/src/Paket.Core/ProjectFile.fs#L496 |
Would be cool to have the output detection in the ProjectFile helper or something? But: I have expended my Yak shaving quota for some time now, which mean I have no idea when I might get the chance to have a go at this |
The CopyBinaries target was introduced in pull request #116 and copies all data from each project's
bin/Release/
folder into the bin folder.A web application project does only have a
bin/
folder, whatever configuration (Debug; Release) is used. So as soon as you add a web application project to your solution this task fails because it cannot find thebin/Release
folder. It should use thebin/
folder instead.//cc @Vidarls
The text was updated successfully, but these errors were encountered: