Skip to content

Commit c0b05ae

Browse files
dependabot[bot]arturcic
authored andcommitted
(deps): Bump dotnet-sdk from 9.0.102 to 9.0.200
Bumps [dotnet-sdk](https://github.com/dotnet/sdk) from 9.0.102 to 9.0.200. - [Release notes](https://github.com/dotnet/sdk/releases) - [Commits](dotnet/sdk@v9.0.102...v9.0.200) --- updated-dependencies: - dependency-name: dotnet-sdk dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 754e71c commit c0b05ae

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
"src"
66
],
77
"sdk": {
8-
"version": "9.0.102"
8+
"version": "9.0.200"
99
}
1010
}

new-cli/GitVersion.Common.Command/ICommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ namespace GitVersion;
22

33
public interface ICommand<in T>
44
{
5-
public Task<int> InvokeAsync(T settings, CancellationToken cancellationToken = default);
5+
Task<int> InvokeAsync(T settings, CancellationToken cancellationToken = default);
66
}
77

88
public interface ICommandImpl

src/GitVersion.App/IGlobbingResolver.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ namespace GitVersion;
22

33
internal interface IGlobbingResolver
44
{
5-
public IEnumerable<string> Resolve(string workingDirectory, string pattern);
5+
IEnumerable<string> Resolve(string workingDirectory, string pattern);
66
}

src/GitVersion.Core/Configuration/IBranchConfiguration.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ public interface IBranchConfiguration
2020

2121
CommitMessageIncrementMode? CommitMessageIncrementing { get; }
2222

23-
public string? RegularExpression { get; }
23+
string? RegularExpression { get; }
2424

25-
public bool IsMatch(string branchName)
25+
bool IsMatch(string branchName)
2626
{
2727
if (string.IsNullOrWhiteSpace(RegularExpression))
2828
{

src/GitVersion.Core/Configuration/IConfigurationSerializer.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ namespace GitVersion.Configuration;
22

33
internal interface IConfigurationSerializer
44
{
5-
public T Deserialize<T>(string input);
5+
T Deserialize<T>(string input);
66
string Serialize(object graph);
7-
public IGitVersionConfiguration? ReadConfiguration(string input);
7+
IGitVersionConfiguration? ReadConfiguration(string input);
88
}

src/GitVersion.Core/Configuration/IIgnoreConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ public interface IIgnoreConfiguration
66

77
IReadOnlySet<string> Shas { get; }
88

9-
public bool IsEmpty => Before == null && Shas.Count == 0;
9+
bool IsEmpty => Before == null && Shas.Count == 0;
1010
}

src/GitVersion.Core/Configuration/IPreventIncrementConfiguration.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ namespace GitVersion.Configuration;
22

33
public interface IPreventIncrementConfiguration
44
{
5-
public bool? OfMergedBranch { get; }
5+
bool? OfMergedBranch { get; }
66

7-
public bool? WhenBranchMerged { get; }
7+
bool? WhenBranchMerged { get; }
88

9-
public bool? WhenCurrentCommitTagged { get; }
9+
bool? WhenCurrentCommitTagged { get; }
1010
}

src/GitVersion.Core/Output/IConverterContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ namespace GitVersion;
22

33
public interface IConverterContext
44
{
5-
public string WorkingDirectory { get; }
5+
string WorkingDirectory { get; }
66
}

src/GitVersion.Core/Output/IVersionConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ namespace GitVersion;
44

55
public interface IVersionConverter<in T> : IDisposable where T : IConverterContext
66
{
7-
public void Execute(GitVersionVariables variables, T context);
7+
void Execute(GitVersionVariables variables, T context);
88
}

0 commit comments

Comments
 (0)