Skip to content

Commit 2e2cfc6

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 46aa242 commit 2e2cfc6

File tree

10 files changed

+14
-14
lines changed

10 files changed

+14
-14
lines changed

build/build/Tasks/Package/PackageNuget.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ private static void PackageWithCli(BuildContext context)
2525
// GitVersion.MsBuild, global tool & core
2626
context.DotNetPack("./src/GitVersion.Core", settings);
2727

28-
settings.ArgumentCustomization = arg => arg.Append("-p:PackAsTool=true");
28+
settings.ArgumentCustomization = arg => arg.Append("-p:PackAsTool=true").Append("-p:BuildInParallel=false");
2929
context.DotNetPack("./src/GitVersion.App", settings);
3030

3131
settings.ArgumentCustomization = arg => arg.Append("-p:IsPackaging=true");

global.json

+1-1
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

+1-1
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

+1-1
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

+2-2
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

+2-2
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

+1-1
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

+3-3
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

+1-1
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

+1-1
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)