diff --git a/build/pack.ps1 b/build/pack.ps1 index 6cfaa83c3..afb96c452 100644 --- a/build/pack.ps1 +++ b/build/pack.ps1 @@ -9,57 +9,19 @@ param([string]$configuration = "Debug", [string]$nupkgOutputPath = "./nupkg") [Project]::new("./src/skiasharp/LiveChartsCore.SkiaSharp.Xamarin.Forms/LiveChartsCore.SkiaSharpView.Xamarin.Forms.csproj") [Project]::new("./src/skiasharp/LiveChartsCore.SkiaSharpView.Blazor/LiveChartsCore.SkiaSharpView.Blazor.csproj") [Project]::new("./src/skiasharp/LiveChartsCore.SkiaSharpView.Eto/LiveChartsCore.SkiaSharpView.Eto.csproj") - [Project]::new("./src/skiasharp/LiveChartsCore.SkiaSharpView.Maui/LiveChartsCore.SkiaSharpView.Maui.csproj", $true) - [Project]::new("./src/skiasharp/LiveChartsCore.SkiaSharpView.Uno/LiveChartsCore.SkiaSharpView.Uno.csproj", $true) - [Project]::new("./src/skiasharp/LiveChartsCore.SkiaSharpView.Uno.WinUI/LiveChartsCore.SkiaSharpView.Uno.WinUI.csproj", $true), - [Project]::new( - "./src/LiveChartsCore.Behaviours/LiveChartsCore.Behaviours.csproj", $true, - "nuget", "./src/LiveChartsCore.Behaviours/LiveChartsCore.Behaviours.nuspec") - [Project]::new( - "./src/skiasharp/LiveChartsCore.SkiaSharpView.WinUI/LiveChartsCore.SkiaSharpView.WinUI.csproj", $true, - "nuget", "./src/skiasharp/LiveChartsCore.SkiaSharpView.WinUI/LiveChartsCore.SkiaSharpView.WinUI.nuspec" - ) + [Project]::new("./src/skiasharp/LiveChartsCore.SkiaSharpView.Maui/LiveChartsCore.SkiaSharpView.Maui.csproj") + [Project]::new("./src/skiasharp/LiveChartsCore.SkiaSharpView.Uno.WinUI/LiveChartsCore.SkiaSharpView.Uno.WinUI.csproj") + [Project]::new("./src/LiveChartsCore.Behaviours/LiveChartsCore.Behaviours.csproj") + [Project]::new("./src/skiasharp/LiveChartsCore.SkiaSharpView.WinUI/LiveChartsCore.SkiaSharpView.WinUI.csproj") ) -$msbuild = &"${env:ProgramFiles(x86)}\Microsoft Visual Studio\Installer\vswhere.exe" -latest -prerelease -products * -requires Microsoft.Component.MSBuild -find MSBuild\**\Bin\MSBuild.exe - class Project { [string]$src - [bool]$useMsbuild - [string]$packingMethod ## dotnet | msbuild | nuget - [string]$nuspecFile Project( [string]$src ) { $this.src = $src - $this.useMsbuild = $false - $this.packingMethod = "dotnet" - $this.nuspecFile = $null - } - - Project( - [string]$src, - [bool]$useMsbuild - ) { - $this.src = $src - $this.useMsbuild = $useMsbuild - if ($useMsbuild) { - $this.packingMethod = "msbuild" - $this.nuspecFile = "" - } - } - - Project( - [string]$src, - [bool]$useMsbuild, - [string]$packingMethod, - [string]$nuspecFile - ) { - $this.src = $src - $this.useMsbuild = $useMsbuild - $this.packingMethod = $packingMethod - $this.nuspecFile = $nuspecFile } [string]GetFolder() { @@ -67,82 +29,6 @@ class Project { } } -function Add-Build { - param ( - [Project] $project - ) - - $folder = $project.GetFolder() - - if (Test-Path $($folder + "/bin")) { - Remove-Item $($folder + "/bin") -Force -Recurse - } - - if ($project.useMsbuild) { - # skip the build, it will be built in the pack method. - if ($project.packingMethod -ne "msbuild") { - & $msbuild $project.src /p:configuration=$configuration /restore - } - } - else { - dotnet build $project.src -c $configuration - } - - if ($LastExitCode -ne 0) { - throw $("failed at '" + $project.src + "' with exit code " + $LastExitCode); - } -} - -function Add-Pack { - param ( - [Project] $project - ) - - if ($project.packingMethod -eq "dotnet") { - dotnet pack $project.src -o $nupkgOutputPath -c $configuration --no-build - } - - if ($project.packingMethod -eq "msbuild") { - & $msbuild $project.src -t:pack /p:configuration=$configuration /restore - - $folder = $project.GetFolder() - - $found = Get-ChildItem $folder -Filter "*.nupkg" -Recurse -Force - Copy-Item $found.FullName $nupkgOutputPath - - $found = Get-ChildItem $folder -Filter "*.snupkg" -Recurse -Force - Copy-Item $found.FullName $nupkgOutputPath - } - - if ($project.packingMethod -eq "nuget") { - if (!(Test-Path "./nuget.exe")) { - Invoke-WebRequest "https://dist.nuget.org/win-x86-commandline/latest/nuget.exe" -OutFile "./nuget.exe" - } - - ./nuget pack $project.nuspecFile -OutputDirectory $nupkgOutputPath -Symbols -SymbolPackageFormat snupkg - } -} - -function Write-ColorOutput($foregroundColor) -{ - # save the current color - $fc = $host.UI.RawUI.ForegroundColor - - # set the new color - $host.UI.RawUI.ForegroundColor = $foregroundColor - - # output - if ($args) { - Write-Output $args - } - else { - $input | Write-Output - } - - # restore the original color - $host.UI.RawUI.ForegroundColor = $fc -} - if (Test-Path $nupkgOutputPath) { Get-ChildItem $nupkgOutputPath -Include *.* -File -Recurse | ForEach-Object { $_.Delete() } } else { @@ -150,8 +36,11 @@ if (Test-Path $nupkgOutputPath) { } foreach ($p in $projects) { - Add-Build $p - Add-Pack $p -} + $folder = $p.GetFolder() -Write-ColorOutput green $("`n`nSuccessfully built and packed " + $projects.length + " projects at '" + $nupkgOutputPath + "' using '" + $configuration + "' config.`n`n") + if (Test-Path $($folder + "/bin")) { + Remove-Item $($folder + "/bin") -Force -Recurse + } + + dotnet pack $p.src -o $nupkgOutputPath -c $configuration +} diff --git a/samples/AvaloniaSample/Platforms/AvaloniaSample.Desktop/AvaloniaSample.Desktop.csproj b/samples/AvaloniaSample/Platforms/AvaloniaSample.Desktop/AvaloniaSample.Desktop.csproj index dc6d174f0..d79f0e6ee 100644 --- a/samples/AvaloniaSample/Platforms/AvaloniaSample.Desktop/AvaloniaSample.Desktop.csproj +++ b/samples/AvaloniaSample/Platforms/AvaloniaSample.Desktop/AvaloniaSample.Desktop.csproj @@ -3,7 +3,7 @@ WinExe + One for Windows with net8.0-windows TFM, one for MacOS with net80.0-macos and one with net8.0 TFM for Linux.--> net8.0 enable true diff --git a/samples/BlazorSample/Pages/Axes/LabelsFormat2.razor b/samples/BlazorSample/Pages/Axes/LabelsFormat2.razor index 55641d287..4fcaaeea1 100644 --- a/samples/BlazorSample/Pages/Axes/LabelsFormat2.razor +++ b/samples/BlazorSample/Pages/Axes/LabelsFormat2.razor @@ -17,7 +17,7 @@ protected async override Task OnInitializedAsync() { - // On .net7, SkiaSharp 2.88.6 and SkiaSharp.HarfBuzz 2.88.6 the MatchCharacter does not load the font. + // On .net8, SkiaSharp 2.88.6 and SkiaSharp.HarfBuzz 2.88.6 the MatchCharacter does not load the font. // The MatchCharacter function loads a font from the system, // it seems that on WASM we must load the font manually. diff --git a/src/LiveChartsCore.Behaviours/LiveChartsCore.Behaviours.csproj b/src/LiveChartsCore.Behaviours/LiveChartsCore.Behaviours.csproj index 75ea7a7ca..d7f8697ed 100644 --- a/src/LiveChartsCore.Behaviours/LiveChartsCore.Behaviours.csproj +++ b/src/LiveChartsCore.Behaviours/LiveChartsCore.Behaviours.csproj @@ -5,17 +5,17 @@ 12.0 - netstandard2.0; - net6.0; + netstandard2.0;netstandard2.1; net8.0;net8.0-android;net8.0-ios;net8.0-maccatalyst; $(TargetFrameworks); - net462; net6.0-windows10.0.19041.0; - net8.0-windows10.0.19041.0 + net8.0-windows10.0.19041.0; + true + 11.0 13.1 21.0 @@ -23,15 +23,11 @@ 10.0.17763.0 6.5 - win-x86;win-x64;win-arm64; LiveChartsCore.Behaviours LiveChartsCore.Behaviours - 2.0.0-rc3 + 2.0.0-rc3.1 icon.png Adds user interaction for touch screens, touch pads and mouse. MIT @@ -40,6 +36,12 @@ snupkg https://github.com/beto-rodriguez/LiveCharts2 bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml + + true + true + true + true + embedded @@ -54,6 +56,11 @@ + + + + + diff --git a/src/LiveChartsCore.Behaviours/LiveChartsCore.Behaviours.nuspec b/src/LiveChartsCore.Behaviours/LiveChartsCore.Behaviours.nuspec deleted file mode 100644 index 2fe6b206c..000000000 --- a/src/LiveChartsCore.Behaviours/LiveChartsCore.Behaviours.nuspec +++ /dev/null @@ -1,107 +0,0 @@ - - - - LiveChartsCore.Behaviours - 2.0.0-rc3 - LiveChartsCore.Behaviours - BetoRodriguez - true - MIT - https://github.com/beto-rodriguez/LiveCharts2 - - Simple, flexible, interactive and powerful data visualization, this package adds native - intereaction with touchscreens, touchpads and mouse. - - https://github.com/beto-rodriguez/LiveCharts2/releases - BetoRodriguez - livechart chart charting plot plotting data - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/LiveChartsCore.Behaviours/images/icon.png b/src/LiveChartsCore.Behaviours/images/icon.png new file mode 100644 index 000000000..d0c1c5660 Binary files /dev/null and b/src/LiveChartsCore.Behaviours/images/icon.png differ diff --git a/src/LiveChartsCore/LiveChartsCore.csproj b/src/LiveChartsCore/LiveChartsCore.csproj index 49b10d6a0..dce63ba03 100644 --- a/src/LiveChartsCore/LiveChartsCore.csproj +++ b/src/LiveChartsCore/LiveChartsCore.csproj @@ -5,15 +5,14 @@ 12.0 - netstandard2.0; - net6.0; - net8.0;net8.0-android;net8.0-ios;net8.0-maccatalyst + netstandard2.0;netstandard2.1; + net8.0;net8.0-android;net8.0-ios;net8.0-maccatalyst; $(TargetFrameworks); net462; net6.0-windows10.0.19041.0; - net8.0-windows10.0.19041.0; + net8.0-windows10.0.19041.0;net8.0-windows10.0.20348.0; 11.0 @@ -25,7 +24,7 @@ LiveChartsCore LiveChartsCore - 2.0.0-rc3 + 2.0.0-rc3.1 icon.png Simple, flexible, interactive and powerful data visualization for .Net, this is the core package probably you need another package also unless you are building your own backed. MIT @@ -33,6 +32,12 @@ true snupkg https://github.com/beto-rodriguez/LiveCharts2 + + true + true + true + true + embedded @@ -61,8 +66,9 @@ + diff --git a/src/skiasharp/LiveChartsCore.SkiaSharp.Avalonia/LiveChartsCore.SkiaSharpView.Avalonia.csproj b/src/skiasharp/LiveChartsCore.SkiaSharp.Avalonia/LiveChartsCore.SkiaSharpView.Avalonia.csproj index ed9b12ace..b4db05730 100644 --- a/src/skiasharp/LiveChartsCore.SkiaSharp.Avalonia/LiveChartsCore.SkiaSharpView.Avalonia.csproj +++ b/src/skiasharp/LiveChartsCore.SkiaSharp.Avalonia/LiveChartsCore.SkiaSharpView.Avalonia.csproj @@ -4,11 +4,11 @@ 12.0 enable - netstandard2.0;net6.0;net8.0; + netstandard2.0;netstandard2.1;net6.0;net8.0; LiveChartsCore.SkiaSharpView.Avalonia LiveChartsCore.SkiaSharpView.Avalonia - 2.0.0-rc3 + 2.0.0-rc3.1 icon.png Simple, flexible, interactive and powerful data visualization for AvaloniaUI. MIT @@ -16,6 +16,13 @@ true snupkg https://github.com/beto-rodriguez/LiveCharts2 + + + @@ -34,6 +41,7 @@ + diff --git a/src/skiasharp/LiveChartsCore.SkiaSharp.WPF/LiveChartsCore.SkiaSharpView.WPF.csproj b/src/skiasharp/LiveChartsCore.SkiaSharp.WPF/LiveChartsCore.SkiaSharpView.WPF.csproj index 72a42b175..b1b4bf5e9 100644 --- a/src/skiasharp/LiveChartsCore.SkiaSharp.WPF/LiveChartsCore.SkiaSharpView.WPF.csproj +++ b/src/skiasharp/LiveChartsCore.SkiaSharp.WPF/LiveChartsCore.SkiaSharpView.WPF.csproj @@ -7,7 +7,7 @@ net462;netcoreapp3.1 LiveChartsCore.SkiaSharpView.WPF LiveChartsCore.SkiaSharpView.WPF - 2.0.0-rc3 + 2.0.0-rc3.1 icon.png Simple, flexible, interactive and powerful data visualization for WPF. MIT @@ -15,6 +15,12 @@ true snupkg https://github.com/beto-rodriguez/LiveCharts2 + + true + true + true + true + embedded @@ -23,6 +29,7 @@ + diff --git a/src/skiasharp/LiveChartsCore.SkiaSharp.WinForms/LiveChartsCore.SkiaSharpView.WinForms.csproj b/src/skiasharp/LiveChartsCore.SkiaSharp.WinForms/LiveChartsCore.SkiaSharpView.WinForms.csproj index a286877dc..b0a74a152 100644 --- a/src/skiasharp/LiveChartsCore.SkiaSharp.WinForms/LiveChartsCore.SkiaSharpView.WinForms.csproj +++ b/src/skiasharp/LiveChartsCore.SkiaSharp.WinForms/LiveChartsCore.SkiaSharpView.WinForms.csproj @@ -10,7 +10,7 @@ net462;netcoreapp3.1 LiveChartsCore.SkiaSharpView.WinForms LiveChartsCore.SkiaSharpView.WinForms - 2.0.0-rc3 + 2.0.0-rc3.1 icon.png Simple, flexible, interactive and powerful data visualization for WindowsForms. MIT @@ -18,6 +18,12 @@ true snupkg https://github.com/beto-rodriguez/LiveCharts2 + + true + true + true + true + embedded @@ -31,6 +37,7 @@ + @@ -46,4 +53,4 @@ - \ No newline at end of file + diff --git a/src/skiasharp/LiveChartsCore.SkiaSharp.Xamarin.Forms/LiveChartsCore.SkiaSharpView.Xamarin.Forms.csproj b/src/skiasharp/LiveChartsCore.SkiaSharp.Xamarin.Forms/LiveChartsCore.SkiaSharpView.Xamarin.Forms.csproj index 97e6ee8ab..9879bf3df 100644 --- a/src/skiasharp/LiveChartsCore.SkiaSharp.Xamarin.Forms/LiveChartsCore.SkiaSharpView.Xamarin.Forms.csproj +++ b/src/skiasharp/LiveChartsCore.SkiaSharp.Xamarin.Forms/LiveChartsCore.SkiaSharpView.Xamarin.Forms.csproj @@ -6,7 +6,7 @@ netstandard2.0; LiveChartsCore.SkiaSharpView.XamarinForms LiveChartsCore.SkiaSharpView.XamarinForms - 2.0.0-rc3 + 2.0.0-rc3.1 icon.png Simple, flexible, interactive and powerful data visualization for XamarinForms. MIT @@ -14,6 +14,12 @@ true snupkg https://github.com/beto-rodriguez/LiveCharts2 + + true + true + true + true + embedded @@ -22,6 +28,7 @@ + diff --git a/src/skiasharp/LiveChartsCore.SkiaSharp/LiveChartsCore.SkiaSharpView.csproj b/src/skiasharp/LiveChartsCore.SkiaSharp/LiveChartsCore.SkiaSharpView.csproj index 7b6a43876..460f82b14 100644 --- a/src/skiasharp/LiveChartsCore.SkiaSharp/LiveChartsCore.SkiaSharpView.csproj +++ b/src/skiasharp/LiveChartsCore.SkiaSharp/LiveChartsCore.SkiaSharpView.csproj @@ -5,15 +5,14 @@ 12.0 - netstandard2.0; - net6.0; + netstandard2.0;netstandard2.1; net8.0;net8.0-android;net8.0-ios;net8.0-maccatalyst; $(TargetFrameworks); net462; net6.0-windows10.0.19041.0; - net8.0-windows10.0.19041.0; + net8.0-windows10.0.19041.0;net8.0-windows10.0.20348.0; 11.0 @@ -25,7 +24,7 @@ LiveChartsCore.SkiaSharpView LiveChartsCore.SkiaSharpView - 2.0.0-rc3 + 2.0.0-rc3.1 icon.png Simple, flexible, interactive and powerful data visualization for .Net, this package contains the SkiaSharp backend. MIT @@ -33,6 +32,12 @@ true snupkg https://github.com/beto-rodriguez/LiveCharts2 + + true + true + true + true + embedded @@ -45,6 +50,7 @@ + diff --git a/src/skiasharp/LiveChartsCore.SkiaSharpView.Blazor/LiveChartsCore.SkiaSharpView.Blazor.csproj b/src/skiasharp/LiveChartsCore.SkiaSharpView.Blazor/LiveChartsCore.SkiaSharpView.Blazor.csproj index b1115edd8..f85dd2249 100644 --- a/src/skiasharp/LiveChartsCore.SkiaSharpView.Blazor/LiveChartsCore.SkiaSharpView.Blazor.csproj +++ b/src/skiasharp/LiveChartsCore.SkiaSharpView.Blazor/LiveChartsCore.SkiaSharpView.Blazor.csproj @@ -7,7 +7,7 @@ net6.0;net8.0 enable - 2.0.0-rc3 + 2.0.0-rc3.1 icon.png Simple, flexible, interactive and powerful data visualization for Blazor. MIT @@ -18,6 +18,12 @@ True bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml True + + true + true + true + true + embedded @@ -52,6 +58,7 @@ + + Library 12.0 enable - netstandard2.0 + netstandard2.0;netstandard2.1; LiveChartsCore.SkiaSharpView.Eto LiveChartsCore.SkiaSharpView.Eto - 2.0.0-rc3 + 2.0.0-rc3.1 icon.png Simple, flexible, interactive and powerful data visualization for Eto.Forms. MIT @@ -15,6 +15,12 @@ true snupkg https://github.com/beto-rodriguez/LiveCharts2 + + true + true + true + true + embedded @@ -33,6 +39,7 @@ + - \ No newline at end of file + diff --git a/src/skiasharp/LiveChartsCore.SkiaSharpView.Maui/LiveChartsCore.SkiaSharpView.Maui.csproj b/src/skiasharp/LiveChartsCore.SkiaSharpView.Maui/LiveChartsCore.SkiaSharpView.Maui.csproj index ba42e36ca..a8b486c9d 100644 --- a/src/skiasharp/LiveChartsCore.SkiaSharpView.Maui/LiveChartsCore.SkiaSharpView.Maui.csproj +++ b/src/skiasharp/LiveChartsCore.SkiaSharpView.Maui/LiveChartsCore.SkiaSharpView.Maui.csproj @@ -22,13 +22,9 @@ 10.0.17763.0 6.5 - win-x86;win-x64;win-arm64 - 2.0.0-rc3 + 2.0.0-rc3.1 icon.png Simple, flexible, interactive and powerful data visualization for Maui. MIT @@ -38,11 +34,18 @@ https://github.com/beto-rodriguez/LiveCharts2 True bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml + + true + true + true + true + embedded + diff --git a/src/skiasharp/LiveChartsCore.SkiaSharpView.Maui/LiveChartsCore.SkiaSharpView.Maui.nuspec b/src/skiasharp/LiveChartsCore.SkiaSharpView.Maui/LiveChartsCore.SkiaSharpView.Maui.nuspec index e00aae61f..bc30a2742 100644 --- a/src/skiasharp/LiveChartsCore.SkiaSharpView.Maui/LiveChartsCore.SkiaSharpView.Maui.nuspec +++ b/src/skiasharp/LiveChartsCore.SkiaSharpView.Maui/LiveChartsCore.SkiaSharpView.Maui.nuspec @@ -2,7 +2,7 @@ LiveChartsCore.SkiaSharpView.Maui - 2.0.0-rc3 + 2.0.0-rc3.1 LiveChartsCore.SkiaSharpView.Maui BetoRodriguez true @@ -17,23 +17,23 @@ - + - + - + - + - + diff --git a/src/skiasharp/LiveChartsCore.SkiaSharpView.Uno.WinUI/LiveChartsCore.SkiaSharpView.Uno.WinUI.csproj b/src/skiasharp/LiveChartsCore.SkiaSharpView.Uno.WinUI/LiveChartsCore.SkiaSharpView.Uno.WinUI.csproj index 83dd62699..68fa5938a 100644 --- a/src/skiasharp/LiveChartsCore.SkiaSharpView.Uno.WinUI/LiveChartsCore.SkiaSharpView.Uno.WinUI.csproj +++ b/src/skiasharp/LiveChartsCore.SkiaSharpView.Uno.WinUI/LiveChartsCore.SkiaSharpView.Uno.WinUI.csproj @@ -11,6 +11,8 @@ net8.0-windows10.0.19041.0 + true + 11.0 13.1 21.0 @@ -18,16 +20,12 @@ 10.0.17763.0 6.5 - win-x86;win-x64;win-arm64 true - 2.0.0-rc3 + 2.0.0-rc3.1 icon.png Simple, flexible, interactive and powerful data visualization for Uno.WinUI. MIT @@ -40,24 +38,26 @@ LiveChartsCore.SkiaSharpView.Uno.WinUI en-US bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml + + true + true + true + true + embedded - + + + - + - + diff --git a/src/skiasharp/LiveChartsCore.SkiaSharpView.WinUI/LiveChartsCore.SkiaSharpView.WinUI.csproj b/src/skiasharp/LiveChartsCore.SkiaSharpView.WinUI/LiveChartsCore.SkiaSharpView.WinUI.csproj index 06d221f65..1c8f4d15d 100644 --- a/src/skiasharp/LiveChartsCore.SkiaSharpView.WinUI/LiveChartsCore.SkiaSharpView.WinUI.csproj +++ b/src/skiasharp/LiveChartsCore.SkiaSharpView.WinUI/LiveChartsCore.SkiaSharpView.WinUI.csproj @@ -5,22 +5,17 @@ net6.0-windows10.0.19041.0; - net8.0-windows10.0.19041.0 + net8.0-windows10.0.19041.0;net8.0-windows10.0.20348.0; 10.0.17763.0 - - win-x86;win-x64;win-arm64 - win10-x86;win10-x64;win10-arm64 - + true + win-x86;win-x64;win-arm64 true LiveChartsCore.SkiaSharpView.WinUI - 2.0.0-rc3 + 2.0.0-rc3.1 icon.png Simple, flexible, interactive and powerful data visualization for WindowsAppSDK. MIT @@ -28,10 +23,15 @@ true snupkg true - true - false https://github.com/beto-rodriguez/LiveCharts2 + + true + true + true + true + embedded + @@ -40,13 +40,14 @@ $(NoWarn);NETSDK1206 - + bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml True + diff --git a/src/skiasharp/LiveChartsCore.SkiaSharpView.WinUI/LiveChartsCore.SkiaSharpView.WinUI.nuspec b/src/skiasharp/LiveChartsCore.SkiaSharpView.WinUI/LiveChartsCore.SkiaSharpView.WinUI.nuspec deleted file mode 100644 index b91dddaf2..000000000 --- a/src/skiasharp/LiveChartsCore.SkiaSharpView.WinUI/LiveChartsCore.SkiaSharpView.WinUI.nuspec +++ /dev/null @@ -1,84 +0,0 @@ - - - - LiveChartsCore.SkiaSharpView.WinUI - 2.0.0-rc3.1 - LiveChartsCore.SkiaSharpView.WinUI - BetoRodriguez - true - MIT - https://github.com/beto-rodriguez/LiveCharts2 - Simple, flexible, interactive and powerful data visualization for WinUI. - https://github.com/beto-rodriguez/LiveCharts2/releases - BetoRodriguez - livechart chart charting plot plotting data - icon.png - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tests/LiveChartsCore.UnitTesting/LiveChartsCore.UnitTesting.csproj b/tests/LiveChartsCore.UnitTesting/LiveChartsCore.UnitTesting.csproj index 7254c728c..c14ca875b 100644 --- a/tests/LiveChartsCore.UnitTesting/LiveChartsCore.UnitTesting.csproj +++ b/tests/LiveChartsCore.UnitTesting/LiveChartsCore.UnitTesting.csproj @@ -2,7 +2,7 @@ 12.0 - net462;net6.0;net7.0;net8.0 + net462;net6.0;net8.0 false