OxyPlot.csproj 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFrameworks>netstandard2.0;net462;net6.0;net7.0</TargetFrameworks>
  4. <PackageId>OxyPlot.Core</PackageId>
  5. <Description>OxyPlot is a plotting library for .NET. This is the core library including the foundation classes and plot model. To display the plots, you also need to add a platform-specific OxyPlot package that contains a PlotView component.</Description>
  6. <PackageTags>plotting plot charting chart</PackageTags>
  7. <GenerateDocumentationFile>False</GenerateDocumentationFile>
  8. <GeneratePackageOnBuild>False</GeneratePackageOnBuild>
  9. <SignAssembly>False</SignAssembly>
  10. <AssemblyOriginatorKeyFile>OxyPlot.snk</AssemblyOriginatorKeyFile>
  11. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  12. <LangVersion>8</LangVersion>
  13. <NoWarn>$(NoWarn);CS0618</NoWarn>
  14. </PropertyGroup>
  15. <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'">
  16. <GenerateAssemblyInfo>False</GenerateAssemblyInfo>
  17. </PropertyGroup>
  18. <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net462|AnyCPU'">
  19. <GenerateAssemblyInfo>False</GenerateAssemblyInfo>
  20. </PropertyGroup>
  21. <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net6.0|AnyCPU'">
  22. <GenerateAssemblyInfo>False</GenerateAssemblyInfo>
  23. </PropertyGroup>
  24. <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net7.0|AnyCPU'">
  25. <GenerateAssemblyInfo>False</GenerateAssemblyInfo>
  26. </PropertyGroup>
  27. <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
  28. <GenerateAssemblyInfo>False</GenerateAssemblyInfo>
  29. </PropertyGroup>
  30. <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net462|AnyCPU'">
  31. <GenerateAssemblyInfo>False</GenerateAssemblyInfo>
  32. </PropertyGroup>
  33. <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net6.0|AnyCPU'">
  34. <GenerateAssemblyInfo>False</GenerateAssemblyInfo>
  35. </PropertyGroup>
  36. <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net7.0|AnyCPU'">
  37. <GenerateAssemblyInfo>False</GenerateAssemblyInfo>
  38. </PropertyGroup>
  39. <ItemGroup>
  40. <None Include="OxyPlot.snk" />
  41. </ItemGroup>
  42. </Project>