Skip to content

Commit

Permalink
Updated packages
Browse files Browse the repository at this point in the history
  • Loading branch information
PawelTroka committed Dec 30, 2017
1 parent 56fed33 commit f82efe5
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
12 changes: 7 additions & 5 deletions Computator.NET.Charting/RealCharting/Chart2D.cs
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,13 @@ public void ShowSeries(string series)

#endregion



public void Redraw()
{
Invalidate();
}

public double XMin
{
get { return ChartAreas[0].AxisX.Minimum; }
Expand All @@ -235,11 +242,6 @@ public double XMin
}
}

public void Redraw()
{
Invalidate();
}

public double XMax
{
get { return ChartAreas[0].AxisX.Maximum; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.5.0" Condition="'$(TargetFramework)' != 'net40'" />
<PackageReference Include="Moq" Version="4.7.145" Condition="'$(TargetFramework)' != 'net40'" />
<PackageReference Include="Moq" Version="4.8.0" Condition="'$(TargetFramework)' != 'net40'" />
<PackageReference Include="Moq" Version="4.2.1510.2205" Condition="'$(TargetFramework)' == 'net40'" />
<PackageReference Include="NUnit" Version="3.7.1" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Computator.NET.Core.Tests/Computator.NET.Core.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.5.0" Condition="'$(TargetFramework)' != 'net40'" />
<PackageReference Include="Moq" Version="4.7.145" Condition="'$(TargetFramework)' != 'net40'" />
<PackageReference Include="Moq" Version="4.8.0" Condition="'$(TargetFramework)' != 'net40'" />
<PackageReference Include="Moq" Version="4.2.1510.2205" Condition="'$(TargetFramework)' == 'net40'" />
<PackageReference Include="MathNet.Numerics" Version="3.20.0" />
<PackageReference Include="NUnit" Version="3.7.1" />
Expand Down
2 changes: 1 addition & 1 deletion tools/packages.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Cake" version="0.23.0" />
<package id="Cake" version="0.24.0" />
</packages>

0 comments on commit f82efe5

Please sign in to comment.