From 2b288b7ebe4e8b4196278568ad04644e7a2cde9a Mon Sep 17 00:00:00 2001 From: Daniel Cazzulino Date: Tue, 22 Feb 2022 11:05:36 -0300 Subject: [PATCH] Packages should not be transitive Since the generated code is typically internal only, it doesn't make a lot of sense to make the packages transitive (via the buildTransitive targets) to referencing projects. The decision on whether a specific project needs its own ThisAssembly or not should be on the consumer. This also removes the error where the referenced project that uses these packages also has an InternalsVisibleTo to the referencing project ,which would then cause an ambiguous reference to ThisAssembly since it lives in two places with the exact same name. Fixes #86 --- src/Directory.targets | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Directory.targets b/src/Directory.targets index 54ff8c90..6e258635 100644 --- a/src/Directory.targets +++ b/src/Directory.targets @@ -12,7 +12,6 @@ - \ No newline at end of file