rename to PomoTime

This commit is contained in:
2020-04-23 22:11:30 +03:00
parent 2fa43def8f
commit d422d038f0
9 changed files with 13 additions and 13 deletions

View File

@@ -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

View File

@@ -1,8 +1,8 @@
<Application
x:Class="Pomotimer.App"
x:Class="PomoTime.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Pomotimer">
xmlns:local="using:PomoTime">
<Application.Resources>
<XamlControlsResources xmlns="using:Microsoft.UI.Xaml.Controls" />

View File

@@ -15,7 +15,7 @@ using Windows.UI.Xaml.Input;
using Windows.UI.Xaml.Media;
using Windows.UI.Xaml.Navigation;
namespace Pomotimer
namespace PomoTime
{
/// <summary>
/// Provides application-specific behavior to supplement the default Application class.

View File

@@ -1,11 +1,11 @@
<Page
x:Class="Pomotimer.MainPage"
x:Class="PomoTime.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:controls="using:Microsoft.UI.Xaml.Controls"
xmlns:converters="using:Microsoft.Toolkit.Uwp.UI.Converters"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="using:Pomotimer"
xmlns:local="using:PomoTime"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"
mc:Ignorable="d">

View File

@@ -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
{
/// <summary>
/// An empty page that can be used on its own or navigated to within a Frame.

View File

@@ -30,12 +30,12 @@
<Applications>
<Application Id="App"
Executable="$targetnametoken$.exe"
EntryPoint="Pomotimer.App">
EntryPoint="PomoTime.App">
<uap:VisualElements
DisplayName="Pomotimer"
DisplayName="PomoTime"
Square150x150Logo="Assets\Square150x150Logo.png"
Square44x44Logo="Assets\Square44x44Logo.png"
Description="Pomotimer"
Description="PomoTime"
BackgroundColor="transparent">
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png"/>
<uap:SplashScreen Image="Assets\SplashScreen.png" />

View File

@@ -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("")]

View File

@@ -6,7 +6,7 @@ using System.Runtime.CompilerServices;
using System.Text;
using System.Threading.Tasks;
namespace Pomotimer
namespace PomoTime
{
public class RunningState : INotifyPropertyChanged
{