Skip to content

Commit def2878

Browse files
committed
Update dependencies
1 parent df3defc commit def2878

5 files changed

Lines changed: 12 additions & 10 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: [push, pull_request]
55
jobs:
66
build:
77

8-
runs-on: windows-2019
8+
runs-on: windows-2022
99

1010
steps:
1111
- uses: actions/checkout@v4

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
# - https://gh.io/supported-runners-and-hardware-resources
2727
# - https://gh.io/using-larger-runners
2828
# Consider using larger runners for possible analysis time improvements.
29-
runs-on: windows-2019
29+
runs-on: windows-2022
3030
permissions:
3131
actions: read
3232
contents: read

dotnet_build.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
dotnet build
2+
pause

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "9.0.101",
3+
"version": "9.0.301",
44
"rollForward": "latestMajor",
55
"allowPrerelease": false
66
}

src/PdfRpt.Core/PdfRpt.Core.csproj

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<Description>PdfReport.Core is a code first reporting engine, which is built on top of the iTextSharp.LGPLv2.Core and EPPlus.Core libraries.</Description>
4-
<VersionPrefix>1.5.15</VersionPrefix>
4+
<VersionPrefix>1.5.16</VersionPrefix>
55
<Authors>Vahid Nasiri</Authors>
66
<TargetFrameworks>net462;netstandard2.0</TargetFrameworks>
77
<GenerateDocumentationFile>true</GenerateDocumentationFile>
@@ -31,18 +31,18 @@
3131
</ItemGroup>
3232
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
3333
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
34-
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.2.2" />
34+
<PackageReference Include="Microsoft.Data.SqlClient" Version="6.0.2" />
3535
<PackageReference Include="System.Xml.XPath.XDocument" Version="4.3.0" />
36-
<PackageReference Include="BouncyCastle.Cryptography" Version="2.5.0" />
37-
<PackageReference Include="iTextSharp.LGPLv2.Core" Version="3.4.25" />
36+
<PackageReference Include="BouncyCastle.Cryptography" Version="2.6.1" />
37+
<PackageReference Include="iTextSharp.LGPLv2.Core" Version="3.7.4" />
3838
<PackageReference Include="EPPlus" Version="[4.5.3.3, 5)" />
3939
</ItemGroup>
4040
<ItemGroup Condition=" '$(TargetFramework)' == 'net462' ">
4141
<Reference Include="System.ComponentModel.DataAnnotations" />
42-
<PackageReference Include="BouncyCastle.Cryptography" Version="2.5.0" />
43-
<PackageReference Include="iTextSharp.LGPLv2.Core" Version="3.4.25" />
42+
<PackageReference Include="BouncyCastle.Cryptography" Version="2.6.1" />
43+
<PackageReference Include="iTextSharp.LGPLv2.Core" Version="3.7.4" />
4444
<PackageReference Include="EPPlus" Version="[4.5.3.3, 5)" />
45-
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.2.2" />
45+
<PackageReference Include="Microsoft.Data.SqlClient" Version="6.0.2" />
4646
</ItemGroup>
4747
<PropertyGroup Condition="'$(TargetFramework)' == 'net462'">
4848
<DefineConstants>NET40</DefineConstants>

0 commit comments

Comments
 (0)