Areasta
Areasta

Reputation: 57

My .net mvc Spark Views are not deployed on the server via MsDeploy (TFS 2010)

I don't understand.. When I build/deploy my .net mvc project in TFS 2010, all my Spark View (.spark files) are not deployed (Buil/deploy is OK).

I have to configure something to deploy these views ?

Upvotes: 2

Views: 178

Answers (2)

Edward Carandang
Edward Carandang

Reputation: 61

You can check the link below if you are using Visual Studio 2010 so that the default BuildAction for spark files will be Content. This way, you won't have to change the Build Action everytime you add a spark view.

http://blog.andreloker.de/post/2010/07/02/Visual-Studio-default-build-action-for-non-default-file-types.aspx

Upvotes: 3

Darin Dimitrov
Darin Dimitrov

Reputation: 1039110

You need to set the Build Action as Content for those files:

enter image description here

Upvotes: 2

Related Questions