Skip to content

Commit f0e3889

Browse files
Merge pull request #2 from Backiaraj/pivot
Update the project from older version to latest version (using .NET 7 Framework)
2 parents b57e1c9 + 4cfd243 commit f0e3889

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+1784
-2386
lines changed

App.razor

Lines changed: 0 additions & 10 deletions
This file was deleted.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net8.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
<NoDefaultLaunchSettingsFile>true</NoDefaultLaunchSettingsFile>
8+
<StaticWebAssetProjectMode>Default</StaticWebAssetProjectMode>
9+
</PropertyGroup>
10+
11+
<ItemGroup>
12+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.0" />
13+
<PackageReference Include="Syncfusion.Blazor.PivotTable" Version="24.1.45" />
14+
<PackageReference Include="Syncfusion.Blazor.Themes" Version="24.1.45" />
15+
</ItemGroup>
16+
17+
</Project>

Data/EnergyDetails.cs renamed to ConditionalFormatSample.Client/Data/EnergyDetails.cs

Lines changed: 988 additions & 988 deletions
Large diffs are not rendered by default.

Pages/Index.razor renamed to ConditionalFormatSample.Client/Pages/Counter.razor

Lines changed: 139 additions & 124 deletions
Large diffs are not rendered by default.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
2+
using Syncfusion.Blazor;
3+
4+
var builder = WebAssemblyHostBuilder.CreateDefault(args);
5+
builder.Services.AddSyncfusionBlazor();
6+
await builder.Build().RunAsync();
Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
@using System.Net.Http
2-
@using System.Net.Http.Json
3-
@using Microsoft.AspNetCore.Components.Forms
4-
@using Microsoft.AspNetCore.Components.Routing
5-
@using Microsoft.AspNetCore.Components.Web
6-
@using Microsoft.AspNetCore.Components.WebAssembly.Http
7-
@using Microsoft.JSInterop
8-
@using MyBlazorApp
9-
@using MyBlazorApp.Shared
1+
@using System.Net.Http
2+
@using System.Net.Http.Json
3+
@using Microsoft.AspNetCore.Components.Forms
4+
@using Microsoft.AspNetCore.Components.Routing
5+
@using Microsoft.AspNetCore.Components.Web
6+
@using static Microsoft.AspNetCore.Components.Web.RenderMode
7+
@using Microsoft.AspNetCore.Components.Web.Virtualization
8+
@using Microsoft.JSInterop
9+
@using ConditionalFormatSample.Client
10+
@using Syncfusion.Blazor
11+
@using Syncfusion.Blazor.PivotView
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"Logging": {
3+
"LogLevel": {
4+
"Default": "Information",
5+
"Microsoft.AspNetCore": "Warning"
6+
}
7+
}
8+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"Logging": {
3+
"LogLevel": {
4+
"Default": "Information",
5+
"Microsoft.AspNetCore": "Warning"
6+
}
7+
}
8+
}

ConditionalFormatSample.sln

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.8.34330.188
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConditionalFormatSample", "ConditionalFormatSample\ConditionalFormatSample.csproj", "{3C2CFD0D-52EE-48B6-B471-9F918FE8B957}"
7+
EndProject
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConditionalFormatSample.Client", "ConditionalFormatSample.Client\ConditionalFormatSample.Client.csproj", "{8E4DB63D-92B4-454D-83DC-AC7667B71F63}"
9+
EndProject
10+
Global
11+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
12+
Debug|Any CPU = Debug|Any CPU
13+
Release|Any CPU = Release|Any CPU
14+
EndGlobalSection
15+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
16+
{3C2CFD0D-52EE-48B6-B471-9F918FE8B957}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
17+
{3C2CFD0D-52EE-48B6-B471-9F918FE8B957}.Debug|Any CPU.Build.0 = Debug|Any CPU
18+
{3C2CFD0D-52EE-48B6-B471-9F918FE8B957}.Release|Any CPU.ActiveCfg = Release|Any CPU
19+
{3C2CFD0D-52EE-48B6-B471-9F918FE8B957}.Release|Any CPU.Build.0 = Release|Any CPU
20+
{8E4DB63D-92B4-454D-83DC-AC7667B71F63}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
21+
{8E4DB63D-92B4-454D-83DC-AC7667B71F63}.Debug|Any CPU.Build.0 = Debug|Any CPU
22+
{8E4DB63D-92B4-454D-83DC-AC7667B71F63}.Release|Any CPU.ActiveCfg = Release|Any CPU
23+
{8E4DB63D-92B4-454D-83DC-AC7667B71F63}.Release|Any CPU.Build.0 = Release|Any CPU
24+
EndGlobalSection
25+
GlobalSection(SolutionProperties) = preSolution
26+
HideSolutionNode = FALSE
27+
EndGlobalSection
28+
GlobalSection(ExtensibilityGlobals) = postSolution
29+
SolutionGuid = {04326E3B-9CAE-4A43-8655-28DE5FFF70FA}
30+
EndGlobalSection
31+
EndGlobal
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="utf-8" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<base href="/" />
8+
<link rel="stylesheet" href="bootstrap/bootstrap.min.css" />
9+
<link rel="stylesheet" href="app.css" />
10+
<link rel="stylesheet" href="ConditionalFormatSample.styles.css" />
11+
<link rel="icon" type="image/png" href="favicon.png" />
12+
<link href="_content/Syncfusion.Blazor.Themes/material.css" rel="stylesheet" />
13+
<HeadOutlet />
14+
</head>
15+
16+
<body>
17+
<Routes />
18+
<script src="_framework/blazor.web.js"></script>
19+
<script src="_content/Syncfusion.Blazor.Core/scripts/syncfusion-blazor.min.js" type="text/javascript"></script>
20+
</body>
21+
22+
</html>

0 commit comments

Comments
 (0)