From 071bd3a1107d673ae432744da9c9407fe4222d40 Mon Sep 17 00:00:00 2001 From: Carl de Billy Date: Tue, 21 Aug 2018 16:28:43 -0400 Subject: [PATCH] Fixed missing "global::" for attributes on builder --- .editorconfig | 2 +- src/Uno.CodeGen/ImmutableGenerator.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.editorconfig b/.editorconfig index 62a0b5c..7e6b487 100644 --- a/.editorconfig +++ b/.editorconfig @@ -16,4 +16,4 @@ indent_style = tab indent_style = tab [*.json] -indent_style = tab \ No newline at end of file +indent_style = tab diff --git a/src/Uno.CodeGen/ImmutableGenerator.cs b/src/Uno.CodeGen/ImmutableGenerator.cs index 4a5c8a5..d24c271 100644 --- a/src/Uno.CodeGen/ImmutableGenerator.cs +++ b/src/Uno.CodeGen/ImmutableGenerator.cs @@ -961,7 +961,7 @@ $@"public sealed class {symbolName}BuilderJsonConverterTo{symbolName}{genericArg continue; // should be ignored } - yield return $"[{attrResult}]{Environment.NewLine}"; + yield return $"[global::{attrResult}]{Environment.NewLine}"; } }