Skip to content

Commit 132eb27

Browse files
committed
Fix typos and update package versions
Corrected a typo in `copilot-instructions.md` regarding `ArgumentNullException.ThrowIfNull`. Updated package versions in `PdfSmith.BusinessLayer.csproj`, `PdfSmith.DataAccessLayer.csproj`, and `PdfSmith.csproj` to ensure compatibility and access to latest features and fixes.
1 parent bf158fb commit 132eb27

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/copilot-instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
- Use `nameof` instead of string literals when referring to member names.
2525
- Prefer `?.` if applicable (e.g. `scope?.Dispose()`).
2626
- Use `ObjectDisposedException.ThrowIf` where applicable.
27-
- Use `ArgumentNullException.ThrowIfNull` to validate input paramters.
27+
- Use `ArgumentNullException.ThrowIfNull` to validate input parameters.
2828
- If you add new code files, ensure they are listed in the csproj file (if other files in that folder are listed there) so they build.
2929

3030
### Nullable Reference Types

src/PdfSmith.BusinessLayer/PdfSmith.BusinessLayer.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
<ItemGroup>
1010
<PackageReference Include="FluentValidation" Version="12.0.0" />
1111
<PackageReference Include="Handlebars.Net" Version="2.1.6" />
12-
<PackageReference Include="Microsoft.Playwright" Version="1.53.0" />
12+
<PackageReference Include="Microsoft.Playwright" Version="1.54.0" />
1313
<PackageReference Include="OperationResultTools" Version="1.0.30" />
1414
<PackageReference Include="RazorLight" Version="2.3.1" />
1515
<PackageReference Include="Scriban" Version="6.2.1" />
16-
<PackageReference Include="SimpleAuthenticationTools.Abstractions" Version="3.0.10" />
17-
<PackageReference Include="TinyHelpers" Version="3.3.4" />
16+
<PackageReference Include="SimpleAuthenticationTools.Abstractions" Version="3.0.11" />
17+
<PackageReference Include="TinyHelpers" Version="3.3.6" />
1818
</ItemGroup>
1919

2020
<ItemGroup>

src/PdfSmith.DataAccessLayer/PdfSmith.DataAccessLayer.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</ItemGroup>
1212

1313
<ItemGroup>
14-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9.0.7" />
14+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9.0.8" />
1515
</ItemGroup>
1616

1717
</Project>

src/PdfSmith/PdfSmith.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@
1010
<ItemGroup>
1111
<PackageReference Include="Azure.Monitor.OpenTelemetry.AspNetCore" Version="1.3.0" />
1212
<PackageReference Include="FluentValidation.DependencyInjectionExtensions" Version="12.0.0" />
13-
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.7" />
14-
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.7">
13+
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.8" />
14+
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.8">
1515
<PrivateAssets>all</PrivateAssets>
1616
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1717
</PackageReference>
18-
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" Version="9.0.7" />
18+
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" Version="9.0.8" />
1919
<PackageReference Include="MinimalHelpers.FluentValidation" Version="1.1.4" />
2020
<PackageReference Include="OperationResultTools.AspNetCore.Http" Version="1.0.28" />
21-
<PackageReference Include="SimpleAuthenticationTools" Version="3.0.13" />
22-
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" Version="9.0.3" />
23-
<PackageReference Include="TinyHelpers.AspNetCore" Version="4.0.29" />
21+
<PackageReference Include="SimpleAuthenticationTools" Version="3.0.14" />
22+
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" Version="9.0.4" />
23+
<PackageReference Include="TinyHelpers.AspNetCore" Version="4.1.4" />
2424
</ItemGroup>
2525

2626
<ItemGroup>

0 commit comments

Comments
 (0)