From d9b339c8a1d773535f61c5a82da136b81bb4b782 Mon Sep 17 00:00:00 2001 From: Llywelwyn Date: Mon, 25 Jul 2022 11:01:43 +0100 Subject: [PATCH] project rename project rename --- .../Properties/Resources.Designer.cs | 71 ------------------- .../Properties/Settings.Designer.cs | 30 -------- ...rator.sln => CharacterRecordsGenerator.sln | 6 +- .../App.config | 0 .../App.xaml | 4 +- .../App.xaml.cs | 2 +- .../CharacterRecordsGenerator.csproj | 31 +++++++- .../GeneratedResultWindow.xaml | 4 +- .../GeneratedResultWindow.xaml.cs | 2 +- .../Properties/AssemblyInfo.cs | 6 +- .../Properties/Resources.Designer.cs | 63 ++++++++++++++++ .../Properties/Resources.resx | 0 .../Properties/Settings.Designer.cs | 26 +++++++ .../Properties/Settings.settings | 0 .../Record.cs | 2 +- .../RecordEditor.xaml | 11 +-- .../RecordEditor.xaml.cs | 2 +- .../RecordFormatter.cs | 2 +- .../RecordFormatterGenerationMethods.cs | 2 +- .../Types.cs | 2 +- .../Utility.cs | 2 +- .../packages.config | 0 22 files changed, 142 insertions(+), 126 deletions(-) delete mode 100644 AuroraRecordGenerator/Properties/Resources.Designer.cs delete mode 100644 AuroraRecordGenerator/Properties/Settings.Designer.cs rename AuroraRecordGenerator.sln => CharacterRecordsGenerator.sln (83%) rename {AuroraRecordGenerator => CharacterRecordsGenerator}/App.config (100%) rename {AuroraRecordGenerator => CharacterRecordsGenerator}/App.xaml (91%) rename {AuroraRecordGenerator => CharacterRecordsGenerator}/App.xaml.cs (89%) rename AuroraRecordGenerator/AuroraRecordGenerator.csproj => CharacterRecordsGenerator/CharacterRecordsGenerator.csproj (86%) rename {AuroraRecordGenerator => CharacterRecordsGenerator}/GeneratedResultWindow.xaml (89%) rename {AuroraRecordGenerator => CharacterRecordsGenerator}/GeneratedResultWindow.xaml.cs (92%) rename {AuroraRecordGenerator => CharacterRecordsGenerator}/Properties/AssemblyInfo.cs (93%) create mode 100644 CharacterRecordsGenerator/Properties/Resources.Designer.cs rename {AuroraRecordGenerator => CharacterRecordsGenerator}/Properties/Resources.resx (100%) create mode 100644 CharacterRecordsGenerator/Properties/Settings.Designer.cs rename {AuroraRecordGenerator => CharacterRecordsGenerator}/Properties/Settings.settings (100%) rename {AuroraRecordGenerator => CharacterRecordsGenerator}/Record.cs (98%) rename {AuroraRecordGenerator => CharacterRecordsGenerator}/RecordEditor.xaml (98%) rename {AuroraRecordGenerator => CharacterRecordsGenerator}/RecordEditor.xaml.cs (99%) rename {AuroraRecordGenerator => CharacterRecordsGenerator}/RecordFormatter.cs (99%) rename {AuroraRecordGenerator => CharacterRecordsGenerator}/RecordFormatterGenerationMethods.cs (99%) rename {AuroraRecordGenerator => CharacterRecordsGenerator}/Types.cs (99%) rename {AuroraRecordGenerator => CharacterRecordsGenerator}/Utility.cs (99%) rename {AuroraRecordGenerator => CharacterRecordsGenerator}/packages.config (100%) diff --git a/AuroraRecordGenerator/Properties/Resources.Designer.cs b/AuroraRecordGenerator/Properties/Resources.Designer.cs deleted file mode 100644 index b385641..0000000 --- a/AuroraRecordGenerator/Properties/Resources.Designer.cs +++ /dev/null @@ -1,71 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -namespace AuroraRecordGenerator.Properties -{ - - - /// - /// A strongly-typed resource class, for looking up localized strings, etc. - /// - // This class was auto-generated by the StronglyTypedResourceBuilder - // class via a tool like ResGen or Visual Studio. - // To add or remove a member, edit your .ResX file then rerun ResGen - // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - internal class Resources - { - - private static global::System.Resources.ResourceManager resourceMan; - - private static global::System.Globalization.CultureInfo resourceCulture; - - [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal Resources() - { - } - - /// - /// Returns the cached ResourceManager instance used by this class. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Resources.ResourceManager ResourceManager - { - get - { - if ((resourceMan == null)) - { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("AuroraRecordGenerator.Properties.Resources", typeof(Resources).Assembly); - resourceMan = temp; - } - return resourceMan; - } - } - - /// - /// Overrides the current thread's CurrentUICulture property for all - /// resource lookups using this strongly typed resource class. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Globalization.CultureInfo Culture - { - get - { - return resourceCulture; - } - set - { - resourceCulture = value; - } - } - } -} diff --git a/AuroraRecordGenerator/Properties/Settings.Designer.cs b/AuroraRecordGenerator/Properties/Settings.Designer.cs deleted file mode 100644 index 5ea6d6e..0000000 --- a/AuroraRecordGenerator/Properties/Settings.Designer.cs +++ /dev/null @@ -1,30 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -namespace AuroraRecordGenerator.Properties -{ - - - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] - internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase - { - - private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); - - public static Settings Default - { - get - { - return defaultInstance; - } - } - } -} diff --git a/AuroraRecordGenerator.sln b/CharacterRecordsGenerator.sln similarity index 83% rename from AuroraRecordGenerator.sln rename to CharacterRecordsGenerator.sln index d3428c0..9a8724e 100644 --- a/AuroraRecordGenerator.sln +++ b/CharacterRecordsGenerator.sln @@ -1,9 +1,9 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 15 -VisualStudioVersion = 15.0.28307.421 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.31702.278 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AuroraRecordGenerator", "AuroraRecordGenerator\AuroraRecordGenerator.csproj", "{2E1295C2-7BD9-454E-B13E-8A22448DD5F6}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CharacterRecordsGenerator", "CharacterRecordsGenerator\CharacterRecordsGenerator.csproj", "{2E1295C2-7BD9-454E-B13E-8A22448DD5F6}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/AuroraRecordGenerator/App.config b/CharacterRecordsGenerator/App.config similarity index 100% rename from AuroraRecordGenerator/App.config rename to CharacterRecordsGenerator/App.config diff --git a/AuroraRecordGenerator/App.xaml b/CharacterRecordsGenerator/App.xaml similarity index 91% rename from AuroraRecordGenerator/App.xaml rename to CharacterRecordsGenerator/App.xaml index 120aad2..186554e 100644 --- a/AuroraRecordGenerator/App.xaml +++ b/CharacterRecordsGenerator/App.xaml @@ -1,7 +1,7 @@ - diff --git a/AuroraRecordGenerator/App.xaml.cs b/CharacterRecordsGenerator/App.xaml.cs similarity index 89% rename from AuroraRecordGenerator/App.xaml.cs rename to CharacterRecordsGenerator/App.xaml.cs index 1f8bb50..f03a881 100644 --- a/AuroraRecordGenerator/App.xaml.cs +++ b/CharacterRecordsGenerator/App.xaml.cs @@ -6,7 +6,7 @@ using System.Linq; using System.Threading.Tasks; using System.Windows; -namespace AuroraRecordGenerator +namespace CharacterRecordsGenerator { /// /// Interaction logic for App.xaml diff --git a/AuroraRecordGenerator/AuroraRecordGenerator.csproj b/CharacterRecordsGenerator/CharacterRecordsGenerator.csproj similarity index 86% rename from AuroraRecordGenerator/AuroraRecordGenerator.csproj rename to CharacterRecordsGenerator/CharacterRecordsGenerator.csproj index 83ebbbd..b530186 100644 --- a/AuroraRecordGenerator/AuroraRecordGenerator.csproj +++ b/CharacterRecordsGenerator/CharacterRecordsGenerator.csproj @@ -7,13 +7,28 @@ {2E1295C2-7BD9-454E-B13E-8A22448DD5F6} WinExe Properties - AuroraRecordGenerator - AuroraRecordGenerator + CharacterRecordsGenerator + Character Records Generator v4.5.2 512 {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 4 true + false + publish\ + true + Disk + false + Foreground + 7 + Days + false + false + true + 0 + 2.0.0.%2a + false + true AnyCPU @@ -157,6 +172,18 @@ + + + False + Microsoft .NET Framework 4.5.2 %28x86 and x64%29 + true + + + False + .NET Framework 3.5 SP1 + false + +