File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
Configuration/Abstractions Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ namespace GitVersion.Configuration;
5
5
public interface IConfigFileLocator
6
6
{
7
7
string FilePath { get ; }
8
- bool HasConfigFileAt ( string ? workingDirectory ) ;
8
+ bool HasConfigFileAt ( string workingDirectory ) ;
9
9
string GetConfigFilePath ( string workingDirectory ) ;
10
10
void Verify ( GitVersionOptions gitVersionOptions , IGitRepositoryInfo repositoryInfo ) ;
11
11
void Verify ( string workingDirectory , string projectRootDirectory ) ;
Original file line number Diff line number Diff line change @@ -7,12 +7,12 @@ public class GitVersionOptions
7
7
{
8
8
public string ? WorkingDirectory { get ; set ; }
9
9
10
- public AssemblyInfoData AssemblyInfo { get ; } = new AssemblyInfoData ( ) ;
11
- public AuthenticationInfo Authentication { get ; } = new AuthenticationInfo ( ) ;
12
- public ConfigInfo ConfigInfo { get ; } = new ConfigInfo ( ) ;
13
- public RepositoryInfo RepositoryInfo { get ; } = new RepositoryInfo ( ) ;
14
- public WixInfo WixInfo { get ; } = new WixInfo ( ) ;
15
- public Settings Settings { get ; } = new Settings ( ) ;
10
+ public AssemblyInfoData AssemblyInfo { get ; } = new ( ) ;
11
+ public AuthenticationInfo Authentication { get ; } = new ( ) ;
12
+ public ConfigInfo ConfigInfo { get ; } = new ( ) ;
13
+ public RepositoryInfo RepositoryInfo { get ; } = new ( ) ;
14
+ public WixInfo WixInfo { get ; } = new ( ) ;
15
+ public Settings Settings { get ; } = new ( ) ;
16
16
17
17
public bool Init ;
18
18
public bool Diag ;
You can’t perform that action at this time.
0 commit comments