diff options
| author | Rob Mensching <rob@firegiant.com> | 2022-02-23 13:24:47 -0800 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2022-02-23 18:33:52 -0800 |
| commit | 4fedc39af8de23f7393a2fe6c80ecd8944ca5d72 (patch) | |
| tree | 38353da5da7804474aebe09779abed789f6a8b49 | |
| parent | ab3daf1863af104523eadd3af143b835a81c2248 (diff) | |
| download | wix-4fedc39af8de23f7393a2fe6c80ecd8944ca5d72.tar.gz wix-4fedc39af8de23f7393a2fe6c80ecd8944ca5d72.tar.bz2 wix-4fedc39af8de23f7393a2fe6c80ecd8944ca5d72.zip | |
Ensure CoreCompile rebuilds when referenced projects are updated
| -rw-r--r-- | src/wix/WixToolset.Sdk/tools/wix.targets | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/wix/WixToolset.Sdk/tools/wix.targets b/src/wix/WixToolset.Sdk/tools/wix.targets index bbb73a52..247e0dd2 100644 --- a/src/wix/WixToolset.Sdk/tools/wix.targets +++ b/src/wix/WixToolset.Sdk/tools/wix.targets | |||
| @@ -519,7 +519,7 @@ | |||
| 519 | --> | 519 | --> |
| 520 | <Target | 520 | <Target |
| 521 | Name="CreateManifestResourceNames" | 521 | Name="CreateManifestResourceNames" |
| 522 | Condition=" '@(EmbeddedResource)' !='' "> | 522 | Condition=" '@(EmbeddedResource)' != '' "> |
| 523 | 523 | ||
| 524 | <ItemGroup> | 524 | <ItemGroup> |
| 525 | <_WixLocalizationFile Include="@(EmbeddedResource)"> | 525 | <_WixLocalizationFile Include="@(EmbeddedResource)"> |
| @@ -571,7 +571,8 @@ | |||
| 571 | </PropertyGroup> | 571 | </PropertyGroup> |
| 572 | <Target | 572 | <Target |
| 573 | Name="CoreCompile" | 573 | Name="CoreCompile" |
| 574 | Inputs="@(Compile); | 574 | Inputs="$(MSBuildAllProjects); |
| 575 | @(Compile); | ||
| 575 | @(Content); | 576 | @(Content); |
| 576 | @(_WixLocalizationFile); | 577 | @(_WixLocalizationFile); |
| 577 | @(_WixReferencedProjectOutputs); | 578 | @(_WixReferencedProjectOutputs); |
