Skip to content

Commit

Permalink
Merge pull request #12 from PhilPJL/develop
Browse files Browse the repository at this point in the history
Remove dependency on .NET Core 3
  • Loading branch information
PhilPJL authored Jul 25, 2020
2 parents facee1f + 706d28f commit e1b69a1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions ImpSoft.OctopusEnergy.Api/ImpSoft.OctopusEnergy.Api.csproj
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0;netcoreapp3.0</TargetFrameworks>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>3.0.0</Version>
<Version>3.0.1</Version>
<Authors>Philip Lee</Authors>
<Company>ImpSoft</Company>
<Product>Octopus Energy API wrapper</Product>
Expand All @@ -18,8 +18,8 @@
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageReleaseNotes>none</PackageReleaseNotes>
<Copyright>Copyright © Philip Lee 2020</Copyright>
<FileVersion>3.0.0.0</FileVersion>
<AssemblyVersion>3.0.0.0</AssemblyVersion>
<FileVersion>3.0.1.0</FileVersion>
<AssemblyVersion>3.0.1.0</AssemblyVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion ImpSoft.OctopusEnergy.Api/OctopusEnergyClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ internal static Uri ComposeGetGasStandingChargesUri(string productCode, string t
private static int MaxConsumptionPageSize { get; } = 65000;
private static int MaxTariffsPageSize { get; } = 1500;

public HttpClient Client { get; }
private HttpClient Client { get; }

public async Task<IEnumerable<Consumption>> GetElectricityConsumptionAsync(string apiKey, string mpan, string serialNumber,
DateTimeOffset from, DateTimeOffset to, Interval interval = Interval.Default)
Expand Down

0 comments on commit e1b69a1

Please sign in to comment.