Skip to content

Commit 82c47d3

Browse files
authored
Upgraded to .NET 7 (#46)
* Upgraded to .NET 7 * Updated packages. * Fixed warnings in XML docs. * Minor changes to configuration section handling.
1 parent 20c2c4f commit 82c47d3

File tree

48 files changed

+295
-302
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+295
-302
lines changed

GitVersion.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
mode: Mainline
2+
next-version: 7.0.0

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ trigger:
77

88
variables:
99
BuildConfiguration: Release
10-
DotNetCoreVersion: 6.0.x
10+
DotNetCoreVersion: 7.0.x
1111

1212
stages:
1313
- stage: BuildAndTest

src/Fluxera.Extensions.Caching.Abstractions/Fluxera.Extensions.Caching.Abstractions.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
</ItemGroup>
2424

2525
<ItemGroup>
26-
<PackageReference Include="GitVersion.MsBuild" Version="5.10.3">
26+
<PackageReference Include="GitVersion.MsBuild" Version="5.11.1">
2727
<PrivateAssets>all</PrivateAssets>
2828
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2929
</PackageReference>
30-
<PackageReference Include="JetBrains.Annotations" Version="2022.1.0" />
31-
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="6.0.0" />
30+
<PackageReference Include="JetBrains.Annotations" Version="2022.3.1" />
31+
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="7.0.0" />
3232
</ItemGroup>
3333

3434
<ItemGroup>

src/Fluxera.Extensions.Caching/Fluxera.Extensions.Caching.csproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@
2222
</ItemGroup>
2323

2424
<ItemGroup>
25-
<PackageReference Include="Fluxera.Guards" Version="6.1.0" />
26-
<PackageReference Include="GitVersion.MsBuild" Version="5.10.3">
25+
<PackageReference Include="Fluxera.Guards" Version="7.0.0" />
26+
<PackageReference Include="GitVersion.MsBuild" Version="5.11.1">
2727
<PrivateAssets>all</PrivateAssets>
2828
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2929
</PackageReference>
30-
<PackageReference Include="JetBrains.Annotations" Version="2022.1.0" />
31-
<PackageReference Include="System.Text.Json" Version="6.0.6" />
32-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.1" />
33-
<PackageReference Include="Microsoft.Extensions.Options" Version="6.0.0" />
34-
<PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.0" />
35-
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="6.0.1" />
30+
<PackageReference Include="JetBrains.Annotations" Version="2022.3.1" />
31+
<PackageReference Include="System.Text.Json" Version="7.0.0" />
32+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
33+
<PackageReference Include="Microsoft.Extensions.Options" Version="7.0.0" />
34+
<PackageReference Include="Microsoft.Extensions.Logging" Version="7.0.0" />
35+
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="7.0.0" />
3636
</ItemGroup>
3737

3838
<ItemGroup>

src/Fluxera.Extensions.Common.Abstractions/Fluxera.Extensions.Common.Abstractions.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@
2323
</ItemGroup>
2424

2525
<ItemGroup>
26-
<PackageReference Include="GitVersion.MsBuild" Version="5.10.3">
26+
<PackageReference Include="GitVersion.MsBuild" Version="5.11.1">
2727
<PrivateAssets>all</PrivateAssets>
2828
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2929
</PackageReference>
30-
<PackageReference Include="JetBrains.Annotations" Version="2022.1.0" />
30+
<PackageReference Include="JetBrains.Annotations" Version="2022.3.1" />
3131
</ItemGroup>
3232

3333
</Project>

src/Fluxera.Extensions.Common.Abstractions/IJitterCalculator.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,27 +11,27 @@
1111
public interface IJitterCalculator
1212
{
1313
/// <summary>
14-
/// Applies jitter to the <see cref="input" /> using the passed in percentage.
14+
/// Applies jitter to the <paramref name="input" /> using the passed in percentage.
1515
/// </summary>
1616
/// <param name="input">An integer you want to apply jitter to.</param>
1717
/// <param name="percentage">The degree of entropy.</param>
18-
/// <returns>A random number between <see cref="input" /> +/- percentage.</returns>
18+
/// <returns>A random number between <paramref name="input" /> +/- percentage.</returns>
1919
int Apply(int input, int percentage = 25);
2020

2121
/// <summary>
22-
/// Applies jitter to the <see cref="input" /> using the passed in settings.
22+
/// Applies jitter to the <paramref name="input" /> using the passed in settings.
2323
/// </summary>
2424
/// <param name="input">A double you want to apply jitter to.</param>
2525
/// <param name="percentage">The degree of entropy.</param>
26-
/// <returns>A random number between <see cref="input" /> +/- percentage.</returns>
26+
/// <returns>A random number between <paramref name="input" /> +/- percentage.</returns>
2727
double Apply(double input, int percentage = 25);
2828

2929
/// <summary>
30-
/// Applies jitter to the <see cref="input" /> using the passed in settings.
30+
/// Applies jitter to the <paramref name="input" /> using the passed in settings.
3131
/// </summary>
3232
/// <param name="input">A time span you want to apply jitter to.</param>
3333
/// <param name="percentage">The degree of entropy.</param>
34-
/// <returns>A random number between <see cref="input" /> +/- percentage.</returns>
34+
/// <returns>A random number between <paramref name="input" /> +/- percentage.</returns>
3535
TimeSpan Apply(TimeSpan input, int percentage = 25);
3636
}
3737
}

