Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add more TargetFrameworks and optimize dependencies #7

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions jsreport.Shared.Test/jsreport.Shared.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.0" />
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1" />
<PackageReference Include="Shouldly" Version="4.0.3" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="NUnit" Version="4.2.2" />
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0" />
<PackageReference Include="Shouldly" Version="4.2.1" />
</ItemGroup>

<ItemGroup>
Expand Down
15 changes: 7 additions & 8 deletions jsreport.Shared/jsreport.Shared.csproj
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
<TargetFrameworks>net45;netstandard2.0;net6.0</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>3.8.2</Version>
<Version>3.8.3</Version>
<Authors>Jan Blaha</Authors>
<Company>jsreport</Company>
<Product>jsreport</Product>
<Description>(Internal) Shared helpers for jsreport c# sdk</Description>
<Copyright>Copyright 2013-2022 Jan Blaha</Copyright>
<Copyright>Copyright 2013-2024 Jan Blaha</Copyright>
<PackageLicenseUrl>http://www.opensource.org/licenses/mit-license.php</PackageLicenseUrl>
<PackageProjectUrl>https://jsreport.net</PackageProjectUrl>
<PackageIconUrl>http://jsreport.net/img/favicon.ico</PackageIconUrl>
Expand All @@ -17,8 +17,8 @@
<PackageTags>jsreport</PackageTags>
<PackageReleaseNotes>Release notes are at https://github.com/jsreport/jsreport-dotnet-shared/releases</PackageReleaseNotes>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<AssemblyVersion>3.8.2.0</AssemblyVersion>
<FileVersion>3.8.1.0</FileVersion>
<AssemblyVersion>3.8.3.0</AssemblyVersion>
<FileVersion>3.8.3.0</FileVersion>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>

Expand All @@ -30,7 +30,7 @@
</When>
<Otherwise>
<ItemGroup>
<PackageReference Include="jsreport.Types" Version="3.9.4" />
<PackageReference Include="jsreport.Types" Version="3.9.5" />
</ItemGroup>
</Otherwise>
</Choose>
Expand All @@ -42,8 +42,7 @@
</None>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
<PackageReference Include="System.IO.Compression" Version="4.3.0" />
</ItemGroup>

Expand Down