Questions tagged [output-directory]

23 questions
10
votes
1 answer

SBT Scaladoc Configuration

I'm trying to configure the Scaladoc in SBT, specifically the title, output directory and classpath. I managed to define the title by adding the following to build.sbt: scalacOptions in (Compile, doc) ++= Opts.doc.title("Scala-Tools") I can't…
user510159
  • 1,379
  • 14
  • 26
9
votes
0 answers

Copy dll into subfolder in output directory when using NuGet

Let's say I have some NuGet package that contains c++ dll and interop for this dll. When I install this package, I see that my scproj file gets updated with the following reference:
AndreyS
  • 365
  • 7
  • 18
6
votes
2 answers

Babel output paths to maintain directory structure of input paths

Given the following example directory structure: srcDir/file1.js srcDir/subDir1/file2.js srcDir/subDir2/file3.js I want to process those files with babel-cli so that the output files end up in destDir with the same relative directory…
Mercalli
  • 700
  • 6
  • 16
5
votes
1 answer

Change build output directory when building via terminal

Recently, I found a program that is kind of a mix between an IDE and a text editor. It supports the syntax of the language and it does formatting, but it does not build and run the program for you. I am running Mac OS X 10.6.8. I looked up how to…
Martin Tuskevicius
  • 2,590
  • 4
  • 29
  • 46
4
votes
2 answers

Place all output dlls in common directory from Visual Studio

I have a couple of different solutions, in which some projects may depend on output from projects in other solutions. To manage this, I've been copying dll files from the /bin/ folder in each project to a shared library location after build, and…
3
votes
2 answers

Does --css-dir always have to be relative to the project directory?

I'm using compass 0.10.4 I'm running a compass command and I want it to put it's output to the server when I run a watch instead of to the project directory. Is there any way of specifying an absolute path instead of a path relative to the directory…
leeand00
  • 25,510
  • 39
  • 140
  • 297
3
votes
2 answers

How can I open a file I've added to my Windows Store App project programatically?

I want to load a PDF file in response to a Tapped event. I added the file to my project (Add > Existing Item), set "Build Action" to "Content" and "Copy to Output Directory" to "Copy if newer" I'm thinking the code I need may be something like…
1
vote
1 answer

automatically copy static files like css or js from a Blazor component lib into the app's wwwroot

I searched a lot, read about MsBuild, post-build jobs, csproj-config, but did not succeed with this: Static files (like css or js) sitting in a Blazor component lib are not copied to the final app's wwwroot folder What I have: A Blazor webassembly…
1
vote
1 answer

Is it possible to change save path of a file saved by an external library?

I use a library in python called pyansys in which I use a method called save_as_vtk. There it is: documentation This method generates a file for me and saves it to my working directory. I would like that file to be saved elsewhere... I don't want…
1
vote
2 answers

Visual Studio 2008 keeps setting output directory to a relative path

I've got a C# project and I need the output path to be a specific directory, say C:\Program Files\foo. Everytime I close the properties information or build it gets set back to ......\Program File\Foo and i'm not able to debug properly because of…
Boumbles
  • 2,473
  • 3
  • 24
  • 42
1
vote
0 answers

How to avoid putting dll.config files containing EF configuration into bin output directory?

In my build artifacts for .NET(C#) app I have a lot of dll.config files. I don't know why they're put there. I looked at all my packages.config, app.config, web.config files and they have Do Not Copy setting in their property. I can't see any…
Yoda
  • 17,363
  • 67
  • 204
  • 344
1
vote
1 answer

How do I change the output directory for all projects in a solution using VS2012?

How do I change the "Output Directory" for all of the projects under a solution, without having to go through each projects and editing under VS2012? Is there any quick way of achieving it?
1
vote
2 answers

Folder in bin/debug not copying to output directory

I have developed one winform application which using geckofx22.0 and xulrunner . So here i need to copy the xulrunner folder to bin . so i did, and the program works cool. But the problem is when i publish this project it does not copy the xulrunner…
user2696179
0
votes
2 answers

C++ file output directory in Eclipse

I'm using Eclipse as an IDE for C++ programming. On my system I have a network home directory and a data partition. I want the project stored in the home directory (which gets backed up by our admin), but the calculations should be done on the data…
Dominik
  • 59
  • 7
0
votes
1 answer

R markdown / knitr: customize output directory

I am new to Stackoverflow - so please excuse any possible strangeness in my post. I have a simmilar question as Tom, posted here. I want to save a pdf created by markdown in a specific directory. After several unsuccessful attempts (including a…
boris
  • 3
  • 3
1
2