vote up 3 vote down star
2

I am using an "Inspector.aspx" to do some tests in my Debug build. In a Release build (and more importantly when creating an installer), I manually exclude the page (and it's related C# files) from the project.

Is there a way to automatically exclude files in a selected solution configuration in an ASP.NET project?

C++ projects give control on exclusion/inclusion per file per configuration

flag

48% accept rate

1 Answer

vote up 3 vote down check

One option is to edit your msbuild (*.csproj) file to conditionally exclude certain files based on the Solution Configuration (ie. Debug, Release, etc). For instance:

<Compile 
    Exclude="inspector.aspx" 
    Condition="'$(Configuration)' == 'Release'" />

Similarly you could define an ItemGroup containing only the files that you want to be included in the Debug build:

<ItemGroup Condition="'$(Configuration)' == 'Debug'>
    <Compile Include="inspector.aspx" />
    <Compile Include="...other files..." />
</ItemGroup>
link|flag
I had to do the "reverse" of the first example, and use "Include=" instead of "Exclude=" because it wouldn't compile (VS2008 SP1). – jm Nov 4 at 1:58

Your Answer

Get an OpenID
or

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