src/Fluxera.Extensions.Common.Abstractions/IRetryDelayCalculator.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ public interface IRetryDelayCalculator
1111
{
1212
/// <summary>
1313
/// Per attempt the number of slots doubles.
14-
/// The number of slots either continuous to rise or is truncate if <see cref="truncateNumberOfSlots" /> is
15-
/// <c>true</c>and the slots grow past <see cref="maximumNumberOfSlotsWhenTruncated" />.
14+
/// The number of slots either continuous to rise or is truncate if <paramref name="truncateNumberOfSlots" /> is
15+
/// <c>true</c>and the slots grow past <paramref name="truncateNumberOfSlots" />.
1616
/// </summary>
1717
/// <returns>The delay interval.</returns>
1818
/// <param name="numberOfAttempt">The xth attempt.</param>
1919
/// <param name="millisecondsPerSlot">With each attempt the amount of slots doubles. This is the time per slot.</param>
2020
/// <param name="truncateNumberOfSlots">Determines whether the exponential back-off truncates or continuous to expand.</param>
2121
/// <param name="maximumNumberOfSlotsWhenTruncated">
22-
/// If <see cref="truncateNumberOfSlots" /> is <c>true</c> this maximizes
22+
/// If <paramref name="truncateNumberOfSlots" /> is <c>true</c> this maximizes
2323
/// the number of slots.
2424
/// </param>
2525
/// <param name="jitterPercentage">The percentage of jitter to add or remove randomly.</param>

src/Fluxera.Extensions.Common/Fluxera.Extensions.Common.csproj

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@
2222
</ItemGroup>
2323

2424
<ItemGroup>
25-
<PackageReference Include="Fluxera.Guards" Version="6.1.0" />
26-
<PackageReference Include="Fluxera.Utilities" Version="6.1.1" />
27-
<PackageReference Include="GitVersion.MsBuild" Version="5.10.3">
25+
<PackageReference Include="Fluxera.Guards" Version="7.0.0" />
26+
<PackageReference Include="Fluxera.Utilities" Version="7.0.0" />
27+
<PackageReference Include="GitVersion.MsBuild" Version="5.11.1">
2828
<PrivateAssets>all</PrivateAssets>
2929
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3030
</PackageReference>
31-
<PackageReference Include="JetBrains.Annotations" Version="2022.1.0" />
32-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.1" />
33-
<PackageReference Include="Microsoft.Extensions.Options" Version="6.0.0" />
34-
<PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.0" />
31+
<PackageReference Include="JetBrains.Annotations" Version="2022.3.1" />
32+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
33+
<PackageReference Include="Microsoft.Extensions.Options" Version="7.0.0" />
34+
<PackageReference Include="Microsoft.Extensions.Logging" Version="7.0.0" />
3535
<!--<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.14.1" />-->
3636
</ItemGroup>
3737

src/Fluxera.Extensions.DataManagement.Abstractions/Fluxera.Extensions.DataManagement.Abstractions.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
</ItemGroup>
2424

2525
<ItemGroup>
26-
<PackageReference Include="Fluxera.Utilities" Version="6.1.1" />
27-
<PackageReference Include="GitVersion.MsBuild" Version="5.10.3">
26+
<PackageReference Include="Fluxera.Utilities" Version="7.0.0" />
27+
<PackageReference Include="GitVersion.MsBuild" Version="5.11.1">
2828
<PrivateAssets>all</PrivateAssets>
2929
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3030
</PackageReference>
31-
<PackageReference Include="JetBrains.Annotations" Version="2022.1.0" />
31+
<PackageReference Include="JetBrains.Annotations" Version="2022.3.1" />
3232
</ItemGroup>
3333

3434
</Project>

src/Fluxera.Extensions.DataManagement/ConfigurationExtensions.cs

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,10 @@ public static ConnectionStrings GetConnectionStrings(this IConfiguration configu
1818
{
1919
Guard.Against.Null(configuration, nameof(configuration));
2020

21-
ConnectionStrings connectionStrings = null;
22-
2321
IConfigurationSection connectionStringsSection = configuration.GetSection("ConnectionStrings");
24-
if(connectionStringsSection != null)
25-
{
26-
connectionStrings = connectionStringsSection.Get<ConnectionStrings>();
27-
}
22+
ConnectionStrings connectionStrings = connectionStringsSection.Get<ConnectionStrings>();
2823

29-
return connectionStrings ?? new ConnectionStrings();
24+
return connectionStrings;
3025
}
3126
}
3227
}

