Skip to content

Commit

Permalink
Refactor file paths within GitVersion.Core
Browse files Browse the repository at this point in the history
Several files within the GitVersion.Core directory have been renamed and reorganized for better readability and file structure. This mainly involved moving files from the 'Git' folder to the 'SemVer' folder to clearly indicate their roles. The 'WarningException.cs' file has been moved to the 'Exceptions' subdirectory for better categorization.
  • Loading branch information
arturcic committed Dec 8, 2023
1 parent ec50953 commit dc0b4bd
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions new-cli/GitVersion.Common/GitVersion.Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -64,23 +64,23 @@
<Compile Include="..\..\src\GitVersion.Core\Git\RefSpecDirection.cs">
<Link>Git\RefSpecDirection.cs</Link>
</Compile>
<Compile Include="..\..\src\GitVersion.Core\Git\SemanticVersion.cs">
<Link>Git\SemanticVersion.cs</Link>
<Compile Include="..\..\src\GitVersion.Core\SemVer\SemanticVersion.cs">
<Link>SemVer\SemanticVersion.cs</Link>
</Compile>
<Compile Include="..\..\src\GitVersion.Core\Git\SemanticVersionBuildMetaData.cs">
<Link>Git\SemanticVersionBuildMetaData.cs</Link>
<Compile Include="..\..\src\GitVersion.Core\SemVer\SemanticVersionBuildMetaData.cs">
<Link>SemVer\SemanticVersionBuildMetaData.cs</Link>
</Compile>
<Compile Include="..\..\src\GitVersion.Core\Git\SemanticVersionFormat.cs">
<Link>Git\SemanticVersionFormat.cs</Link>
<Compile Include="..\..\src\GitVersion.Core\SemVer\SemanticVersionFormat.cs">
<Link>SemVer\SemanticVersionFormat.cs</Link>
</Compile>
<Compile Include="..\..\src\GitVersion.Core\Git\SemanticVersionPreReleaseTag.cs">
<Link>Git\SemanticVersionPreReleaseTag.cs</Link>
<Compile Include="..\..\src\GitVersion.Core\SemVer\SemanticVersionPreReleaseTag.cs">
<Link>SemVer\SemanticVersionPreReleaseTag.cs</Link>
</Compile>
<Compile Include="..\..\src\GitVersion.Core\Git\VersionField.cs">
<Link>Git\VersionField.cs</Link>
<Compile Include="..\..\src\GitVersion.Core\SemVer\VersionField.cs">
<Link>SemVer\VersionField.cs</Link>
</Compile>
<Compile Include="..\..\src\GitVersion.Core\Git\WarningException.cs">
<Link>Git\WarningException.cs</Link>
<Compile Include="..\..\src\GitVersion.Core\Core\Exceptions\WarningException.cs">
<Link>Exceptions\WarningException.cs</Link>
</Compile>
</ItemGroup>
</Project>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit dc0b4bd

Please sign in to comment.