Skip to content

Commit db0eb01

Browse files
Merge pull request #163 from axunonb/master
Support for .NET Framework 4.5 and up, besides .NET Core 2
2 parents 922ae93 + b4e6bad commit db0eb01

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ build/
1515
[Bb]in/
1616
[Oo]bj/
1717

18+
# Visual Studio cache/options directory
19+
.vs/
20+
1821
!Libraries/Redis/bin/
1922
!Libraries/Mongo/bin/
2023

PreMailer.Net/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ x64/
1616
build/
1717
[Bb]in/
1818
[Oo]bj/
19+
.vs/
1920

2021
!Libraries/Redis/bin/
2122
!Libraries/Mongo/bin/
Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0</TargetFrameworks>
5-
<Version>2.0.0</Version>
4+
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
5+
<Version>2.0.1</Version>
66
<Authors>Martin H. Normark</Authors>
77
<Description>
88
PreMailer.Net is a C# utility for moving CSS to inline style attributes, to gain maximum E-mail client compatibility.
@@ -13,14 +13,13 @@
1313
<PackageIconUrl>https://github.com/milkshakesoftware/PreMailer.Net/raw/master/icon.png</PackageIconUrl>
1414
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
1515
<PackageReleaseNotes>
16-
Support for .NET Core https://github.com/milkshakesoftware/PreMailer.Net/pull/141
17-
Fix: Duplicated style properties added with different values https://github.com/milkshakesoftware/PreMailer.Net/pull/139
16+
Support for .NET Framework 4.5 and up, besides .NET Core 2
1817
</PackageReleaseNotes>
1918
<PackageTags>email css newsletter html</PackageTags>
2019
</PropertyGroup>
2120

2221
<ItemGroup>
23-
<PackageReference Include="AngleSharp" Version="0.9.9" />
22+
<PackageReference Include="AngleSharp" Version="0.9.11" />
2423
</ItemGroup>
2524

2625
</Project>

0 commit comments

Comments
 (0)