Skip to content

Commit 93b55bb

Browse files
committed
Updated to .net core 2.0
1 parent ee67fb8 commit 93b55bb

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
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.Azure/AzureDependencyRegistration.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
using Cofoundry.Core.Configuration;
2-
using Cofoundry.Core.DependencyInjection;
1+
using Cofoundry.Core.DependencyInjection;
32
using Cofoundry.Domain.Data;
4-
using Microsoft.Extensions.Configuration;
53
using System;
64
using System.Collections.Generic;
75
using System.Linq;

src/Cofoundry.Plugins.Azure/Cofoundry.Plugins.Azure.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.Azure</PackageId>
77
<Description>Services, abstractions and helpers for running in an Azure environment.</Description>
@@ -16,7 +16,7 @@
1616
</PropertyGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="Cofoundry.Domain" Version="0.2.0-beta0004" />
19+
<PackageReference Include="Cofoundry.Domain" Version="0.2.0-beta0056" />
2020
<PackageReference Include="WindowsAzure.Storage" Version="8.1.4" />
2121
</ItemGroup>
2222

0 commit comments

Comments
 (0)