diff --git a/Pomotimer.sln b/PomoTime.sln similarity index 95% rename from Pomotimer.sln rename to PomoTime.sln index c01b760..0904c39 100644 --- a/Pomotimer.sln +++ b/PomoTime.sln @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.29926.136 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Pomotimer", "Pomotimer\Pomotimer.csproj", "{C0132E9B-1131-4B80-A865-63242012F6BE}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PomoTime", "Pomotimer\PomoTime.csproj", "{C0132E9B-1131-4B80-A865-63242012F6BE}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/Pomotimer/App.xaml b/Pomotimer/App.xaml index d31dd3c..63e6cdf 100644 --- a/Pomotimer/App.xaml +++ b/Pomotimer/App.xaml @@ -1,8 +1,8 @@  + xmlns:local="using:PomoTime"> diff --git a/Pomotimer/App.xaml.cs b/Pomotimer/App.xaml.cs index 10d522f..0b14619 100644 --- a/Pomotimer/App.xaml.cs +++ b/Pomotimer/App.xaml.cs @@ -15,7 +15,7 @@ using Windows.UI.Xaml.Input; using Windows.UI.Xaml.Media; using Windows.UI.Xaml.Navigation; -namespace Pomotimer +namespace PomoTime { /// /// Provides application-specific behavior to supplement the default Application class. diff --git a/Pomotimer/MainPage.xaml b/Pomotimer/MainPage.xaml index c0bcee8..6a1b350 100644 --- a/Pomotimer/MainPage.xaml +++ b/Pomotimer/MainPage.xaml @@ -1,11 +1,11 @@  diff --git a/Pomotimer/MainPage.xaml.cs b/Pomotimer/MainPage.xaml.cs index bed0062..58815c3 100644 --- a/Pomotimer/MainPage.xaml.cs +++ b/Pomotimer/MainPage.xaml.cs @@ -19,7 +19,7 @@ using Windows.Storage; // The Blank Page item template is documented at https://go.microsoft.com/fwlink/?LinkId=402352&clcid=0x409 -namespace Pomotimer +namespace PomoTime { /// /// An empty page that can be used on its own or navigated to within a Frame. diff --git a/Pomotimer/Package.appxmanifest b/Pomotimer/Package.appxmanifest index ef5faaa..aff762d 100644 --- a/Pomotimer/Package.appxmanifest +++ b/Pomotimer/Package.appxmanifest @@ -30,12 +30,12 @@ + EntryPoint="PomoTime.App"> diff --git a/Pomotimer/Pomotimer.csproj b/Pomotimer/PomoTime.csproj similarity index 100% rename from Pomotimer/Pomotimer.csproj rename to Pomotimer/PomoTime.csproj diff --git a/Pomotimer/Properties/AssemblyInfo.cs b/Pomotimer/Properties/AssemblyInfo.cs index bb14a3c..c7fa9ae 100644 --- a/Pomotimer/Properties/AssemblyInfo.cs +++ b/Pomotimer/Properties/AssemblyInfo.cs @@ -5,11 +5,11 @@ using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. -[assembly: AssemblyTitle("Pomotimer")] +[assembly: AssemblyTitle("PomoTime")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("Pomotimer")] +[assembly: AssemblyProduct("PomoTime")] [assembly: AssemblyCopyright("Copyright © 2020")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] diff --git a/Pomotimer/RunningState.cs b/Pomotimer/RunningState.cs index c80537c..eacdd8c 100644 --- a/Pomotimer/RunningState.cs +++ b/Pomotimer/RunningState.cs @@ -6,7 +6,7 @@ using System.Runtime.CompilerServices; using System.Text; using System.Threading.Tasks; -namespace Pomotimer +namespace PomoTime { public class RunningState : INotifyPropertyChanged {