Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
VahidN committed Feb 19, 2019
1 parent 5e7a852 commit 5b29ac8
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 17 deletions.
4 changes: 2 additions & 2 deletions PdfRpt.Core.SampleWebApp/PdfRpt.Core.SampleWebApp.csproj
@@ -1,12 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<TargetFramework>netcoreapp2.2</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Folder Include="wwwroot\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.1.5" />
<PackageReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\src\PdfRpt.Core\PdfRpt.Core.csproj" />
Expand Down
Expand Up @@ -13,11 +13,11 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
<PackageReference Include="MSTest.TestAdapter" Version="1.3.2" />
<PackageReference Include="MSTest.TestFramework" Version="1.3.2" />
<PackageReference Include="Microsoft.Data.Sqlite" Version="2.1.0" />
<PackageReference Include="MSTest.TestAdapter" Version="1.4.0" />
<PackageReference Include="MSTest.TestFramework" Version="1.4.0" />
<PackageReference Include="Microsoft.Data.Sqlite" Version="2.2.2" />
<PackageReference Include="OxyPlot.Core" Version="2.0.0-unstable1035" />
<PackageReference Include="EPPlus" Version="4.5.2.1" />
<PackageReference Include="EPPlus" Version="4.5.3.1" />
<PackageReference Include="System.Drawing.Common" Version="4.5.1" />
</ItemGroup>
<ItemGroup>
Expand Down
22 changes: 11 additions & 11 deletions src/PdfRpt.Core/PdfRpt.Core.csproj
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>PdfReport.Core is a code first reporting engine, which is built on top of the iTextSharp.LGPLv2.Core and EPPlus.Core libraries.</Description>
<VersionPrefix>1.2.5</VersionPrefix>
<VersionPrefix>1.2.6</VersionPrefix>
<Authors>Vahid Nasiri</Authors>
<TargetFrameworks>net40;netstandard1.6;netstandard2.0</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand All @@ -23,30 +23,30 @@
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.6' ">
<PackageReference Include="System.ComponentModel.Annotations" Version="4.5.0" />
<PackageReference Include="System.Data.SqlClient" Version="4.5.1" />
<PackageReference Include="System.Data.SqlClient" Version="4.6.0" />
<PackageReference Include="System.Dynamic.Runtime" Version="4.3.0" />
<PackageReference Include="System.Xml.XPath.XDocument" Version="4.3.0" />
<PackageReference Include="System.Runtime.InteropServices" Version="4.3.0" />
<PackageReference Include="Portable.BouncyCastle" Version="1.8.4" />
<PackageReference Include="iTextSharp.LGPLv2.Core" Version="1.4.5" />
<PackageReference Include="Portable.BouncyCastle" Version="1.8.5" />
<PackageReference Include="iTextSharp.LGPLv2.Core" Version="1.4.6" />
<PackageReference Include="EPPlus.Core" Version="1.5.4" />
</ItemGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard1.6'">
<DefineConstants>NETSTANDARD1_6</DefineConstants>
</PropertyGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<PackageReference Include="System.ComponentModel.Annotations" Version="4.5.0" />
<PackageReference Include="System.Data.SqlClient" Version="4.5.1" />
<PackageReference Include="System.Data.SqlClient" Version="4.6.0" />
<PackageReference Include="System.Xml.XPath.XDocument" Version="4.3.0" />
<PackageReference Include="Portable.BouncyCastle" Version="1.8.4" />
<PackageReference Include="iTextSharp.LGPLv2.Core" Version="1.4.5" />
<PackageReference Include="EPPlus" Version="4.5.2.1" />
<PackageReference Include="Portable.BouncyCastle" Version="1.8.5" />
<PackageReference Include="iTextSharp.LGPLv2.Core" Version="1.4.6" />
<PackageReference Include="EPPlus" Version="4.5.3.1" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net40' ">
<Reference Include="System.ComponentModel.DataAnnotations" />
<PackageReference Include="Portable.BouncyCastle" Version="1.8.4" />
<PackageReference Include="iTextSharp.LGPLv2.Core" Version="1.4.5" />
<PackageReference Include="EPPlus" Version="4.5.2.1" />
<PackageReference Include="Portable.BouncyCastle" Version="1.8.5" />
<PackageReference Include="iTextSharp.LGPLv2.Core" Version="1.4.6" />
<PackageReference Include="EPPlus" Version="4.5.3.1" />
</ItemGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'net40'">
<DefineConstants>NET40</DefineConstants>
Expand Down
3 changes: 3 additions & 0 deletions tag-it.bat
@@ -0,0 +1,3 @@
git tag -a 1.2.6 -m "Published 1.2.6 to nuget.org"
git push --follow-tags
pause
4 changes: 4 additions & 0 deletions update-dependencies.bat
@@ -0,0 +1,4 @@
dotnet tool update -g dotnet-outdated
dotnet outdated -u
dotnet restore
pause

0 comments on commit 5b29ac8

Please sign in to comment.