Skip to content
Merged
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
2 changes: 1 addition & 1 deletion src/FluentEmail.Core/FluentEmail.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<Description>Send emails very easily. Use razor templates, smtp, embedded files, all without hassle. This is a Base Package and includes just the domain model, very basic defaults, and is also included with every other Fluent Email package here.</Description>
<AssemblyTitle>Fluent Email</AssemblyTitle>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<AssetsDirectory>../../assets</AssetsDirectory>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/Renderers/FluentEmail.Liquid/FluentEmail.Liquid.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<AssemblyTitle>Fluent Email - Liquid</AssemblyTitle>
<Authors>Marko Lahma;$(Authors)</Authors>
<PackageTags>$(PackageTags);liquid</PackageTags>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<AssetsDirectory>../../../assets</AssetsDirectory>
<NoWarn>NU5104</NoWarn>
<Nullable>enable</Nullable>
Expand Down
2 changes: 1 addition & 1 deletion src/Renderers/FluentEmail.Razor/FluentEmail.Razor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>Generate emails using Razor templates. Anything you can do in ASP.NET is possible here. Uses the RazorLight project under the hood.</Description>
<AssemblyTitle>Fluent Email - Razor</AssemblyTitle>
<PackageTags>$(PackageTags);razor</PackageTags>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<AssetsDirectory>../../../assets</AssetsDirectory>
<NoWarn>NU5104</NoWarn>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Senders/FluentEmail.Graph/FluentEmail.Graph.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>Send emails via Microsoft Graph API</Description>
<AssemblyTitle>Fluent Email - Graph</AssemblyTitle>
<PackageTags>$(PackageTags);graph</PackageTags>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<NoWarn>NU5104</NoWarn>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/Senders/FluentEmail.MailKit/FluentEmail.MailKit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<AssemblyTitle>Fluent Email - MailKit</AssemblyTitle>
<Authors>Luke Lowrey;Ben Cull;Matt Rutledge;Github Contributors</Authors>
<PackageTags>$(PackageTags);mailkit</PackageTags>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>FluentEmail.MailKitSmtp</RootNamespace>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/Senders/FluentEmail.Mailgun/FluentEmail.Mailgun.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>Send emails via MailGun using their REST API</Description>
<AssemblyTitle>Fluent Email - MailGun</AssemblyTitle>
<PackageTags>$(PackageTags);mailgun</PackageTags>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<AssemblyTitle>Fluent Email - MailTrap</AssemblyTitle>
<Authors>Luke Lowrey;Ben Cull;Anthony Zigenbine;Github Contributors</Authors>
<PackageTags>$(PackageTags);mailtrap</PackageTags>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<AssemblyTitle>Fluent Email - SendGrid</AssemblyTitle>
<Authors>Luke Lowrey;Ben Cull;Ricardo Santos;Github Contributors</Authors>
<PackageTags>$(PackageTags);sendgrid</PackageTags>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Senders/FluentEmail.Smtp/FluentEmail.Smtp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<AssemblyTitle>Fluent Email - SMTP</AssemblyTitle>
<Authors>Luke Lowrey;Ben Cull;Github Contributors</Authors>
<PackageTags>$(PackageTags);smtp</PackageTags>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions test/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.1" />
<PackageReference Include="NUnit" Version="3.12.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.16.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="NUnit" Version="3.14.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0" />
</ItemGroup>

<ItemGroup>
Expand Down
9 changes: 1 addition & 8 deletions test/FluentEmail.Core.Tests/FluentEmail.Core.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<IsTestProject>true</IsTestProject>
</PropertyGroup>

Expand All @@ -13,18 +13,11 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" />
<PackageReference Include="NUnit" Version="3.13.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0" />
<ProjectReference Include="..\..\src\Senders\FluentEmail.Mailtrap\FluentEmail.Mailtrap.csproj" />
<ProjectReference Include="..\..\src\Senders\FluentEmail.SendGrid\FluentEmail.SendGrid.csproj" />
<ProjectReference Include="..\..\src\Senders\FluentEmail.Mailgun\FluentEmail.Mailgun.csproj" />
</ItemGroup>

<ItemGroup>
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
</ItemGroup>

<ItemGroup>
<None Update="*.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
Expand Down
11 changes: 2 additions & 9 deletions test/FluentEmail.Liquid.Tests/FluentEmail.Liquid.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<PreserveCompilationContext>true</PreserveCompilationContext>
</PropertyGroup>

Expand All @@ -23,14 +23,7 @@
<ItemGroup>
<PackageReference Include="FluentAssertions" Version="8.8.0" />
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="10.0.0" />
<PackageReference Include="Microsoft.Extensions.FileProviders.Physical" Version="5.0.0" />
</ItemGroup>


<ItemGroup>
<PackageReference Update="Microsoft.NET.Test.Sdk" Version="16.8.3" />
<PackageReference Update="NUnit" Version="3.13.0" />
<PackageReference Update="NUnit3TestAdapter" Version="3.17.0" />
<PackageReference Include="Microsoft.Extensions.FileProviders.Physical" Version="8.0.0" />
</ItemGroup>

</Project>
9 changes: 1 addition & 8 deletions test/FluentEmail.Razor.Tests/FluentEmail.Razor.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<PreserveCompilationContext>true</PreserveCompilationContext>
</PropertyGroup>

Expand All @@ -28,11 +28,4 @@
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
</ItemGroup>


<ItemGroup>
<PackageReference Update="Microsoft.NET.Test.Sdk" Version="16.8.3" />
<PackageReference Update="NUnit" Version="3.13.0" />
<PackageReference Update="NUnit3TestAdapter" Version="3.17.0" />
</ItemGroup>

</Project>
Loading