diff options
Diffstat (limited to 'Decompiler/Gestor.Application.Properties')
| -rw-r--r-- | Decompiler/Gestor.Application.Properties/Resources.cs | 70 | ||||
| -rw-r--r-- | Decompiler/Gestor.Application.Properties/Settings.cs | 14 |
2 files changed, 84 insertions, 0 deletions
diff --git a/Decompiler/Gestor.Application.Properties/Resources.cs b/Decompiler/Gestor.Application.Properties/Resources.cs new file mode 100644 index 0000000..8bf597c --- /dev/null +++ b/Decompiler/Gestor.Application.Properties/Resources.cs @@ -0,0 +1,70 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.Globalization; +using System.Resources; +using System.Runtime.CompilerServices; + +namespace Gestor.Application.Properties; + +[GeneratedCode("System.Resources.Tools.StronglyTypedResourceBuilder", "18.0.0.0")] +[DebuggerNonUserCode] +[CompilerGenerated] +internal class Resources +{ + private static ResourceManager resourceMan; + + private static CultureInfo resourceCulture; + + [EditorBrowsable(EditorBrowsableState.Advanced)] + internal static ResourceManager ResourceManager + { + get + { + if (resourceMan == null) + { + resourceMan = new ResourceManager("Gestor.Application.Properties.Resources", typeof(Resources).Assembly); + } + return resourceMan; + } + } + + [EditorBrowsable(EditorBrowsableState.Advanced)] + internal static CultureInfo Culture + { + get + { + return resourceCulture; + } + set + { + resourceCulture = value; + } + } + + internal static string ColumnTemplate => ResourceManager.GetString("ColumnTemplate", resourceCulture); + + internal static string FooterTemplate => ResourceManager.GetString("FooterTemplate", resourceCulture); + + internal static string HeaderTemplate => ResourceManager.GetString("HeaderTemplate", resourceCulture); + + internal static string New => ResourceManager.GetString("New", resourceCulture); + + internal static string ProtocoloPageTemplate => ResourceManager.GetString("ProtocoloPageTemplate", resourceCulture); + + internal static string ProtocoloTemplate => ResourceManager.GetString("ProtocoloTemplate", resourceCulture); + + internal static string RelatorioMultipleTemplate => ResourceManager.GetString("RelatorioMultipleTemplate", resourceCulture); + + internal static string RelatorioTemplate => ResourceManager.GetString("RelatorioTemplate", resourceCulture); + + internal static string RowTemplate => ResourceManager.GetString("RowTemplate", resourceCulture); + + internal static string TableMultipleTemplate => ResourceManager.GetString("TableMultipleTemplate", resourceCulture); + + internal static string TableTemplate => ResourceManager.GetString("TableTemplate", resourceCulture); + + internal Resources() + { + } +} diff --git a/Decompiler/Gestor.Application.Properties/Settings.cs b/Decompiler/Gestor.Application.Properties/Settings.cs new file mode 100644 index 0000000..e14706a --- /dev/null +++ b/Decompiler/Gestor.Application.Properties/Settings.cs @@ -0,0 +1,14 @@ +using System.CodeDom.Compiler; +using System.Configuration; +using System.Runtime.CompilerServices; + +namespace Gestor.Application.Properties; + +[CompilerGenerated] +[GeneratedCode("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.14.0.0")] +internal sealed class Settings : ApplicationSettingsBase +{ + private static Settings defaultInstance = (Settings)(object)SettingsBase.Synchronized((SettingsBase)(object)new Settings()); + + public static Settings Default => defaultInstance; +} |