Skip to content

Commit bc331bd

Browse files
committed
Rename: files and namespaces
1 parent ed43d34 commit bc331bd

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

src/StupidTimer.sln renamed to src/BasicTimer.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 17
44
VisualStudioVersion = 17.0.32112.339
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "StupidTimer", "StupidTimer\StupidTimer.csproj", "{F5D4F5DB-94F4-423D-A91C-4DDDD7A705F8}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BasicTimer", "BasicTimer\BasicTimer.csproj", "{F5D4F5DB-94F4-423D-A91C-4DDDD7A705F8}"
77
EndProject
88
Global
99
GlobalSection(SolutionConfigurationPlatforms) = preSolution

src/StupidTimer/App.xaml renamed to src/BasicTimer/App.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
<Application x:Class="StupidTimer.App"
1+
<Application x:Class="BasicTimer.App"
22
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4-
xmlns:local="clr-namespace:StupidTimer"
4+
xmlns:local="clr-namespace:BasicTimer"
55
StartupUri="MainWindow.xaml">
66
<Application.Resources>
77

src/StupidTimer/App.xaml.cs renamed to src/BasicTimer/App.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using System.Threading.Tasks;
77
using System.Windows;
88

9-
namespace StupidTimer
9+
namespace BasicTimer
1010
{
1111
/// <summary>
1212
/// Interaction logic for App.xaml
File renamed without changes.
File renamed without changes.

src/StupidTimer/MainWindow.xaml renamed to src/BasicTimer/MainWindow.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
<Window x:Class="StupidTimer.MainWindow"
1+
<Window x:Class="BasicTimer.MainWindow"
22
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
44
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
55
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
6-
xmlns:local="clr-namespace:StupidTimer"
6+
xmlns:local="clr-namespace:BasicTimer"
77
mc:Ignorable="d"
88
WindowStyle="None"
99
ResizeMode="NoResize"

src/StupidTimer/MainWindow.xaml.cs renamed to src/BasicTimer/MainWindow.xaml.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
using System.Windows.Shapes;
1515
using System.Windows.Threading;
1616

17-
namespace StupidTimer
17+
namespace BasicTimer
1818
{
1919
/// <summary>
2020
/// Interaction logic for MainWindow.xaml
@@ -70,6 +70,6 @@ private void MenuItem_ToggleAlwaysOnTop_Click(object sender, RoutedEventArgs e)
7070
Topmost = ((MenuItem)sender).IsChecked;
7171

7272
private void MenuItem_Version_Click(object sender, RoutedEventArgs e) =>
73-
System.Diagnostics.Process.Start("explorer", "https://github.com/swharden/StupidTimer");
73+
System.Diagnostics.Process.Start("explorer", "https://github.com/swharden/BasicTimer");
7474
}
7575
}

src/StupidTimer/TimerViewModel.cs renamed to src/BasicTimer/TimerViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using System.Threading.Tasks;
88
using System.Windows.Media;
99

10-
namespace StupidTimer
10+
namespace BasicTimer
1111
{
1212
internal class TimerViewModel : INotifyPropertyChanged
1313
{

0 commit comments

Comments
 (0)