Skip to content
This repository was archived by the owner on Apr 29, 2024. It is now read-only.

Commit b6323ee

Browse files
author
Mykyta Bondarenko
committed
- renamed the project, the solution and the folder
- changed namespace - changed identifier and names in the info.plist
1 parent 2fab6ac commit b6323ee

30 files changed

+43
-45
lines changed

LocalNotifications/Notifications.sln renamed to LocalNotifications/LocalNotifications.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 2012
4-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Notifications", "Notifications\Notifications.csproj", "{C838053B-4D84-4E33-9521-EF2E64B4DE54}"
4+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LocalNotifications", "LocalNotifications\LocalNotifications.csproj", "{C838053B-4D84-4E33-9521-EF2E64B4DE54}"
55
EndProject
66
Global
77
GlobalSection(SolutionConfigurationPlatforms) = preSolution

LocalNotifications/Notifications/AppDelegate.cs renamed to LocalNotifications/LocalNotifications/AppDelegate.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Foundation;
22
using UIKit;
33

4-
namespace Notifications
4+
namespace LocalNotifications
55
{
66
// The UIApplicationDelegate for the application. This class is responsible for launching the
77
// User Interface of the application, as well as listening (and optionally responding) to application events from iOS.
@@ -94,6 +94,4 @@ public override void WillTerminate(UIApplication application)
9494
// Called when the application is about to terminate. Save data, if needed. See also DidEnterBackground.
9595
}
9696
}
97-
}
98-
99-
97+
}

LocalNotifications/Notifications/Info.plist renamed to LocalNotifications/LocalNotifications/Info.plist

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@
33
<plist version="1.0">
44
<dict>
55
<key>CFBundleName</key>
6-
<string>Notifications</string>
6+
<string>LocalNotifications</string>
7+
<key>CFBundleDisplayName</key>
8+
<string>LocalNotification</string>
79
<key>CFBundleIdentifier</key>
8-
<string>com.xamarin.notifications</string>
10+
<string>com.xamarin.localnotifications</string>
911
<key>CFBundleShortVersionString</key>
1012
<string>1.0</string>
1113
<key>CFBundleVersion</key>

LocalNotifications/Notifications/Notifications.csproj renamed to LocalNotifications/LocalNotifications/LocalNotifications.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<ProjectGuid>{C838053B-4D84-4E33-9521-EF2E64B4DE54}</ProjectGuid>
77
<ProjectTypeGuids>{FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
88
<OutputType>Exe</OutputType>
9-
<RootNamespace>Notifications</RootNamespace>
10-
<AssemblyName>Notifications</AssemblyName>
9+
<RootNamespace>LocalNotifications</RootNamespace>
10+
<AssemblyName>LocalNotifications</AssemblyName>
1111
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
1212
</PropertyGroup>
1313
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhoneSimulator' ">

LocalNotifications/Notifications/Main.cs renamed to LocalNotifications/LocalNotifications/Main.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using UIKit;
22

3-
namespace Notifications
3+
namespace LocalNotifications
44
{
55
public class Application
66
{
@@ -12,4 +12,4 @@ static void Main(string[] args)
1212
UIApplication.Main(args, null, "AppDelegate");
1313
}
1414
}
15-
}
15+
}

LocalNotifications/Notifications/ViewController.cs renamed to LocalNotifications/LocalNotifications/ViewController.cs

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
using System;
2-
using Foundation;
1+
using Foundation;
2+
using System;
33
using UIKit;
44

5-
namespace Notifications
5+
namespace LocalNotifications
66
{
77
public partial class ViewController : UIViewController
88
{
9-
109
protected ViewController(IntPtr handle) : base(handle)
1110
{
1211
// Note: this .ctor should not contain any initialization logic.
@@ -46,5 +45,4 @@ public override void DidReceiveMemoryWarning()
4645
// Release any cached data, images, etc that aren't in use.
4746
}
4847
}
49-
}
50-
48+
}

LocalNotifications/Notifications/ViewController.designer.cs renamed to LocalNotifications/LocalNotifications/ViewController.designer.cs

Lines changed: 28 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)