From dd7b47d5952e60a473b3f4d516f20f1db55c7336 Mon Sep 17 00:00:00 2001 From: Christopher Warrington Date: Mon, 29 Jun 2020 13:17:08 -0700 Subject: [PATCH] [c#] Be explicit about codegen target dependencies The MSBuild target `BondCompileCs` depends on the target `BondCodegenCs` to populate the `@_BondCodegenWithDefaultOptions` item. It is currently always running after `BondCompileCs` since it comes after that target in the .targets file. Adding an explicit `DependsOnTargets="BondCodegenCs"` is more robust. --- cs/build/nuget/Common.targets | 1 + 1 file changed, 1 insertion(+) diff --git a/cs/build/nuget/Common.targets b/cs/build/nuget/Common.targets index 7894ba2544..c88774263c 100644 --- a/cs/build/nuget/Common.targets +++ b/cs/build/nuget/Common.targets @@ -177,6 +177,7 @@ -->