Skip to content

Commit

Permalink
Changes project and solution names to "TidyText"
Browse files Browse the repository at this point in the history
  • Loading branch information
showmik committed Jun 17, 2023
1 parent b193194 commit 379825a
Show file tree
Hide file tree
Showing 12 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions TextCleaner/App.xaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<Application x:Class="TextCleaner.App"
<Application x:Class="TidyText.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="View/MainWindow.xaml">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="Style.xaml" />
<ResourceDictionary Source="/TextCleaner;component/Themes/Generic.xaml" />
<ResourceDictionary Source="/TidyText;component/Themes/Generic.xaml" />
</ResourceDictionary.MergedDictionaries>
<Style TargetType="Control">
<Setter Property="FontFamily"
Expand Down
2 changes: 1 addition & 1 deletion TextCleaner/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System.Threading.Tasks;
using System.Windows;

namespace TextCleaner
namespace TidyText
{
/// <summary>
/// Interaction logic for App.xaml
Expand Down
2 changes: 1 addition & 1 deletion TextCleaner/CustomControl/StatisticsViewer.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Windows;
using System.Windows.Controls;

namespace TextCleaner.CustomControl
namespace TidyText.CustomControl
{
public class StatisticsViewer : Control
{
Expand Down
2 changes: 1 addition & 1 deletion TextCleaner/CustomControl/ToggleSwitch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace TextCleaner.CustomControl
namespace TidyText.CustomControl
{
public class ToggleSwitch : ToggleButton
{
Expand Down
2 changes: 1 addition & 1 deletion TextCleaner/Properties/Settings.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion TextCleaner/Service/BooleanToWrapConverter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Globalization;
using System.Windows.Data;

namespace TextCleaner.Service
namespace TidyText.Service
{
internal class BooleanToWrapConverter : IValueConverter
{
Expand Down
2 changes: 1 addition & 1 deletion TextCleaner/Themes/Generic.xaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:TextCleaner.CustomControl">
xmlns:local="clr-namespace:TidyText.CustomControl">

<!-- Toggle Switch Style -->
<Style TargetType="{x:Type local:ToggleSwitch}">
Expand Down
File renamed without changes.
8 changes: 4 additions & 4 deletions TextCleaner/View/MainWindow.xaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<Window x:Class="TextCleaner.View.MainWindow"
<Window x:Class="TidyText.View.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:custom="clr-namespace:TextCleaner.CustomControl"
xmlns:service="clr-namespace:TextCleaner.Service"
xmlns:viewmodel="clr-namespace:TextCleaner.ViewModel"
xmlns:custom="clr-namespace:TidyText.CustomControl"
xmlns:service="clr-namespace:TidyText.Service"
xmlns:viewmodel="clr-namespace:TidyText.ViewModel"
mc:Ignorable="d"
Title="TidyText"
Height="640"
Expand Down
4 changes: 2 additions & 2 deletions TextCleaner/View/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Windows;
using TextCleaner.ViewModel;
using TidyText.ViewModel;

namespace TextCleaner.View
namespace TidyText.View
{
/// <summary>
/// Interaction logic for MainWindow.xaml
Expand Down
2 changes: 1 addition & 1 deletion TextCleaner/ViewModel/MainViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using System.Text.RegularExpressions;
using System.Windows;

namespace TextCleaner.ViewModel
namespace TidyText.ViewModel
{
public partial class MainViewModel : ObservableObject
{
Expand Down
2 changes: 1 addition & 1 deletion TextCleaner.sln → TidyText.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.6.33801.468
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TextCleaner", "TextCleaner\TextCleaner.csproj", "{0AA36B43-ECBD-405E-A4E0-F994ED02D183}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TidyText", "TextCleaner\TidyText.csproj", "{0AA36B43-ECBD-405E-A4E0-F994ED02D183}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down

0 comments on commit 379825a

Please sign in to comment.