Skip to content

Commit 5f7db7b

Browse files
revert the changes
1 parent a3ead23 commit 5f7db7b

Some content is hidden

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

45 files changed

+119
-100
lines changed

MAUI_Chart_JSON_Data/MAUI_Chart_JSON_Data/MainPage.xaml

Lines changed: 0 additions & 32 deletions
This file was deleted.

MAUI_Chart_JSON_Data/MAUI_Chart_JSON_Data/MainPage.xaml.cs

Lines changed: 0 additions & 19 deletions
This file was deleted.

MAUI_Chart_JSON_Data/MAUI_Chart_JSON_Data/Model/Medal.cs

Lines changed: 0 additions & 9 deletions
This file was deleted.

MAUI_Chart_JSON_Data/MAUI_Chart_JSON_Data/ViewModel/ViewModel.cs

Lines changed: 0 additions & 9 deletions
This file was deleted.
Binary file not shown.

MAUI_Chart_JSON_Data/MAUI_Chart_JSON_Data.sln renamed to Maui_ChartTooltip/Maui_ChartTooltip.sln

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,23 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 17
44
VisualStudioVersion = 17.13.35919.96 d17.13
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MAUI_Chart_JSON_Data", "MAUI_Chart_JSON_Data\MAUI_Chart_JSON_Data.csproj", "{D272ECFD-031E-40C8-A52A-23BDE7E04E79}"
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Maui_ChartTooltip", "Maui_ChartTooltip\Maui_ChartTooltip.csproj", "{D98110D2-6A26-4187-B870-7F2E0BDCF46C}"
77
EndProject
88
Global
99
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1010
Debug|Any CPU = Debug|Any CPU
1111
Release|Any CPU = Release|Any CPU
1212
EndGlobalSection
1313
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14-
{D272ECFD-031E-40C8-A52A-23BDE7E04E79}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15-
{D272ECFD-031E-40C8-A52A-23BDE7E04E79}.Debug|Any CPU.Build.0 = Debug|Any CPU
16-
{D272ECFD-031E-40C8-A52A-23BDE7E04E79}.Release|Any CPU.ActiveCfg = Release|Any CPU
17-
{D272ECFD-031E-40C8-A52A-23BDE7E04E79}.Release|Any CPU.Build.0 = Release|Any CPU
14+
{D98110D2-6A26-4187-B870-7F2E0BDCF46C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{D98110D2-6A26-4187-B870-7F2E0BDCF46C}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{D98110D2-6A26-4187-B870-7F2E0BDCF46C}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{D98110D2-6A26-4187-B870-7F2E0BDCF46C}.Release|Any CPU.Build.0 = Release|Any CPU
1818
EndGlobalSection
1919
GlobalSection(SolutionProperties) = preSolution
2020
HideSolutionNode = FALSE
2121
EndGlobalSection
2222
GlobalSection(ExtensibilityGlobals) = postSolution
23-
SolutionGuid = {1EEC63BF-CA47-4572-9F7D-7FC38AF8F18D}
23+
SolutionGuid = {E8A59F04-6EEF-42F7-AAC8-EA312C15238F}
2424
EndGlobalSection
2525
EndGlobal

MAUI_Chart_JSON_Data/MAUI_Chart_JSON_Data/App.xaml renamed to Maui_ChartTooltip/Maui_ChartTooltip/App.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version = "1.0" encoding = "UTF-8" ?>
22
<Application xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
33
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
4-
xmlns:local="clr-namespace:MAUI_Chart_JSON_Data"
5-
x:Class="MAUI_Chart_JSON_Data.App">
4+
xmlns:local="clr-namespace:Maui_ChartTooltip"
5+
x:Class="Maui_ChartTooltip.App">
66
<Application.Resources>
77
<ResourceDictionary>
88
<ResourceDictionary.MergedDictionaries>

MAUI_Chart_JSON_Data/MAUI_Chart_JSON_Data/App.xaml.cs renamed to Maui_ChartTooltip/Maui_ChartTooltip/App.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace MAUI_Chart_JSON_Data
1+
namespace Maui_ChartTooltip
22
{
33
public partial class App : Application
44
{

MAUI_Chart_JSON_Data/MAUI_Chart_JSON_Data/AppShell.xaml renamed to Maui_ChartTooltip/Maui_ChartTooltip/AppShell.xaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?xml version="1.0" encoding="UTF-8" ?>
22
<Shell
3-
x:Class="MAUI_Chart_JSON_Data.AppShell"
3+
x:Class="Maui_ChartTooltip.AppShell"
44
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
55
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
6-
xmlns:local="clr-namespace:MAUI_Chart_JSON_Data"
6+
xmlns:local="clr-namespace:Maui_ChartTooltip"
77
Shell.FlyoutBehavior="Flyout"
8-
Title="MAUI_Chart_JSON_Data">
8+
Title="Maui_ChartTooltip">
99

1010
<ShellContent
1111
Title="Home"

MAUI_Chart_JSON_Data/MAUI_Chart_JSON_Data/AppShell.xaml.cs renamed to Maui_ChartTooltip/Maui_ChartTooltip/AppShell.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace MAUI_Chart_JSON_Data
1+
namespace Maui_ChartTooltip
22
{
33
public partial class AppShell : Shell
44
{

0 commit comments

Comments
 (0)