I have a ASP.NET MVC2 project in VS2010 that can be deployed in two modes: standalone or plugin. In standalone mode, the views should live outside the compiled assembly as .aspx files (the default setup). In plugin mode, the views are switched (currently by hand) to embedded resources and the entire assembly is dropped into a host project folder.

Currently, this requires the developer to go through each view and switch it from Build Action: "Content" to "Embedded Resource" and vice versa. I would like to create a new solution configuration to automatically grab all .aspx files and build them as resources.

This SO post seems like the solution, but I would prefer not to have to edit the .csproj every single time I add a new view to the project. Is there a way to use a wild cards or some other batch/global conditionally statement to change resources from content to embedded?

link|improve this question

77% accept rate
1  
I don't know of some way to do this in the GUI. It seems to me that the post you mention is the way to go. 1 extra minute or so per view is not a high price to pay for the ability to switch at build time. – Tom Cabanski Apr 22 '10 at 14:44
I don't mind hand editing the .csproj, I was just hoping for a way to do it globally--not to save time, but to reduce deployment errors due to "I forgot!" moments. – jslatts Apr 22 '10 at 14:50
feedback

1 Answer

up vote 3 down vote accepted

Well, sometimes I should experiment before I post.

I modified my .csproj file and just went ahead and tried a wild card:

Views\*\*.aspx

...and it worked great. I posted a snippet of my reconfigured project file below. One thing to note: adding a new view puts it in the "always content" category at the top of the snippet below. You can either live with having .aspx files deployed even when the views are embedded as resources (not an issue for me) or you can move them from the first ItemGroup below to the Otherwise section each time by hand.

 <ItemGroup>                              <-- Always included as content
    <Content Include="Global.asax" />
    <Content Include="Web.config">
      <SubType>Designer</SubType>
    </Content>
    <Content Include="Web.Debug.config">
      <DependentUpon>Web.config</DependentUpon>
    </Content>
    <Content Include="Web.Release.config">
      <DependentUpon>Web.config</DependentUpon>
    </Content>
  </ItemGroup>
<Choose>                             <--- Only added to assembly in "Plugin Mode"
    <When Condition=" '$(Configuration)'=='Plugin' ">
      <ItemGroup>                  
        <EmbeddedResource Include="Views\*\*.aspx">
        </EmbeddedResource>
      </ItemGroup>
    </When>
    <Otherwise>
      <ItemGroup>
        <Content Include="Views\Comment\Create.aspx" />
        <Content Include="Views\Record\Create.aspx" />
      </ItemGroup>
    </Otherwise>
  </Choose>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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