Skip to content

Commit

Permalink
Updated source
Browse files Browse the repository at this point in the history
  • Loading branch information
Iswenzz committed Oct 13, 2024
1 parent 9257d6e commit d082e24
Show file tree
Hide file tree
Showing 10 changed files with 36 additions and 36 deletions.
10 changes: 5 additions & 5 deletions GitTools/GitTools.sln → GitTools.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@ 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
Debug|Any CPU = Debug|Any CPU
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
Expand Down
2 changes: 1 addition & 1 deletion GitTools/CLI/CLIParser.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using CommandLine;

namespace Iswenzz.GitTools.CLI
namespace GitTools.CLI
{
/// <summary>
/// Class for parsing the program arguments.
Expand Down
6 changes: 3 additions & 3 deletions GitTools/CLI/CopyCommits.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
/// <summary>
/// Command to copy commits from one repository to another.
Expand Down
2 changes: 1 addition & 1 deletion GitTools/CLI/ICMD.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Iswenzz.GitTools.CLI
namespace GitTools.CLI
{
/// <summary>
/// Executable command interface.
Expand Down
4 changes: 2 additions & 2 deletions GitTools/CLI/MockCommit.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
using CommandLine;
using CommandLine.Text;

using Iswenzz.GitTools.Sys;
using GitTools.Sys;

namespace Iswenzz.GitTools.CLI
namespace GitTools.CLI
{
/// <summary>
/// Command to create a commit at a specific date.
Expand Down
2 changes: 1 addition & 1 deletion GitTools/CLI/Options.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Iswenzz.GitTools.CLI
namespace GitTools.CLI
{
/// <summary>
/// The program default CLI.
Expand Down
2 changes: 1 addition & 1 deletion GitTools.csproj → GitTools/GitTools.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<Copyright>Iswenzz (c) 2021</Copyright>
<PackageProjectUrl>https://iswenzz.com/</PackageProjectUrl>
<RepositoryUrl>https://github.com/Iswenzz/GitTools.git</RepositoryUrl>
<RootNamespace>Iswenzz</RootNamespace>
<RootNamespace>GitTools</RootNamespace>
</PropertyGroup>

<ItemGroup>
Expand Down
38 changes: 19 additions & 19 deletions GitTools/Program.cs
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
using Iswenzz.GitTools.CLI;

namespace Iswenzz.GitTools
{
/// <summary>
/// The program main class.
/// </summary>
public static class Program
{
/// <summary>
/// The program entry point.
/// </summary>
/// <param name="args">The program arguments.</param>
public static void Main(string[] args)
{
CLIParser.Parse(args);
}
}
}
using GitTools.CLI;

namespace GitTools
{
/// <summary>
/// The program main class.
/// </summary>
public static class Program
{
/// <summary>
/// The program entry point.
/// </summary>
/// <param name="args">The program arguments.</param>
public static void Main(string[] args)
{
CLIParser.Parse(args);
}
}
}
2 changes: 1 addition & 1 deletion GitTools/Sys/Git.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Collections.Generic;
using LibGit2Sharp;

namespace Iswenzz.GitTools.Sys
namespace GitTools.Sys
{
/// <summary>
/// Class to manipulate git.
Expand Down
4 changes: 2 additions & 2 deletions GitTools/Utils/Editor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

using LibGit2Sharp;

using Iswenzz.GitTools.Sys;
using GitTools.Sys;

namespace Iswenzz.GitTools.Utils
namespace GitTools.Utils
{
/// <summary>
/// Open a temporary file in the default editor to pick all lines to select.
Expand Down

0 comments on commit d082e24

Please sign in to comment.