diff --git a/GitTools/GitTools.sln b/GitTools.sln similarity index 69% rename from GitTools/GitTools.sln rename to GitTools.sln index c6d7f8a..bf76eef 100644 --- a/GitTools/GitTools.sln +++ b/GitTools.sln @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.12.35309.182 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GitTools", "..\GitTools.csproj", "{9DEDF5CE-AF1A-4AF9-9894-8F825B0FB411}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GitTools", "GitTools\GitTools.csproj", "{A0233120-32E7-4E74-8132-7864F234A746}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -11,10 +11,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {9DEDF5CE-AF1A-4AF9-9894-8F825B0FB411}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {9DEDF5CE-AF1A-4AF9-9894-8F825B0FB411}.Debug|Any CPU.Build.0 = Debug|Any CPU - {9DEDF5CE-AF1A-4AF9-9894-8F825B0FB411}.Release|Any CPU.ActiveCfg = Release|Any CPU - {9DEDF5CE-AF1A-4AF9-9894-8F825B0FB411}.Release|Any CPU.Build.0 = Release|Any CPU + {A0233120-32E7-4E74-8132-7864F234A746}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A0233120-32E7-4E74-8132-7864F234A746}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A0233120-32E7-4E74-8132-7864F234A746}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A0233120-32E7-4E74-8132-7864F234A746}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/GitTools/CLI/CLIParser.cs b/GitTools/CLI/CLIParser.cs index 9fb8991..6d9ea7f 100644 --- a/GitTools/CLI/CLIParser.cs +++ b/GitTools/CLI/CLIParser.cs @@ -1,6 +1,6 @@ using CommandLine; -namespace Iswenzz.GitTools.CLI +namespace GitTools.CLI { /// /// Class for parsing the program arguments. diff --git a/GitTools/CLI/CopyCommits.cs b/GitTools/CLI/CopyCommits.cs index 3a4ab39..a703578 100644 --- a/GitTools/CLI/CopyCommits.cs +++ b/GitTools/CLI/CopyCommits.cs @@ -7,10 +7,10 @@ using CommandLine.Text; using LibGit2Sharp; -using Iswenzz.GitTools.Sys; -using Iswenzz.GitTools.Utils; +using GitTools.Sys; +using GitTools.Utils; -namespace Iswenzz.GitTools.CLI +namespace GitTools.CLI { /// /// Command to copy commits from one repository to another. diff --git a/GitTools/CLI/ICMD.cs b/GitTools/CLI/ICMD.cs index dbfb7f5..0d8ba06 100644 --- a/GitTools/CLI/ICMD.cs +++ b/GitTools/CLI/ICMD.cs @@ -1,4 +1,4 @@ -namespace Iswenzz.GitTools.CLI +namespace GitTools.CLI { /// /// Executable command interface. diff --git a/GitTools/CLI/MockCommit.cs b/GitTools/CLI/MockCommit.cs index 26004c7..4403d06 100644 --- a/GitTools/CLI/MockCommit.cs +++ b/GitTools/CLI/MockCommit.cs @@ -4,9 +4,9 @@ using CommandLine; using CommandLine.Text; -using Iswenzz.GitTools.Sys; +using GitTools.Sys; -namespace Iswenzz.GitTools.CLI +namespace GitTools.CLI { /// /// Command to create a commit at a specific date. diff --git a/GitTools/CLI/Options.cs b/GitTools/CLI/Options.cs index 3a92e04..f47bc10 100644 --- a/GitTools/CLI/Options.cs +++ b/GitTools/CLI/Options.cs @@ -1,4 +1,4 @@ -namespace Iswenzz.GitTools.CLI +namespace GitTools.CLI { /// /// The program default CLI. diff --git a/GitTools.csproj b/GitTools/GitTools.csproj similarity index 91% rename from GitTools.csproj rename to GitTools/GitTools.csproj index 4ef583c..fe394ca 100644 --- a/GitTools.csproj +++ b/GitTools/GitTools.csproj @@ -8,7 +8,7 @@ Iswenzz (c) 2021 https://iswenzz.com/ https://github.com/Iswenzz/GitTools.git - Iswenzz + GitTools diff --git a/GitTools/Program.cs b/GitTools/Program.cs index 0cc3150..2dcee9d 100644 --- a/GitTools/Program.cs +++ b/GitTools/Program.cs @@ -1,19 +1,19 @@ -using Iswenzz.GitTools.CLI; - -namespace Iswenzz.GitTools -{ - /// - /// The program main class. - /// - public static class Program - { - /// - /// The program entry point. - /// - /// The program arguments. - public static void Main(string[] args) - { - CLIParser.Parse(args); - } - } -} +using GitTools.CLI; + +namespace GitTools +{ + /// + /// The program main class. + /// + public static class Program + { + /// + /// The program entry point. + /// + /// The program arguments. + public static void Main(string[] args) + { + CLIParser.Parse(args); + } + } +} diff --git a/GitTools/Sys/Git.cs b/GitTools/Sys/Git.cs index 62d58d7..305d22a 100644 --- a/GitTools/Sys/Git.cs +++ b/GitTools/Sys/Git.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using LibGit2Sharp; -namespace Iswenzz.GitTools.Sys +namespace GitTools.Sys { /// /// Class to manipulate git. diff --git a/GitTools/Utils/Editor.cs b/GitTools/Utils/Editor.cs index d5b9462..763711f 100644 --- a/GitTools/Utils/Editor.cs +++ b/GitTools/Utils/Editor.cs @@ -6,9 +6,9 @@ using LibGit2Sharp; -using Iswenzz.GitTools.Sys; +using GitTools.Sys; -namespace Iswenzz.GitTools.Utils +namespace GitTools.Utils { /// /// Open a temporary file in the default editor to pick all lines to select.