File tree Expand file tree Collapse file tree 3 files changed +4
-6
lines changed
src/Cofoundry.Plugins.Azure Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ Task("Patch-Assembly-Version")
47
47
48
48
Information ( "Building version {0} of Cofoundry." , versionInfo . InformationalVersion ) ;
49
49
50
- isPrerelease = ! string . IsNullOrEmpty ( versionInfo . PreReleaseNumber ) ;
50
+ isPrerelease = versionInfo . PreReleaseNumber . HasValue ;
51
51
52
52
// Patch the version number so it's picked up when dependent projects are references
53
53
// as nuget dependencies. Can't find a better way to do this.
Original file line number Diff line number Diff line change 1
- using Cofoundry . Core . Configuration ;
2
- using Cofoundry . Core . DependencyInjection ;
1
+ using Cofoundry . Core . DependencyInjection ;
3
2
using Cofoundry . Domain . Data ;
4
- using Microsoft . Extensions . Configuration ;
5
3
using System ;
6
4
using System . Collections . Generic ;
7
5
using System . Linq ;
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >netstandard1.6 </TargetFramework >
4
+ <TargetFramework >netstandard2.0 </TargetFramework >
5
5
6
6
<PackageId >Cofoundry.Plugins.Azure</PackageId >
7
7
<Description >Services, abstractions and helpers for running in an Azure environment.</Description >
16
16
</PropertyGroup >
17
17
18
18
<ItemGroup >
19
- <PackageReference Include =" Cofoundry.Domain" Version =" 0.2.0-beta0004 " />
19
+ <PackageReference Include =" Cofoundry.Domain" Version =" 0.2.0-beta0056 " />
20
20
<PackageReference Include =" WindowsAzure.Storage" Version =" 8.1.4" />
21
21
</ItemGroup >
22
22
You can’t perform that action at this time.
0 commit comments