Add missing $ before string in generated ReflectionCache source

This commit is contained in:
YoshiRulz 2021-07-27 20:57:57 +10:00
parent cf92bfd9b4
commit 4f7a641453
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
2 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ namespace {nSpace}
public static Stream EmbeddedResourceStream(string embedPath)
{{
var fullPath = $""{nSpace}.{{embedPath}}"";
return Asm.GetManifestResourceStream(fullPath) ?? throw new ArgumentException(""resource at {{fullPath}} not found"", nameof(embedPath));
return Asm.GetManifestResourceStream(fullPath) ?? throw new ArgumentException($""resource at {{fullPath}} not found"", nameof(embedPath));
}}
}}
}}