Skip to content

Commit 673f65d

Browse files
committed
Updated to .net core 2.0
1 parent 05b8fd5 commit 673f65d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Task("Patch-Assembly-Version")
4747

4848
Information("Building version {0} of Cofoundry.", versionInfo.InformationalVersion);
4949

50-
isPrerelease = !string.IsNullOrEmpty(versionInfo.PreReleaseNumber);
50+
isPrerelease = versionInfo.PreReleaseNumber.HasValue;
5151

5252
// Patch the version number so it's picked up when dependent projects are references
5353
// as nuget dependencies. Can't find a better way to do this.

src/Cofoundry.Plugins.Mail.MailKit/Cofoundry.Plugins.Mail.MailKit.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netstandard1.6</TargetFramework>
4+
<TargetFramework>netstandard2.0</TargetFramework>
55

66
<PackageId>Cofoundry.Plugins.Mail.MailKit</PackageId>
77
<Description>Cofoundry mail services that utilize the cross platform MailKit library.</Description>
@@ -16,7 +16,7 @@
1616
</PropertyGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="Cofoundry.Core" Version="0.2.0-beta0022" />
19+
<PackageReference Include="Cofoundry.Core" Version="0.2.0-beta0054" />
2020
<PackageReference Include="MailKit" Version="1.16.2" />
2121
</ItemGroup>
2222

0 commit comments

Comments
 (0)