nuspec - How do I specify a different target directory install for source files in Nuget? -


here's structure of web development project:

  • web project
    • content
    • my theme
      • content
        • less
        • scripts
        • etc.

when install less bootstrap package, installs files in content directory:

  • web project
    • content
      • bootstrap
    • my theme
      • content
        • less
        • scripts
        • etc.

i want install files here:

  • web project
    • content
      • bootstrap
    • my theme
      • content
        • less
          • alerts.less
          • badges.less
          • etc.
        • scripts
        • etc.

is there way specify target path source files? haven't seen documentation on , questions i've seen pertain specifying .package files installed. have difficult time believing option doesn't exist, considering developers finicky how organize source trees.

currently not supported nuget. location of files defined nuget package , cannot overridden.

there open work item problem discussed proposed solutions has not yet been implemented.


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -