-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathPLplotNet.csproj
More file actions
72 lines (65 loc) · 3.31 KB
/
PLplotNet.csproj
File metadata and controls
72 lines (65 loc) · 3.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="../Revision.targets" />
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<EnableDefaultCompileItems>False</EnableDefaultCompileItems>
<Platform>x64</Platform>
<RootNamespace>PLplot</RootNamespace>
<AssemblyName>PLplotNet</AssemblyName>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<DebugSymbols>true</DebugSymbols>
<DebugType>embedded</DebugType>
<EmbedAllSources>true</EmbedAllSources>
<NoWarn>1587;1573;1591</NoWarn>
<PackageId>PLplot</PackageId>
<title>PLplot cross-plattform scientific plotting library</title>
<description>
PLplot is a cross-platform software package for creating scientific plots
whose (UTF-8) plot symbols and text are limited in practice only by what
Unicode-aware system fonts are installed on a user's computer.
The PLplot core library can be used to create standard x-y plots,
semi-log plots, log-log plots, contour plots, 3D surface plots, mesh plots,
bar charts and pie charts. Multiple graphs (of the same or different sizes)
may be placed on a single page, and multiple pages are allowed for those
device formats that support them.
The native PLplot library for Windows (x64) is included in this package.
For Linux and MacOS, PLplot must be already installed on your system and
we expect to find libplplot.so.15 or libplplot.dylib in your LD_LIBRARY_PATH.
Supported operating systems: Linux, MacOS, Windows
Output file formats: PDF, PNG, SVG, Xfig and others
Documentation: https://surban.github.io/PLplotNet
Plot gallery: http://plplot.sourceforge.net/examples.php
</description>
<Company>Sebastian Urban, PLplot developer community</Company>
<authors>Sebastian Urban, PLplot developer community</authors>
<owners>Sebastian Urban</owners>
<Copyright>Copyright (C) 2017-2018 Sebastian Urban, PLplot developer community</Copyright>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<PackageLicenseUrl>https://www.gnu.org/licenses/old-licenses/lgpl-2.0.en.html</PackageLicenseUrl>
<PackageProjectUrl>https://surban.github.io/PLplotNet</PackageProjectUrl>
<PackageTags>plplot plot plotting scientific pdf png svg xfig</PackageTags>
<PackageOutputPath>../Packages/$(Configuration)/</PackageOutputPath>
</PropertyGroup>
<ItemGroup>
<Compile Include="Types.cs" />
<Compile Include="NativeHelpers.cs" />
<Compile Include="NativeGenerated.cs" />
<Compile Include="PLStream.cs" />
<Compile Include="PLStreamGenerated.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="../Native/windows/*.dll" PackagePath="runtimes/win-x64/native">
<Link>%(FileName)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="../Native/windows/plplot/*" PackagePath="runtimes/win-x64/native/plplot">
<Link>plplot/%(FileName)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="../Native/linux/libplplot.so" PackagePath="runtimes/linux-x64/native">
<Link>%(FileName)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>