Skip to content

Commit

Permalink
Merge pull request #163 from axunonb/master
Browse files Browse the repository at this point in the history
Support for .NET Framework 4.5 and up, besides .NET Core 2
  • Loading branch information
martinnormark authored Dec 7, 2018
2 parents 922ae93 + b4e6bad commit db0eb01
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ build/
[Bb]in/
[Oo]bj/

# Visual Studio cache/options directory
.vs/

!Libraries/Redis/bin/
!Libraries/Mongo/bin/

Expand Down
1 change: 1 addition & 0 deletions PreMailer.Net/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ x64/
build/
[Bb]in/
[Oo]bj/
.vs/

!Libraries/Redis/bin/
!Libraries/Mongo/bin/
Expand Down
9 changes: 4 additions & 5 deletions PreMailer.Net/PreMailer.Net/PreMailer.Net.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">

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

<ItemGroup>
<PackageReference Include="AngleSharp" Version="0.9.9" />
<PackageReference Include="AngleSharp" Version="0.9.11" />
</ItemGroup>

</Project>

0 comments on commit db0eb01

Please sign in to comment.