Skip to content

Commit 327a3fe

Browse files
author
Rahul Kumar
committed
- Added developer pfx for strong naming
- Corrected readme.md for Clone() operation - Added text "Please browse to individual folders to view different samples" in "Sample\Default.aspx.cs" - File version changed to v1.2.0.0 (old: v1.1.0.0)
1 parent 7a2b529 commit 327a3fe

File tree

6 files changed

+19
-10
lines changed

6 files changed

+19
-10
lines changed

FusionCharts/FusionCharts/FusionCharts.csproj

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@
3232
<WarningLevel>4</WarningLevel>
3333
<DocumentationFile>bin\Release\FusionCharts.XML</DocumentationFile>
3434
</PropertyGroup>
35+
<PropertyGroup>
36+
<SignAssembly>true</SignAssembly>
37+
</PropertyGroup>
38+
<PropertyGroup>
39+
<AssemblyOriginatorKeyFile>FusionCharts.pfx</AssemblyOriginatorKeyFile>
40+
</PropertyGroup>
3541
<ItemGroup>
3642
<Reference Include="System" />
3743
<Reference Include="System.Core" />
@@ -46,6 +52,9 @@
4652
<Compile Include="..\..\sample\App_Code\FusionCharts.cs" />
4753
<Compile Include="Properties\AssemblyInfo.cs" />
4854
</ItemGroup>
55+
<ItemGroup>
56+
<None Include="FusionCharts.pfx" />
57+
</ItemGroup>
4958
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
5059
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
5160
Other similar extension points exist, see Microsoft.Common.targets.
1.72 KB
Binary file not shown.

FusionCharts/FusionCharts/Properties/AssemblyInfo.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44

55
// General Information about an assembly is controlled through the following
66
// set of attributes. Change these attribute values to modify the information
7-
// associated with an assembly.
8-
[assembly: AssemblyTitle("FusionCharts")]
9-
[assembly: AssemblyDescription("")]
10-
[assembly: AssemblyConfiguration("")]
11-
[assembly: AssemblyCompany("Microsoft")]
12-
[assembly: AssemblyProduct("FusionCharts")]
13-
[assembly: AssemblyCopyright("Copyright © Microsoft 2014")]
7+
// associated with an assembly.
8+
[assembly: AssemblyTitle("FusionCharts ASP.NET Wrapper")]
9+
[assembly: AssemblyDescription("FusionCharts ASP.NET Wrapper (Strong Named)")]
10+
[assembly: AssemblyConfiguration("")]
11+
[assembly: AssemblyCompany("FusionCharts Technologies LLP")]
12+
[assembly: AssemblyProduct("FusionCharts Suite XT")]
13+
[assembly: AssemblyCopyright("Copyright © FusionCharts Technologies LLP 2015")]
1414
[assembly: AssemblyTrademark("")]
1515
[assembly: AssemblyCulture("")]
1616

@@ -33,4 +33,4 @@
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
3535
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.1.0.0")]
36+
[assembly: AssemblyFileVersion("1.2.0.0")]

production/asp-net-wrapper.zip

-539 KB
Binary file not shown.

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Clone method can be used to clone an existing chart instance. All properties exc
8181
Chart sales = new Chart("column3d", "myChart", "400", "300", "xmlurl", "data/data.xml");
8282
//Render the column3D chart
8383
Literal1.Text = sales.Render();
84-
Chart salesClone = sales.clone();
84+
Chart salesClone = (Chart)sales.clone();
8585
salesClone.SetChartParameter(Chart.ChartParameter.chartType, "column2d");
8686
//Render the column2D chart
8787
Literal2.Text = salesClone.Render();

sample/Default.aspx.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ protected void Page_Load(object sender, EventArgs e)
1818
{
1919

2020
// Render the chart
21-
Literal1.Text = "";
21+
Literal1.Text = "Please browse to individual folders to view different samples";
2222
}
2323
}

0 commit comments

Comments
 (0)