Skip to content

Commit 381fe6c

Browse files
committed
Fixed build issues
1 parent ac1d71d commit 381fe6c

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
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.SendGrid/Cofoundry.Plugins.Mail.SendGrid.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
</PropertyGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="Cofoundry.Core" Version="0.2.0-beta0054" />
19+
<PackageReference Include="Cofoundry.Core" Version="0.2.0-beta0064" />
2020
<PackageReference Include="Sendgrid" Version="9.9.0" />
2121
</ItemGroup>
2222

src/Cofoundry.Plugins.Mail.SendGrid/SendGridMailDispatchSession.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ public class SendGridMailDispatchSession : IMailDispatchSession
1616
private readonly SendGridSettings _sendGridSettings;
1717
private readonly SendGridClient _sendGridClient;
1818
private readonly DebugMailDispatchSession _debugMailDispatchSession;
19-
private readonly IPathResolver _pathResolver;
2019

2120
public SendGridMailDispatchSession(
2221
Core.Mail.MailSettings mailSettings,

src/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<RepositoryUrl>https://github.com/cofoundry-cms/Cofoundry.Plugins.Mail.MailKit/</RepositoryUrl>
88
<RepositoryType>git</RepositoryType>
99
<PackageVersion>$(NuGetVersion)</PackageVersion>
10-
<Version>$(AssemblyVersion)</Version>
10+
<Version>0.1.0-ci0002</Version>
1111
<FileVersion>$(FileVersion)</FileVersion>
1212
<InformationalVersion>$(InformationalVersion)</InformationalVersion>
1313
<Copyright>$(Copyright)</Copyright>

0 commit comments

Comments
 (0)