Skip to content

Commit

Permalink
Merge branches 'dependabot/nuget/AutoFixture.AutoMoq-4.8.0', 'dependa…
Browse files Browse the repository at this point in the history
…bot/nuget/Microsoft.NET.Test.Sdk-16.0.1', 'dependabot/nuget/xunit.runner.visualstudio-2.4.1', 'dependabot/nuget/StyleCop.Analyzers-1.1.0-beta009' and 'dependabot/nuget/AutoFixture.SeedExtensions-4.8.0'
  • Loading branch information
JSkimming committed Apr 10, 2019
6 parents 193d02a + e85ad9b + 624a254 + b94a4a0 + 2804d73 + 79c1d72 commit c9fa968
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/Tesla.NET/Models/IVehicleState.cs
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public interface IVehicleState : IState
string SunRoofState { get; }

/// <summary>
/// Gets a value indicating whether valet mode is enabled,
/// Gets a value indicating whether valet mode is enabled.
/// </summary>
[JsonProperty("valet_mode")]
bool ValetMode { get; }
Expand Down
2 changes: 1 addition & 1 deletion src/Tesla.NET/Models/Internal/EpochConversion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace Tesla.NET.Models.Internal
internal static class EpochConversion
{
/// <summary>
/// The Unix Epoch which is 1970-01-01T00:00:00.000Z
/// The Unix Epoch which is 1970-01-01T00:00:00.000Z.
/// </summary>
public static readonly DateTime Epoch = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc);

Expand Down
2 changes: 1 addition & 1 deletion src/Tesla.NET/Models/Internal/VehicleState.cs
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ public VehicleState(
public DateTime TimestampUtc => EpochConversion.FromMilliseconds(Timestamp);

/// <summary>
/// Gets a value indicating whether valet mode is enabled,
/// Gets a value indicating whether valet mode is enabled.
/// </summary>
public bool ValetMode { get; }

Expand Down
7 changes: 5 additions & 2 deletions src/Tesla.NET/Tesla.NET.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net45;netstandard2.0</TargetFrameworks>
Expand Down Expand Up @@ -28,7 +28,10 @@

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.0-beta004" PrivateAssets="All" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.1-rc.114">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
Expand Down
2 changes: 1 addition & 1 deletion src/Tesla.NET/TeslaClientBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ protected TeslaClientBase(Uri baseUri, HttpClient client)
/// Chain of <see cref="HttpMessageHandler" /> instances.
/// All but the last should be <see cref="DelegatingHandler"/>s.
/// </param>
/// <returns>A chain of <see cref="HttpMessageHandler"/>s</returns>
/// <returns>A chain of <see cref="HttpMessageHandler"/>s.</returns>
public static HttpMessageHandler CreatePipeline(IReadOnlyCollection<HttpMessageHandler> handlers)
{
if (handlers == null)
Expand Down
8 changes: 4 additions & 4 deletions test/Tesla.NET.Tests/Tesla.NET.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="AutoFixture.AutoMoq" Version="4.4.0" />
<PackageReference Include="AutoFixture.SeedExtensions" Version="4.4.0" />
<PackageReference Include="AutoFixture.AutoMoq" Version="4.8.0" />
<PackageReference Include="AutoFixture.SeedExtensions" Version="4.8.0" />
<PackageReference Include="AutoFixture.Xunit2" Version="4.4.0" />
<PackageReference Include="AutoTest.ArgumentNullException.Xunit" Version="0.9.0" />
<PackageReference Include="coverlet.msbuild" Version="2.0.1" />
<PackageReference Include="FluentAssertions" Version="5.4.1" />
<PackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="2.1.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.0.1" />
<PackageReference Include="Moq" Version="4.8.3" />
<PackageReference Include="xunit" Version="2.3.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" />
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />
</ItemGroup>

Expand Down

0 comments on commit c9fa968

Please sign in to comment.