source: code/Website/dot-net-library/written-by-xiao-yifang/OpenFlashChart/OpenFlashChart.csproj@ 7849

Last change on this file since 7849 was 7849, checked in by dennisw, 15 years ago
File size: 4.6 KB
Line 
1<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <PropertyGroup>
3 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
4 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
5 <ProductVersion>8.0.50727</ProductVersion>
6 <SchemaVersion>2.0</SchemaVersion>
7 <ProjectGuid>{213ABC3E-F51E-4A09-A053-BC17E4797BA8}</ProjectGuid>
8 <OutputType>Library</OutputType>
9 <AppDesignerFolder>Properties</AppDesignerFolder>
10 <RootNamespace>OpenFlashChart</RootNamespace>
11 <AssemblyName>OpenFlashChart</AssemblyName>
12 </PropertyGroup>
13 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
14 <DebugSymbols>true</DebugSymbols>
15 <DebugType>full</DebugType>
16 <Optimize>false</Optimize>
17 <OutputPath>bin\Debug\</OutputPath>
18 <DefineConstants>DEBUG;TRACE</DefineConstants>
19 <ErrorReport>prompt</ErrorReport>
20 <WarningLevel>4</WarningLevel>
21 </PropertyGroup>
22 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
23 <DebugType>pdbonly</DebugType>
24 <Optimize>true</Optimize>
25 <OutputPath>bin\Release\</OutputPath>
26 <DefineConstants>TRACE</DefineConstants>
27 <ErrorReport>prompt</ErrorReport>
28 <WarningLevel>4</WarningLevel>
29 </PropertyGroup>
30 <ItemGroup>
31 <Reference Include="System" />
32 <Reference Include="System.Data" />
33 <Reference Include="System.Design" />
34 <Reference Include="System.Web" />
35 <Reference Include="System.Xml" />
36 </ItemGroup>
37 <ItemGroup>
38 <Compile Include="Animation.cs" />
39 <Compile Include="AnimationType.cs" />
40 <Compile Include="Area.cs" />
41 <Compile Include="AreaBase.cs" />
42 <Compile Include="AreaHollow.cs" />
43 <Compile Include="AreaLine.cs" />
44 <Compile Include="Axis.cs" />
45 <Compile Include="Bar.cs" />
46 <Compile Include="Bar3D.cs" />
47 <Compile Include="BarBase.cs" />
48 <Compile Include="BarFilled.cs" />
49 <Compile Include="BarGlass.cs" />
50 <Compile Include="BarSketch.cs" />
51 <Compile Include="BarStack.cs" />
52 <Compile Include="BarType.cs" />
53 <Compile Include="Candle.cs" />
54 <Compile Include="Chart.cs" />
55 <Compile Include="AxisLabel.cs" />
56 <Compile Include="ChartBase.cs" />
57 <Compile Include="ChartControlDesigner.cs" />
58 <Compile Include="ChartElement.cs" />
59 <Compile Include="DotStyle.cs" />
60 <Compile Include="DotType.cs" />
61 <Compile Include="HBar.cs" />
62 <Compile Include="JSON\IJsonSerializable.cs" />
63 <Compile Include="JSON\JsonIgnoreAttribute.cs" />
64 <Compile Include="JSON\JsonNameAttribute.cs" />
65 <Compile Include="JSON\JsonPropertyAttribute.cs" />
66 <Compile Include="JSON\JsonReader.cs" />
67 <Compile Include="JSON\JsonSerializationException.cs" />
68 <Compile Include="JSON\JsonSpecifiedPropertyAttribute.cs" />
69 <Compile Include="JSON\JsonToken.cs" />
70 <Compile Include="JSON\JsonWriter.cs" />
71 <Compile Include="Legend.cs" />
72 <Compile Include="Line.cs" />
73 <Compile Include="LineBase.cs" />
74 <Compile Include="LineDot.cs" />
75 <Compile Include="LineDotValue.cs" />
76 <Compile Include="LineHollow.cs" />
77 <Compile Include="LineScatter.cs" />
78 <Compile Include="OpenFlashChart.cs" />
79 <Compile Include="OpenFlashChartControl.cs" />
80 <Compile Include="Pie.cs" />
81 <Compile Include="Properties\AssemblyInfo.cs" />
82 <Compile Include="RadarAxis.cs" />
83 <Compile Include="Scatter.cs" />
84 <Compile Include="Title.cs" />
85 <Compile Include="ToolTip.cs" />
86 <Compile Include="WebHandler\ofcHandler.cs" />
87 <Compile Include="XAxis.cs" />
88 <Compile Include="AxisLabels.cs" />
89 <Compile Include="XAxisLabels.cs" />
90 <Compile Include="YAxis.cs" />
91 <Compile Include="YAxisLabel.cs" />
92 <Compile Include="YAxisLabels.cs" />
93 <Compile Include="YAxisRight.cs" />
94 </ItemGroup>
95 <ItemGroup>
96 <None Include="ClassDiagram1.cd" />
97 <None Include="ClassDiagram2.cd" />
98 </ItemGroup>
99 <ItemGroup>
100 <Content Include="JSON\License.txt" />
101 <Content Include="JSON\Readme too.txt" />
102 <Content Include="JSON\ReadMe.txt" />
103 <EmbeddedResource Include="open-flash-chart.swf" />
104 <Content Include="readme.txt" />
105 <EmbeddedResource Include="swfobject.js" />
106 </ItemGroup>
107 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
108 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
109 Other similar extension points exist, see Microsoft.Common.targets.
110 <Target Name="BeforeBuild">
111 </Target>
112 <Target Name="AfterBuild">
113 </Target>
114 -->
115</Project>
Note: See TracBrowser for help on using the repository browser.