Skip to content

Commit de2b6aa

Browse files
committed
updated to 1.6.0
1 parent 564c65e commit de2b6aa

3 files changed

Lines changed: 8 additions & 2 deletions

File tree

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<Version>1.5.0</Version>
3+
<Version>1.6.0</Version>
44
<TargetFramework>net9.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<LangVersion>latest</LangVersion>

src/Addons/Providers/OriginalCampaignsProvider.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,12 @@ public OriginalCampaignsProvider(IConfigProvider config)
2323
}
2424

2525

26-
/// <inheritdoc/>
26+
/// <summary>
27+
/// Retrieves the original campaigns associated with the specified game.
28+
/// </summary>
29+
/// <param name="game">The game for which to retrieve the original campaigns.</param>
30+
/// <returns>A dictionary where the keys are <see cref="AddonId"/> values representing the unique identifiers of the
31+
/// campaigns, and the values are <see cref="IAddon"/> instances representing the campaign details.</returns>
2732
public Dictionary<AddonId, IAddon> GetOriginalCampaigns(IGame game)
2833
{
2934
return game.GameEnum switch

src/Common.Client/DI/ClientBindings.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ private static HttpClient CreateHttpClient(IServiceProvider service)
6969
httpClient.Timeout = TimeSpan.FromSeconds(30);
7070
return httpClient;
7171
}
72+
7273
public class FakeHttpMessageHandler : HttpMessageHandler
7374
{
7475
protected override Task<HttpResponseMessage> SendAsync(

0 commit comments

Comments
 (0)