Skip to content

Commit 5e0252d

Browse files
committed
chore: updated to latest nuget packages
1 parent 75999d8 commit 5e0252d

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

build/Targets.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,12 @@
6363
Run("dotnet", $"clean {solution} -c Release -v m --nologo");
6464
});
6565

66-
Target(Build, DependsOn(Clean), () =>
66+
Target(Build, dependsOn: [Clean], () =>
6767
{
6868
Run("dotnet", $"build {solution} -c Release --nologo");
6969
});
7070

71-
Target(Test, DependsOn(Build), () =>
71+
Target(Test, dependsOn: [Build], () =>
7272
{
7373
var projects = GetFiles(".", $"*.csproj");
7474
foreach (var project in projects.OrderBy(x => x))
@@ -80,7 +80,7 @@
8080
}
8181
});
8282

83-
Target(Release, DependsOn(Test), () =>
83+
Target(Release, dependsOn: [Test], () =>
8484
{
8585
if (string.IsNullOrWhiteSpace(versionOption.Value()))
8686
{
@@ -117,7 +117,7 @@
117117
}
118118
});
119119

120-
Target(Pack, DependsOn(Build, CleanArtifacts), () =>
120+
Target(Pack, dependsOn: [Build, CleanArtifacts], () =>
121121
{
122122
if (string.IsNullOrWhiteSpace(versionOption.Value()))
123123
{
@@ -187,4 +187,4 @@ static void CopyDirectory(string sourceDir, string destinationDir, bool recursiv
187187
}
188188
}
189189
}
190-
#endregion
190+
#endregion

build/targets.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Bullseye" Version="5.0.0" />
10+
<PackageReference Include="Bullseye" Version="6.0.0" />
1111
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="4.1.1" />
1212
<PackageReference Include="SimpleExec" Version="12.0.0" />
1313
</ItemGroup>

samples/WebApi/WebApi.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@
1717
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks" Version="9.0.3" />
1818

1919
<PackageReference Include="Quartz.Extensions.Hosting" Version="3.14.0" />
20-
<PackageReference Include="OpenIddict.AspNetCore" Version="6.1.1" />
21-
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="6.1.1" />
22-
<PackageReference Include="OpenIddict.Quartz" Version="6.1.1" />
20+
<PackageReference Include="OpenIddict.AspNetCore" Version="6.2.0" />
21+
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="6.2.0" />
22+
<PackageReference Include="OpenIddict.Quartz" Version="6.2.0" />
2323

2424
<PackageReference Include="Serilog.AspNetCore" Version="9.0.0" />
2525
<PackageReference Include="Serilog.Settings.Configuration" Version="9.0.0" />
2626
<PackageReference Include="Serilog.Sinks.ColoredConsole" Version="3.0.1" />
2727
<PackageReference Include="Serilog.Sinks.RollingFile" Version="3.3.1-dev-00771" />
28-
<PackageReference Include="Swashbuckle.AspNetCore" Version="8.0.0" />
28+
<PackageReference Include="Swashbuckle.AspNetCore" Version="8.1.0" />
2929

3030
<PackageReference Include="tomware.Microwf.AspNetCoreEngine" Version="3.3.0" />
3131
</ItemGroup>

0 commit comments

Comments
 (0)