Skip to content
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
1 change: 1 addition & 0 deletions Mailgun.AspNet.Identity/Mailgun.AspNet.Identity.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.AspNet.Identity.Core" Version="2.2.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>

<ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions Mailgun.Tests/Mailgun.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.5.0" />
<PackageReference Include="MSTest.TestAdapter" Version="1.2.0" />
<PackageReference Include="MSTest.TestFramework" Version="1.2.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Should" Version="1.1.20" />
</ItemGroup>

Expand Down
12 changes: 8 additions & 4 deletions Mailgun/Mailgun.csproj
Original file line number Diff line number Diff line change
@@ -1,19 +1,23 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2</TargetFramework>
<TargetFrameworks>netstandard2;net8</TargetFrameworks>
<IsPackable>True</IsPackable>
<PackageVersion>0.8.0</PackageVersion>
<PackageVersion>0.9.0</PackageVersion>
<PackageId>mailgun_csharp</PackageId>
<Authors>Charles King; Leonid Tsarev</Authors>
<PackageDescription>
A .NET Mailgun API wrapper. Currently supports sending messages and batch messages.
</PackageDescription>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageTags>Mailgun API Mailer</PackageTags>
<DebugType>Embedded</DebugType>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<RepositoryUrl>https://github.com/bringking/mailgun_csharp</RepositoryUrl>
<PackageReleaseNotes>
- Add first implementation of events
- Multitarget .NET 8 &amp;nestandard to optimize builds
- Add PDB &amp; Source
- Bump Newtonsoft to combat vulnerability warnings
</PackageReleaseNotes>
<PackageReadmeFile>README.md</PackageReadmeFile>
<DebugType>embedded</DebugType>
Expand All @@ -22,7 +26,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Http" Version="2.1.0" />
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>

Expand Down