summaryrefslogtreecommitdiff
path: root/modules/VC71WorkspaceCreator.pm
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2007-03-14 18:23:10 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2007-03-14 18:23:10 +0000
commitfa71aa154b1a61463e202a1d50ac7e457d7bc0dd (patch)
tree3d900dc17d020f2dac9483a9c7d61c383cfe4bae /modules/VC71WorkspaceCreator.pm
parent3807ae60af1686db328b5bed38505c95edb4fd60 (diff)
downloadMPC-fa71aa154b1a61463e202a1d50ac7e457d7bc0dd.tar.gz
ChangeLogTag: Wed Mar 14 19:20:48 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'modules/VC71WorkspaceCreator.pm')
-rw-r--r--modules/VC71WorkspaceCreator.pm7
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/VC71WorkspaceCreator.pm b/modules/VC71WorkspaceCreator.pm
index adaa8931..f6f3c58c 100644
--- a/modules/VC71WorkspaceCreator.pm
+++ b/modules/VC71WorkspaceCreator.pm
@@ -47,11 +47,16 @@ sub print_inner_project {
my($gen) = shift;
my($pguid) = shift;
my($deps) = shift;
+ my($crlf) = $self->crlf();
my($project_name) = shift;
my($name_to_guid_map) = shift;
+ print $fh "\tProjectSection(WebsiteProperties) = preProject$crlf",
+ "\t\tDebug.AspNetCompiler.Debug = \"True\"$crlf",
+ "\t\tRelease.AspNetCompiler.Debug = \"False\"$crlf",
+ "\tEndProjectSection$crlf";
+
if ($self->allow_empty_dependencies() || defined $$deps[0]) {
- my($crlf) = $self->crlf();
print $fh "\tProjectSection(ProjectDependencies) = postProject$crlf";
foreach my $dep (@$deps) {
my($guid) = $name_to_guid_map->{$dep};