src/Fluxera.Extensions.DataManagement/Fluxera.Extensions.DataManagement.csproj

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@
2222
</ItemGroup>
2323

2424
<ItemGroup>
25-
<PackageReference Include="GitVersion.MsBuild" Version="5.10.3">
25+
<PackageReference Include="GitVersion.MsBuild" Version="5.11.1">
2626
<PrivateAssets>all</PrivateAssets>
2727
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2828
</PackageReference>
29-
<PackageReference Include="JetBrains.Annotations" Version="2022.1.0" />
30-
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="6.0.0" />
31-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.1" />
32-
<PackageReference Include="Microsoft.Extensions.Options" Version="6.0.0" />
33-
<PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.0" />
34-
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="6.0.0" />
29+
<PackageReference Include="JetBrains.Annotations" Version="2022.3.1" />
30+
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="7.0.0" />
31+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
32+
<PackageReference Include="Microsoft.Extensions.Options" Version="7.0.0" />
33+
<PackageReference Include="Microsoft.Extensions.Logging" Version="7.0.0" />
34+
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="7.0.0" />
3535
</ItemGroup>
3636

3737
<ItemGroup>

src/Fluxera.Extensions.DataManagement/ServiceCollectionExtensions.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,7 @@ public static void ConfigureConnectionStrings(this IServiceCollection services,
2323
Guard.Against.Null(configuration, nameof(configuration));
2424

2525
IConfigurationSection connectionStringsSection = configuration.GetSection("ConnectionStrings");
26-
if(connectionStringsSection != null)
27-
{
28-
services.Configure<ConnectionStrings>(connectionStringsSection);
29-
}
26+
services.Configure<ConnectionStrings>(connectionStringsSection);
3027
}
3128
}
3229
}

src/Fluxera.Extensions.DependencyInjection.Abstractions/Fluxera.Extensions.DependencyInjection.Abstractions.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
</ItemGroup>
2424

2525
<ItemGroup>
26-
<PackageReference Include="Fluxera.Guards" Version="6.1.0" />
27-
<PackageReference Include="GitVersion.MsBuild" Version="5.10.3">
26+
<PackageReference Include="Fluxera.Guards" Version="7.0.0" />
27+
<PackageReference Include="GitVersion.MsBuild" Version="5.11.1">
2828
<PrivateAssets>all</PrivateAssets>
2929
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3030
</PackageReference>
31-
<PackageReference Include="JetBrains.Annotations" Version="2022.1.0" />
32-
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="6.0.0" />
31+
<PackageReference Include="JetBrains.Annotations" Version="2022.3.1" />
32+
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="7.0.0" />
3333
</ItemGroup>
3434

3535
</Project>

src/Fluxera.Extensions.DependencyInjection/DecoratorBuilder.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ internal DecoratorBuilder(IServiceCollection services)
8585
}
8686

