diff options
author | Rob Mensching <rob@firegiant.com> | 2022-02-07 21:22:46 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2022-02-08 09:42:04 -0800 |
commit | 6f97699cc2bbcd5395590a77df43583103f71e54 (patch) | |
tree | 3ca2fbceb1c3e2a7e922da276fe030ff177d3347 | |
parent | 92476046d8739cfb1411b605e57636208ac5af3c (diff) | |
download | wix-6f97699cc2bbcd5395590a77df43583103f71e54.tar.gz wix-6f97699cc2bbcd5395590a77df43583103f71e54.tar.bz2 wix-6f97699cc2bbcd5395590a77df43583103f71e54.zip |
Add missing DEBUG #define to C# projects when building debug
-rw-r--r-- | src/Directory.csproj.targets | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Directory.csproj.targets b/src/Directory.csproj.targets index c9927fd7..b131565c 100644 --- a/src/Directory.csproj.targets +++ b/src/Directory.csproj.targets | |||
@@ -7,6 +7,7 @@ | |||
7 | <PropertyGroup> | 7 | <PropertyGroup> |
8 | <CreateDocumentation Condition=" '$(CreateDocumentationFile)'!='true' ">false</CreateDocumentation> | 8 | <CreateDocumentation Condition=" '$(CreateDocumentationFile)'!='true' ">false</CreateDocumentation> |
9 | <DocumentationFile Condition=" '$(CreateDocumentationFile)'=='true' ">$(OutputPath)\$(AssemblyName).xml</DocumentationFile> | 9 | <DocumentationFile Condition=" '$(CreateDocumentationFile)'=='true' ">$(OutputPath)\$(AssemblyName).xml</DocumentationFile> |
10 | <DefineConstants Condition=" '$(Configuration)'=='Debug' ">$(DefineConstants);DEBUG</DefineConstants> | ||
10 | </PropertyGroup> | 11 | </PropertyGroup> |
11 | 12 | ||
12 | <Target Name="__SetAssemblyInfoFromGit" DependsOnTargets="__SetPropertiesFromGit" BeforeTargets="GetAssemblyVersion" /> | 13 | <Target Name="__SetAssemblyInfoFromGit" DependsOnTargets="__SetPropertiesFromGit" BeforeTargets="GetAssemblyVersion" /> |