Skip to content

Commit

Permalink
beta19
Browse files Browse the repository at this point in the history
  • Loading branch information
beto-rodriguez committed Jul 7, 2021
1 parent 67da23e commit 85a06a1
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/LiveChartsCore/LiveChartsCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<TargetFrameworks>net462;netstandard2.0;netcoreapp2.0;</TargetFrameworks>
<AssemblyName>LiveChartsCore</AssemblyName>
<RootNamespace>LiveChartsCore</RootNamespace>
<Version>2.0.0-beta.18</Version>
<Version>2.0.0-beta.19</Version>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<TargetFrameworks>netcoreapp2.0;netstandard2.0;net462;</TargetFrameworks>
<AssemblyName>LiveChartsCore.SkiaSharpView.Avalonia</AssemblyName>
<RootNamespace>LiveChartsCore.SkiaSharpView.Avalonia</RootNamespace>
<Version>2.0.0-beta.18</Version>
<Version>2.0.0-beta.19</Version>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>
<PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<TargetFrameworks>net462;netcoreapp3.0</TargetFrameworks>
<AssemblyName>LiveChartsCore.SkiaSharpView.WPF</AssemblyName>
<RootNamespace>LiveChartsCore.SkiaSharpView.WPF</RootNamespace>
<Version>2.0.0-beta.18</Version>
<Version>2.0.0-beta.19</Version>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">

<PropertyGroup>
<OutputType>WinExe</OutputType>
Expand All @@ -9,7 +9,7 @@
<TargetFrameworks>net462;netcoreapp3.0</TargetFrameworks>
<AssemblyName>LiveChartsCore.SkiaSharpView.WinForms</AssemblyName>
<RootNamespace>LiveChartsCore.SkiaSharpView.WinForms</RootNamespace>
<Version>2.0.0-beta.18</Version>
<Version>2.0.0-beta.19</Version>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ public FontAttributes TooltipFontAttributes
public PointStatesDictionary<SkiaSharpDrawingContext> PointStates { get; set; } = new();

/// <inheritdoc cref="IChartView{TDrawingContext}.AutoUpdateEnabled" />
public bool AutoUpdateEnaled { get; set; } = true;
public bool AutoUpdateEnabled { get; set; } = true;

/// <inheritdoc cref="IChartView.UpdaterThrottler" />
public TimeSpan UpdaterThrottler
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<TargetFrameworks>netstandard2.0;</TargetFrameworks>
<AssemblyName>LiveChartsCore.SkiaSharpView.XamarinForms</AssemblyName>
<RootNamespace>LiveChartsCore.SkiaSharpView.XamarinForms</RootNamespace>
<Version>2.0.0-beta.18</Version>
<Version>2.0.0-beta.19</Version>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@ public FontAttributes TooltipFontAttributes
public PointStatesDictionary<SkiaSharpDrawingContext> PointStates { get; set; } = new();

/// <inheritdoc cref="IChartView{TDrawingContext}.AutoUpdateEnabled" />
public bool AutoUpdateEnaled { get; set; } = true;
public bool AutoUpdateEnabled { get; set; } = true;

/// <inheritdoc cref="IChartView.UpdaterThrottler" />
public TimeSpan UpdaterThrottler
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Nullable>enable</Nullable>
<LangVersion>9.0</LangVersion>
<TargetFrameworks>net462;netstandard2.0;netcoreapp2.0;</TargetFrameworks>
<AssemblyName>LiveChartsCore.SkiaSharpView</AssemblyName>
<RootNamespace>LiveChartsCore.SkiaSharpView</RootNamespace>
<Version>2.0.0-beta.18</Version>
<Version>2.0.0-beta.19</Version>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public TestCartesianChartView()
public TooltipFindingStrategy TooltipFindingStrategy { get; set; }

public Color BackColor { get; set; }
public bool AutoUpdateEnaled { get; set; } = true;
public bool AutoUpdateEnabled { get; set; } = true;
public TimeSpan UpdaterThrottler { get; set; }
public DrawMarginFrame<SkiaSharpDrawingContext> DrawMarginFrame { get; set; }
public IEnumerable<Section<SkiaSharpDrawingContext>> Sections { get; set; }
Expand Down

0 comments on commit 85a06a1

Please sign in to comment.