8787
/// <summary>
88-
/// Decorates the <see cref="TService" /> type with the given <see cref="TDecorator" /> type.
88+
/// Decorates the <typeparamref name="TService" /> type with the given <typeparamref name="TDecorator" /> type.
8989
/// </summary>
9090
/// <typeparam name="TDecorator">The decorator type</typeparam>
9191
/// <returns>The builder.</returns>
@@ -96,7 +96,7 @@ public DecoratorBuilder<TService> With<TDecorator>() where TDecorator : TService
9696
}
9797

9898
/// <summary>
99-
/// Decorates the <see cref="TService" /> type with the given decorator function.
99+
/// Decorates the <typeparamref name="TService" /> type with the given decorator function.
100100
/// </summary>
101101
/// <returns>The builder.</returns>
102102
public DecoratorBuilder<TService> With(Func<TService, IServiceProvider, TService> decorator)
@@ -108,7 +108,7 @@ public DecoratorBuilder<TService> With(Func<TService, IServiceProvider, TService
108108
}
109109

110110
/// <summary>
111-
/// Decorates the <see cref="TService" /> type with the given decorator function.
111+
/// Decorates the <typeparamref name="TService" /> type with the given decorator function.
112112
/// </summary>
113113
/// <returns>The builder.</returns>
114114
public DecoratorBuilder<TService> With(Func<TService, TService> decorator)

src/Fluxera.Extensions.DependencyInjection/Fluxera.Extensions.DependencyInjection.csproj

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@
2222
</ItemGroup>
2323

2424
<ItemGroup>
25-
<PackageReference Include="Fluxera.Guards" Version="6.1.0" />
26-
<PackageReference Include="Fluxera.Utilities" Version="6.1.1" />
27-
<PackageReference Include="GitVersion.MsBuild" Version="5.10.3">
25+
<PackageReference Include="Fluxera.Guards" Version="7.0.0" />
26+
<PackageReference Include="Fluxera.Utilities" Version="7.0.0" />
27+
<PackageReference Include="GitVersion.MsBuild" Version="5.11.1">
2828
<PrivateAssets>all</PrivateAssets>
2929
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3030
</PackageReference>
31-
<PackageReference Include="JetBrains.Annotations" Version="2022.1.0" />
32-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.1" />
33-
<PackageReference Include="Microsoft.Extensions.Options" Version="6.0.0" />
34-
<PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.0" />
31+
<PackageReference Include="JetBrains.Annotations" Version="2022.3.1" />
32+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
33+
<PackageReference Include="Microsoft.Extensions.Options" Version="7.0.0" />
34+
<PackageReference Include="Microsoft.Extensions.Logging" Version="7.0.0" />
3535
</ItemGroup>
3636

3737
<ItemGroup>

src/Fluxera.Extensions.DependencyInjection/NamedScopedServiceBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ internal NamedScopedServiceBuilder(IServiceCollection services)
1919
}
2020

2121
/// <summary>
22-
/// A the named implementation of the <see cref="TService" /> type.
22+
/// A the named implementation of the <typeparamref name="TService" /> type.
2323
/// </summary>
2424
/// <typeparam name="TImplementation"></typeparam>
2525
/// <param name="name"></param>

src/Fluxera.Extensions.DependencyInjection/NamedSingletonServiceBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ internal NamedSingletonServiceBuilder(IServiceCollection services)
1919
}
2020

2121
/// <summary>
22-
/// Adds an implementation of the <see cref="TService" /> service as named singleton.
22+
/// Adds an implementation of the <typeparamref name="TService" /> service as named singleton.
2323
/// </summary>
2424
/// <typeparam name="TImplementation"></typeparam>
2525
/// <param name="name"></param>

src/Fluxera.Extensions.DependencyInjection/NamedTransientServiceBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ internal NamedTransientServiceBuilder(IServiceCollection services)
1919
}
2020

2121
/// <summary>
22-
/// Adds an implementation of the <see cref="TService" /> service as transient named service.
22+
/// Adds an implementation of the <typeparamref name="TService" /> service as transient named service.
2323
/// </summary>
2424
/// <typeparam name="TImplementation"></typeparam>
2525
/// <param name="name"></param>

