This repository was archived by the owner on Jan 19, 2025. It is now read-only.
forked from chartjs/Chart.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChart.js.csproj
More file actions
92 lines (92 loc) · 3.69 KB
/
Copy pathChart.js.csproj
File metadata and controls
92 lines (92 loc) · 3.69 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProjectGuid>{9057F769-A406-4ED6-8275-264E15027473}</ProjectGuid>
<OutputType>Exe</OutputType>
<NoStandardLibraries>false</NoStandardLibraries>
<AssemblyName>ConsoleApplication</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>Chart.js</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.CSharp" />
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Data" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Xml" />
<Reference Include="System.Xml.Linq" />
</ItemGroup>
<ItemGroup>
<None Include=".codeclimate.yml" />
<None Include=".eslintignore" />
<None Include=".eslintrc.json" />
<None Include=".gitignore" />
<None Include=".travis.yml" />
<None Include="bower.json" />
<None Include="composer.json" />
<None Include="CONTRIBUTING.md" />
<None Include="docs\00-Getting-Started.md" />
<None Include="docs\01-Line-Chart.md" />
<None Include="docs\02-Bar-Chart.md" />
<None Include="docs\03-HorizontalBar-Chart.md" />
<None Include="docs\04-Radar-Chart.md" />
<None Include="docs\05-Polar-Area-Chart.md" />
<None Include="docs\06-Pie-Doughnut-Chart.md" />
<None Include="docs\07-Advanced.md" />
<None Include="docs\08-Notes.md" />
<None Include="LICENSE.md" />
<None Include="package-lock.json" />
<None Include="package.json" />
<None Include="README.md" />
</ItemGroup>
<ItemGroup>
<Content Include="Chart.js" />
<Content Include="gulpfile.js" />
<Content Include="samples\bar.html" />
<Content Include="samples\doughnut.color.html" />
<Content Include="samples\doughnut.html" />
<Content Include="samples\horizontalBar.html" />
<Content Include="samples\line.html" />
<Content Include="samples\pie.html" />
<Content Include="samples\polar-area.html" />
<Content Include="samples\radar.html" />
<Content Include="src\Chart.Bar.js" />
<Content Include="src\Chart.Helpers.js" />
<Content Include="src\Chart.Core.js" />
<Content Include="src\Chart.Doughnut.js" />
<Content Include="src\Chart.HorizontalBar.js" />
<Content Include="src\Chart.Line.js" />
<Content Include="src\Chart.PolarArea.js" />
<Content Include="src\Chart.Radar.js" />
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSHARP.Targets" />
<ProjectExtensions>
<VisualStudio AllowExistingFolder="true" />
</ProjectExtensions>
</Project>