Skip to content

(deps): Bump dotnet-sdk from 9.0.102 to 9.0.200 #4416

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build/build/Tasks/Package/PackageNuget.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ private static void PackageWithCli(BuildContext context)
// GitVersion.MsBuild, global tool & core
context.DotNetPack("./src/GitVersion.Core", settings);

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

settings.ArgumentCustomization = arg => arg.Append("-p:IsPackaging=true");
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"src"
],
"sdk": {
"version": "9.0.102"
"version": "9.0.200"
}
}
2 changes: 1 addition & 1 deletion new-cli/GitVersion.Common.Command/ICommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace GitVersion;

public interface ICommand<in T>
{
public Task<int> InvokeAsync(T settings, CancellationToken cancellationToken = default);
Task<int> InvokeAsync(T settings, CancellationToken cancellationToken = default);
}

public interface ICommandImpl
Expand Down
2 changes: 1 addition & 1 deletion src/GitVersion.App/IGlobbingResolver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ namespace GitVersion;

internal interface IGlobbingResolver
{
public IEnumerable<string> Resolve(string workingDirectory, string pattern);
IEnumerable<string> Resolve(string workingDirectory, string pattern);
}
4 changes: 2 additions & 2 deletions src/GitVersion.Core/Configuration/IBranchConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ public interface IBranchConfiguration

CommitMessageIncrementMode? CommitMessageIncrementing { get; }

public string? RegularExpression { get; }
string? RegularExpression { get; }

public bool IsMatch(string branchName)
bool IsMatch(string branchName)
{
if (string.IsNullOrWhiteSpace(RegularExpression))
{
Expand Down
4 changes: 2 additions & 2 deletions src/GitVersion.Core/Configuration/IConfigurationSerializer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace GitVersion.Configuration;

internal interface IConfigurationSerializer
{
public T Deserialize<T>(string input);
T Deserialize<T>(string input);
string Serialize(object graph);
public IGitVersionConfiguration? ReadConfiguration(string input);
IGitVersionConfiguration? ReadConfiguration(string input);
}
2 changes: 1 addition & 1 deletion src/GitVersion.Core/Configuration/IIgnoreConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ public interface IIgnoreConfiguration

IReadOnlySet<string> Shas { get; }

public bool IsEmpty => Before == null && Shas.Count == 0;
bool IsEmpty => Before == null && Shas.Count == 0;
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ namespace GitVersion.Configuration;

public interface IPreventIncrementConfiguration
{
public bool? OfMergedBranch { get; }
bool? OfMergedBranch { get; }

public bool? WhenBranchMerged { get; }
bool? WhenBranchMerged { get; }

public bool? WhenCurrentCommitTagged { get; }
bool? WhenCurrentCommitTagged { get; }
}
2 changes: 1 addition & 1 deletion src/GitVersion.Core/Output/IConverterContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ namespace GitVersion;

public interface IConverterContext
{
public string WorkingDirectory { get; }
string WorkingDirectory { get; }
}
2 changes: 1 addition & 1 deletion src/GitVersion.Core/Output/IVersionConverter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ namespace GitVersion;

public interface IVersionConverter<in T> : IDisposable where T : IConverterContext
{
public void Execute(GitVersionVariables variables, T context);
void Execute(GitVersionVariables variables, T context);
}
Loading