ScottPlot.WinForms.NUGET.csproj 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
  2. <PropertyGroup>
  3. <TargetFrameworks>net461;net472;netcoreapp3.1;net5.0-windows</TargetFrameworks>
  4. <PlatformTarget>AnyCPU</PlatformTarget>
  5. <AssemblyName>ScottPlot.WinForms</AssemblyName>
  6. <RootNamespace>ScottPlot</RootNamespace>
  7. <UseWindowsForms>true</UseWindowsForms>
  8. <ApplicationIcon>icon.ico</ApplicationIcon>
  9. <PackageIcon>icon.png</PackageIcon>
  10. <Description>This package provides a Windows Forms user control to interactively display ScottPlot graphs. This package targets both .NET Framework and .NET Core.</Description>
  11. <PackageLicenseExpression>MIT</PackageLicenseExpression>
  12. <PackageProjectUrl>http://swharden.com/scottplot/</PackageProjectUrl>
  13. <PackageTags>plot graph data chart signal line bar C# winforms forms control interactive</PackageTags>
  14. <PackageReleaseNotes>Release notes: https://github.com/swharden/ScottPlot/releases
  15. Release cookbook: http://swharden.com/scottplot/cookbook
  16. Release demo: http://swharden.com/scottplot/demo</PackageReleaseNotes>
  17. <IncludeSymbols>true</IncludeSymbols>
  18. <SymbolPackageFormat>snupkg</SymbolPackageFormat>
  19. <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
  20. <Version>4.1.16</Version>
  21. <AssemblyVersion>4.1.16.0</AssemblyVersion>
  22. <FileVersion>4.1.16.0</FileVersion>
  23. <SignAssembly>true</SignAssembly>
  24. <DelaySign>false</DelaySign>
  25. <AssemblyOriginatorKeyFile>Key.snk</AssemblyOriginatorKeyFile>
  26. <Authors>Scott Harden</Authors>
  27. <Company>Harden Technologies, LLC</Company>
  28. <LangVersion>latest</LangVersion>
  29. </PropertyGroup>
  30. <ItemGroup>
  31. <PackageReference Include="System.Drawing.Common" Version="5.0.0" />
  32. <ProjectReference Include="..\..\ScottPlot\ScottPlot.csproj" />
  33. <None Include="icon.png" Pack="true" PackagePath="\" />
  34. <None Include="icon.ico" Pack="true" PackagePath="\" />
  35. <None Include="README.txt" Pack="true" PackagePath="\" />
  36. </ItemGroup>
  37. </Project>