We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent edf3593 commit f083e30Copy full SHA for f083e30
src/GitVersionCore/Core/GitModel.cs renamed to src/GitVersionCore/LibGit2/GitObjects.cs
@@ -7,13 +7,6 @@
7
8
namespace GitVersion
9
{
10
- public class AuthenticationInfo
11
- {
12
- public string Username { get; set; }
13
- public string Password { get; set; }
14
- public string Token { get; set; }
15
- }
16
-
17
public class ObjectId
18
19
private static readonly LambdaEqualityHelper<ObjectId> equalityHelper =
src/GitVersionCore/Core/GitRepository.cs renamed to src/GitVersionCore/LibGit2/GitRepository.cs
src/GitVersionCore/Model/AuthenticationInfo.cs
@@ -0,0 +1,9 @@
1
+namespace GitVersion
2
+{
3
+ public class AuthenticationInfo
4
+ {
5
+ public string Username { get; set; }
6
+ public string Password { get; set; }
+ public string Token { get; set; }
+ }
+}
0 commit comments