Skip to content

Commit bc077e6

Browse files
committed
Reflect changed project name to title and namespace
1 parent 7daa5b9 commit bc077e6

24 files changed

+30
-30
lines changed

src/MacroRecoderCsScript/App.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
<Application x:Class="UserInputMacro.App"
1+
<Application x:Class="MacroRecoderCsScript.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:UserInputMacro"
4+
xmlns:local="clr-namespace:MacroRecoderCsScript"
55
Startup="Application_StartupAsync">
66
<Application.Resources>
77

src/MacroRecoderCsScript/App.xaml.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Text.RegularExpressions;
55
using Microsoft.CodeAnalysis.Scripting;
66

7-
namespace UserInputMacro
7+
namespace MacroRecoderCsScript
88
{
99
/// <summary>
1010
/// App.xaml の相互作用ロジック
@@ -54,7 +54,7 @@ private async void Application_StartupAsync( object sender, StartupEventArgs e )
5454

5555
private void Usage()
5656
{
57-
CommonUtil.WriteToConsole( "Usage: UserInputMacro <option>" + Environment.NewLine +
57+
CommonUtil.WriteToConsole( "Usage: MacroRecoderCsScript <option>" + Environment.NewLine +
5858
"[option]" + Environment.NewLine +
5959
"-script=<scirpt path>: Command line mode and only execute script" );
6060
}

src/MacroRecoderCsScript/AppEnvironment.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Windows.Interop;
55
using System.Windows.Media;
66

7-
namespace UserInputMacro
7+
namespace MacroRecoderCsScript
88
{
99
[Flags]
1010
public enum ModeKind : byte

src/MacroRecoderCsScript/AsyncDelegateCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Threading.Tasks;
33
using System.Windows.Input;
44

5-
namespace UserInputMacro
5+
namespace MacroRecoderCsScript
66
{
77
class AsyncDelegateCommand : ICommand
88
{

src/MacroRecoderCsScript/ButtonState.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace UserInputMacro
1+
namespace MacroRecoderCsScript
22
{
33
public class ButtonState
44
{

src/MacroRecoderCsScript/CommonUtil.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Threading.Tasks;
33
using System.Windows;
44

5-
namespace UserInputMacro
5+
namespace MacroRecoderCsScript
66
{
77
class CommonUtil
88
{

src/MacroRecoderCsScript/DelegateCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using System.Windows.Input;
33

4-
namespace UserInputMacro
4+
namespace MacroRecoderCsScript
55
{
66
class DelegateCommand : ICommand
77
{

src/MacroRecoderCsScript/Input.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using System.Runtime.InteropServices;
33

4-
namespace UserInputMacro
4+
namespace MacroRecoderCsScript
55
{
66
[Flags]
77
public enum XButtonFlag : uint

src/MacroRecoderCsScript/KeyHookStruct.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
22

3-
namespace UserInputMacro
3+
namespace MacroRecoderCsScript
44
{
55
[Flags]
66
public enum LowLevelKeyEvent : uint

src/MacroRecoderCsScript/Logger.cs

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

11-
namespace UserInputMacro
11+
namespace MacroRecoderCsScript
1212
{
1313
static class Logger
1414
{

0 commit comments

Comments
 (0)