-
Notifications
You must be signed in to change notification settings - Fork 0
/
SuperPerformanceChart.csproj
73 lines (73 loc) · 3.07 KB
/
SuperPerformanceChart.csproj
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
73
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<OptionExplicit>On</OptionExplicit>
<OptionCompare>Binary</OptionCompare>
<OptionStrict>On</OptionStrict>
<OptionInfer>On</OptionInfer>
<ResGenToolArchitecture>Managed32Bit</ResGenToolArchitecture>
<SccProjectName></SccProjectName>
<SccLocalPath></SccLocalPath>
<SccAuxPath></SccAuxPath>
<SccProvider></SccProvider>
<DefaultItemExcludes>$(DefaultItemExcludes);$(ProjectDir)**\*.vb</DefaultItemExcludes>
<LangVersion>latest</LangVersion>
<UseWindowsForms>true</UseWindowsForms>
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
<Platforms>AnyCPU</Platforms>
<CopyLocalLockFileAssemblies>False</CopyLocalLockFileAssemblies>
<TargetFrameworks>net472;net6.0-windows</TargetFrameworks>
<Product>SuperPerformanceChart</Product>
<Description>A performance style chart originally found at https://www.codeproject.com/Articles/17564/Simple-Performance-Chart</Description>
<Company>Fungusware</Company>
<Copyright>Copyright © Fungusware 2022, ecplipse2k1 2013</Copyright>
<Authors>Fungusware</Authors>
<Version>3.2.1</Version>
<Configurations>Build;Debug</Configurations>
<IsPublishable>True</IsPublishable>
<ProduceReferenceAssembly>False</ProduceReferenceAssembly>
<GenerateDocumentationFile>False</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Build|AnyCPU'">
<DefineDebug>true</DefineDebug>
<DefineTrace>true</DefineTrace>
<DocumentationFile>
</DocumentationFile>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022,42353,42354,42355</NoWarn>
<Optimize>True</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineDebug>true</DefineDebug>
<DefineTrace>true</DefineTrace>
<DocumentationFile>
</DocumentationFile>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022,42353,42354,42355</NoWarn>
</PropertyGroup>
<PropertyGroup Label="VSBuilder">
<Independent>False</Independent>
<TimeStampedVersion>False</TimeStampedVersion>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>Super Performance Chart</Title>
<RepositoryUrl>https://github.com/Fungusware/SuperPerformanceChart.git</RepositoryUrl>
<PackageLicenseFile></PackageLicenseFile>
</PropertyGroup>
<ItemGroup>
<Import Include="Microsoft.VisualBasic" />
<Import Include="System" />
<Import Include="System.Collections" />
<Import Include="System.Collections.Generic" />
<Import Include="System.Diagnostics" />
<Import Include="System.Linq" />
</ItemGroup>
<ItemGroup>
<Compile Update="SuperPerfChart.cs" />
</ItemGroup>
<ItemGroup>
<Service Include="{94E38DFF-614B-4CBD-B67C-F211BB35CE8B}" />
</ItemGroup>
<ItemGroup>
<Compile Remove="SeriesStyle.cs" />
<EmbeddedResource Remove="TestApp\Form1.resx" />
<EmbeddedResource Remove="TestApp\My Project\Resources.resx" />
</ItemGroup>
</Project>