ZedGraph / ZedGraph.csproj
Code · 69 lines · 2913 bytes
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<Project Sdk="Microsoft.NET.Sdk">

	<PropertyGroup>
		<TargetFramework>net8.0</TargetFramework>
		<Nullable>disable</Nullable>
		<UseWindowsForms>false</UseWindowsForms>
		<ImplicitUsings>enable</ImplicitUsings>
		<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
		<AssemblyVersion>8.0.0.3</AssemblyVersion>
		<FileVersion>8.0.0.3</FileVersion>
		<SignAssembly>True</SignAssembly>
		<Title>ZedGraph .NET Core Library</Title>
		<Description>ZedGraph is a fork of ZedGraph plus the DynFilteredPointList class. ZedGraph is a class library and user control for .Net Core, written in C#, for drawing 2D Line, Bar, and Pie Charts. It features full, detailed customization capabilities, but most options have defaults for ease of use.</Description>
		<Copyright>Copyright © 2003-2007 John Champion</Copyright>
		<RunAnalyzersDuringLiveAnalysis>False</RunAnalyzersDuringLiveAnalysis>
		<RunAnalyzersDuringBuild>False</RunAnalyzersDuringBuild>
		<EnableNETAnalyzers>False</EnableNETAnalyzers>
		<NeutralLanguage>en</NeutralLanguage>
		<Version>8.0.0.3</Version>
		<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
		<PackageProjectUrl>https://github.com/alphons/ZedGraph</PackageProjectUrl>
		<Authors>John Champion,Ingineer and Alphons van der Heijden.</Authors>
		<AssemblyName>ZedGraph8</AssemblyName>
		<AssemblyOriginatorKeyFile>ZedGraphKey.snk</AssemblyOriginatorKeyFile>
		<PackageReadmeFile>README.md</PackageReadmeFile>
	</PropertyGroup>

	<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
		<DebugType>embedded</DebugType>
	</PropertyGroup>

	<ItemGroup>
	  <Compile Remove="ZedGraph\DataSourcePointList.cs" />
	  <Compile Remove="ZedGraph\ZedGraphControl.ContextMenu.cs" />
	  <Compile Remove="ZedGraph\ZedGraphControl.cs" />
	  <Compile Remove="ZedGraph\ZedGraphControl.Designer.cs" />
	  <Compile Remove="ZedGraph\ZedGraphControl.Events.cs" />
	  <Compile Remove="ZedGraph\ZedGraphControl.Printing.cs" />
	  <Compile Remove="ZedGraph\ZedGraphControl.Properties.cs" />
	  <Compile Remove="ZedGraph\ZedGraphControl.ScrollBars.cs" />
	</ItemGroup>

	<ItemGroup>
	  <None Include="ZedGraph\DataSourcePointList.cs" />
	  <None Include="ZedGraph\ZedGraphControl.ContextMenu.cs" />
	  <None Include="ZedGraph\ZedGraphControl.cs" />
	  <None Include="ZedGraph\ZedGraphControl.Designer.cs" />
	  <None Include="ZedGraph\ZedGraphControl.Events.cs" />
	  <None Include="ZedGraph\ZedGraphControl.Printing.cs" />
	  <None Include="ZedGraph\ZedGraphControl.Properties.cs" />
	  <None Include="ZedGraph\ZedGraphControl.ScrollBars.cs" />
	</ItemGroup>

	<ItemGroup>
	  <PackageReference Include="Microsoft.Windows.Compatibility" Version="9.0.0" />
	</ItemGroup>

	<ItemGroup>
		<None Update="LICENSE.txt">
			<Pack>True</Pack>
			<PackagePath>\</PackagePath>
		</None>
		<None Update="README.md">
			<Pack>True</Pack>
			<PackagePath>\</PackagePath>
		</None>
	</ItemGroup>

</Project>