Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there an effective way to share visual assets between different projects?

This would include images, CSS and JavaScript.

I've looked at the following stack questions which don't seem to answer this question: Sharing css/javascript/images between different projects in Visual Studio http://stackoverflow.com/questions/1041481/visual-studio-resource-css-js-images-sharing-between-web-projects Handling common JavaScript files in Visual Studio 2010

We make use of TFS, not sure if that might have something we can use?

Regards, Jacques

share|improve this question

1 Answer

up vote 2 down vote accepted

There's nothing built-in ASP.NET MVC that will allow you to generate links to other ASP.NET applications. All the helpers work with relative controller actions for the current application. If all your static files are located inside another ASP.NET application (a sort of custom CDN) then you could define the base location of this application in your web.config and then build custom helpers that will serve those resources:

@Html.Resource("/foo.js", "text/javascript")

and the custom helper will generate an absolute url to this external resource.

share|improve this answer
Thanks @Darin. That might work for us – Jacques Sep 20 '12 at 12:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.