src/Fluxera.Extensions.DependencyInjection/ServiceCollectionExtensions.Named.cs

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
public static partial class ServiceCollectionExtensions
88
{
99
/// <summary>
10-
/// Adds the service implementations configured in the configure action for the <see cref="TService" /> type transient.
10+
/// Adds the service implementations configured in the configure action for the <typeparamref name="TService" />.
11+
/// type
12+
/// transient.
1113
/// </summary>
1214
/// <typeparam name="TService">The service type.</typeparam>
1315
/// <param name="services">The service collection.</param>
@@ -28,7 +30,8 @@ public static IServiceCollection AddNamedTransient<TService>(this IServiceCollec
2830
}
2931

3032
/// <summary>
31-
/// Adds the service implementations configured in the configure action for the <see cref="TService" /> type singleton.
33+
/// Adds the service implementations configured in the configure action for the <typeparamref name="TService" /> type
34+
/// singleton.
3235
/// </summary>
3336
/// <typeparam name="TService">The service type.</typeparam>
3437
/// <param name="services">The service collection.</param>
@@ -49,7 +52,8 @@ public static IServiceCollection AddNamedSingleton<TService>(this IServiceCollec
4952
}
5053

5154
/// <summary>
52-
/// Adds the service implementations configured in the configure action for the <see cref="TService" /> type scoped.
55+
/// Adds the service implementations configured in the configure action for the <typeparamref name="TService" /> type
56+
/// scoped.
5357
/// </summary>
5458
/// <typeparam name="TService">The service type.</typeparam>
5559
/// <param name="services">The service collection.</param>

src/Fluxera.Extensions.DependencyInjection/TryDecoratorBuilder.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ internal TryDecoratorBuilder(IServiceCollection services)
8282
}
8383

8484
/// <summary>
85-
/// Try to decorate the <see cref="TService" /> type with the given <see cref="TDecorator" /> type.
85+
/// Try to decorate the <typeparamref name="TService" /> type with the given <typeparamref name="TDecorator" /> type.
8686
/// </summary>
8787
/// <typeparam name="TDecorator">The decorator type</typeparam>
8888
/// <returns>True, if the decorator was added; false otherwise.</returns>
@@ -92,7 +92,7 @@ public bool With<TDecorator>() where TDecorator : TService
9292
}
9393

9494
/// <summary>
95-
/// Try to decorate the <see cref="TService" /> type with the given decorator function.
95+
/// Try to decorate the <typeparamref name="TService" /> type with the given decorator function.
9696
/// </summary>
9797
/// <param name="decorator">The decorator function.</param>
9898
/// <returns>True, if the decorator was added; false otherwise.</returns>
@@ -104,7 +104,7 @@ public bool With(Func<TService, IServiceProvider, TService> decorator)
104104
}
105105

106106
/// <summary>
107-
/// Try to decorate the <see cref="TService" /> type with the given decorator function.
107+
/// Try to decorate the <typeparamref name="TService" /> type with the given decorator function.
108108
/// </summary>
109109
/// <param name="decorator">The decorator function.</param>
110110
/// <returns>True, if the decorator was added; false otherwise.</returns>

src/Fluxera.Extensions.Http.Abstractions/Fluxera.Extensions.Http.Abstractions.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
</ItemGroup>
2424

2525
<ItemGroup>
26-
<PackageReference Include="Fluxera.Utilities" Version="6.1.1" />
27-
<PackageReference Include="GitVersion.MsBuild" Version="5.10.3">
26+
<PackageReference Include="Fluxera.Utilities" Version="7.0.0" />
27+
<PackageReference Include="GitVersion.MsBuild" Version="5.11.1">
2828
<PrivateAssets>all</PrivateAssets>
2929
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3030
</PackageReference>
31-
<PackageReference Include="JetBrains.Annotations" Version="2022.1.0" />
32-
<PackageReference Include="Microsoft.Extensions.Http" Version="6.0.0" />
31+
<PackageReference Include="JetBrains.Annotations" Version="2022.3.1" />
32+
<PackageReference Include="Microsoft.Extensions.Http" Version="7.0.0" />
3333
</ItemGroup>
3434

3535
</Project>

0 commit comments

Comments
 (0)