Browse Source

项目更名

Suxue 1 year ago
parent
commit
585e6683cd

+ 2 - 2
Analyse.xaml

@@ -1,9 +1,9 @@
-<Window x:Class="WechatPCMsgBakTool.Analyse"
+<Window x:Class="WechatBakTool.Analyse"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
-        xmlns:local="clr-namespace:WechatPCMsgBakTool"
+        xmlns:local="clr-namespace:WechatBakTool"
         mc:Ignorable="d"
         WindowStartupLocation="CenterScreen"
         Title="溯雪微信备份工具-分析" Height="450" Width="900">

+ 2 - 2
Analyse.xaml.cs

@@ -11,9 +11,9 @@ using System.Windows.Input;
 using System.Windows.Media;
 using System.Windows.Media.Imaging;
 using System.Windows.Shapes;
-using WechatPCMsgBakTool.Model;
+using WechatBakTool.Model;
 
-namespace WechatPCMsgBakTool
+namespace WechatBakTool
 {
     /// <summary>
     /// Analyse.xaml 的交互逻辑

+ 2 - 2
App.xaml

@@ -1,7 +1,7 @@
-<Application x:Class="WechatPCMsgBakTool.App"
+<Application x:Class="WechatBakTool.App"
              xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
              xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
-             xmlns:local="clr-namespace:WechatPCMsgBakTool"
+             xmlns:local="clr-namespace:WechatBakTool"
              StartupUri="Main2.xaml">
     <Application.Resources>
          

+ 1 - 1
App.xaml.cs

@@ -6,7 +6,7 @@ using System.Linq;
 using System.Threading.Tasks;
 using System.Windows;
 
-namespace WechatPCMsgBakTool
+namespace WechatBakTool
 {
     /// <summary>
     /// Interaction logic for App.xaml

+ 2 - 2
Helpers/DecryptionHelper.cs

@@ -10,9 +10,9 @@ using System.Text;
 using System.Text.Json.Serialization;
 using System.Threading.Tasks;
 using System.Windows;
-using WechatPCMsgBakTool.Model;
+using WechatBakTool.Model;
 
-namespace WechatPCMsgBakTool.Helpers
+namespace WechatBakTool.Helpers
 {
     public class DecryptionHelper
     {

+ 1 - 1
Helpers/DevicePathMapper.cs

@@ -6,7 +6,7 @@ using System.Runtime.InteropServices;
 using System.Text;
 using System.Threading.Tasks;
 
-namespace WechatPCMsgBakTool.Helpers
+namespace WechatBakTool.Helpers
 {
     public static class DevicePathMapper
     {

+ 1 - 1
Helpers/NativeAPI.cs

@@ -1,7 +1,7 @@
 using System;
 using System.Runtime.InteropServices;
 
-namespace WechatPCMsgBakTool.Helpers
+namespace WechatBakTool.Helpers
 {
     public class NativeAPI
     {

+ 2 - 2
Helpers/NativeAPIHelper.cs

@@ -5,9 +5,9 @@ using System.Linq;
 using System.Runtime.InteropServices;
 using System.Text;
 using System.Threading.Tasks;
-using static WechatPCMsgBakTool.Helpers.NativeAPI;
+using static WechatBakTool.Helpers.NativeAPI;
 
-namespace WechatPCMsgBakTool.Helpers
+namespace WechatBakTool.Helpers
 {
     public class NativeAPIHelper
     {

+ 1 - 1
Helpers/OpenSSLInterop.cs

@@ -3,7 +3,7 @@ using System.Collections.Generic;
 using System.Runtime.InteropServices;
 using System.Text;
 
-namespace WechatPCMsgBakTool.Helpers
+namespace WechatBakTool.Helpers
 {
     public class OpenSSLInterop
     {

+ 1 - 1
Helpers/ProcessHelper.cs

@@ -9,7 +9,7 @@ using System.Text;
 using System.Threading.Tasks;
 using System.Windows;
 
-namespace WechatPCMsgBakTool.Helpers
+namespace WechatBakTool.Helpers
 {
     public class ProcessHelper
     {

+ 1 - 1
Helpers/ToolsHelper.cs

@@ -7,7 +7,7 @@ using System.Text;
 using System.Threading;
 using System.Threading.Tasks;
 
-namespace WechatPCMsgBakTool.Helpers
+namespace WechatBakTool.Helpers
 {
     public class ToolsHelper
     {

+ 2 - 2
Helpers/WechatDBHelper.cs

@@ -5,9 +5,9 @@ using System.Linq;
 using System.Security.Cryptography;
 using System.Text;
 using System.Threading.Tasks;
-using WechatPCMsgBakTool.Model;
+using WechatBakTool.Model;
 
-namespace WechatPCMsgBakTool.Helpers
+namespace WechatBakTool.Helpers
 {
     public class WechatDBHelper
     {

+ 3 - 3
HtmlExport.cs

@@ -6,11 +6,11 @@ using System.IO;
 using System.Linq;
 using System.Text;
 using System.Threading.Tasks;
-using WechatPCMsgBakTool.Interface;
-using WechatPCMsgBakTool.Model;
+using WechatBakTool.Interface;
+using WechatBakTool.Model;
 using System.Xml;
 
-namespace WechatPCMsgBakTool
+namespace WechatBakTool
 {
     public class HtmlExport : IExport
     {

+ 2 - 2
Interface/ExportInterface.cs

@@ -3,9 +3,9 @@ using System.Collections.Generic;
 using System.Linq;
 using System.Text;
 using System.Threading.Tasks;
-using WechatPCMsgBakTool.Model;
+using WechatBakTool.Model;
 
-namespace WechatPCMsgBakTool.Interface
+namespace WechatBakTool.Interface
 {
     public interface IExport
     {

+ 2 - 2
Main.xaml

@@ -1,9 +1,9 @@
-<Window x:Class="WechatPCMsgBakTool.Main"
+<Window x:Class="WechatBakTool.Main"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
-        xmlns:local="clr-namespace:WechatPCMsgBakTool"
+        xmlns:local="clr-namespace:WechatBakTool"
         mc:Ignorable="d"
         WindowStartupLocation="CenterScreen"
         Title="溯雪微信备份工具" Height="450" Width="800">

+ 4 - 4
Main.xaml.cs

@@ -20,11 +20,11 @@ using System.Windows.Input;
 using System.Windows.Media;
 using System.Windows.Media.Imaging;
 using System.Xml;
-using WechatPCMsgBakTool.Helpers;
-using WechatPCMsgBakTool.Interface;
-using WechatPCMsgBakTool.Model;
+using WechatBakTool.Helpers;
+using WechatBakTool.Interface;
+using WechatBakTool.Model;
 
-namespace WechatPCMsgBakTool
+namespace WechatBakTool
 {
     /// <summary>
     /// Main.xaml 的交互逻辑

+ 2 - 2
Main2.xaml

@@ -1,9 +1,9 @@
-<Window x:Class="WechatPCMsgBakTool.Main2"
+<Window x:Class="WechatBakTool.Main2"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
-        xmlns:local="clr-namespace:WechatPCMsgBakTool"
+        xmlns:local="clr-namespace:WechatBakTool"
         mc:Ignorable="d" WindowStartupLocation="CenterScreen" WindowStyle="None" WindowState="Normal" Background="Transparent" AllowsTransparency="True" ResizeMode="NoResize"
         Title="Main2" Height="550" Width="950" >
     <Window.Resources>

+ 2 - 2
Main2.xaml.cs

@@ -13,9 +13,9 @@ using System.Windows.Documents;
 using System.Windows.Input;
 using System.Windows.Media;
 using System.Windows.Media.Imaging;
-using WechatPCMsgBakTool.Model;
+using WechatBakTool.Model;
 
-namespace WechatPCMsgBakTool
+namespace WechatBakTool
 {
     /// <summary>
     /// Main2.xaml 的交互逻辑

+ 1 - 1
Model/Common.cs

@@ -4,7 +4,7 @@ using System.Linq;
 using System.Text;
 using System.Threading.Tasks;
 
-namespace WechatPCMsgBakTool.Model
+namespace WechatBakTool.Model
 {
     public class ProcessInfo
     {

+ 1 - 1
Model/ProtobufModel.cs

@@ -5,7 +5,7 @@ using System.Linq;
 using System.Text;
 using System.Threading.Tasks;
 
-namespace WechatPCMsgBakTool.Model
+namespace WechatBakTool.Model
 {
     [ProtoContract]
     public class TVType

+ 1 - 1
Model/WXModel.cs

@@ -8,7 +8,7 @@ using System.ComponentModel;
 using System.Drawing;
 using System.Windows.Media.Imaging;
 
-namespace WechatPCMsgBakTool.Model
+namespace WechatBakTool.Model
 {
     public class UserBakConfig : INotifyPropertyChanged
     {

+ 2 - 2
Pages/CreateWork.xaml

@@ -1,9 +1,9 @@
-<Page x:Class="WechatPCMsgBakTool.Pages.CreateWork"
+<Page x:Class="WechatBakTool.Pages.CreateWork"
       xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
       xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
       xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
       xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
-      xmlns:local="clr-namespace:WechatPCMsgBakTool.Pages"
+      xmlns:local="clr-namespace:WechatBakTool.Pages"
       mc:Ignorable="d" 
       d:DesignHeight="550" d:DesignWidth="800"
       Title="Welcome" Background="White">

+ 4 - 4
Pages/CreateWork.xaml.cs

@@ -14,11 +14,11 @@ using System.Windows.Media;
 using System.Windows.Media.Imaging;
 using System.Windows.Navigation;
 using System.Windows.Shapes;
-using WechatPCMsgBakTool.Helpers;
-using WechatPCMsgBakTool.Model;
-using WechatPCMsgBakTool.ViewModel;
+using WechatBakTool.Helpers;
+using WechatBakTool.Model;
+using WechatBakTool.ViewModel;
 
-namespace WechatPCMsgBakTool.Pages
+namespace WechatBakTool.Pages
 {
     /// <summary>
     /// CreateWork.xaml 的交互逻辑

+ 2 - 2
Pages/Welcome.xaml

@@ -1,9 +1,9 @@
-<Page x:Class="WechatPCMsgBakTool.Pages.Welcome"
+<Page x:Class="WechatBakTool.Pages.Welcome"
       xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
       xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
       xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
       xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
-      xmlns:local="clr-namespace:WechatPCMsgBakTool.Pages"
+      xmlns:local="clr-namespace:WechatBakTool.Pages"
       mc:Ignorable="d" 
       d:DesignHeight="450" d:DesignWidth="800"
       Title="Welcome" Background="White">

+ 1 - 1
Pages/Welcome.xaml.cs

@@ -14,7 +14,7 @@ using System.Windows.Media.Imaging;
 using System.Windows.Navigation;
 using System.Windows.Shapes;
 
-namespace WechatPCMsgBakTool.Pages
+namespace WechatBakTool.Pages
 {
     /// <summary>
     /// Welcome.xaml 的交互逻辑

+ 2 - 2
Pages/Workspace.xaml

@@ -1,9 +1,9 @@
-<Page x:Class="WechatPCMsgBakTool.Pages.Workspace"
+<Page x:Class="WechatBakTool.Pages.Workspace"
       xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
       xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
       xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
       xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
-      xmlns:local="clr-namespace:WechatPCMsgBakTool.Pages"
+      xmlns:local="clr-namespace:WechatBakTool.Pages"
       mc:Ignorable="d" 
       d:DesignHeight="450" d:DesignWidth="800"
       Title="Workspace" Background="White">

+ 3 - 3
Pages/Workspace.xaml.cs

@@ -17,10 +17,10 @@ using System.Windows.Media;
 using System.Windows.Media.Imaging;
 using System.Windows.Navigation;
 using System.Windows.Shapes;
-using WechatPCMsgBakTool.Model;
-using WechatPCMsgBakTool.ViewModel;
+using WechatBakTool.Model;
+using WechatBakTool.ViewModel;
 
-namespace WechatPCMsgBakTool.Pages
+namespace WechatBakTool.Pages
 {
     /// <summary>
     /// Workspace.xaml 的交互逻辑

+ 2 - 2
SelectWechat.xaml

@@ -1,9 +1,9 @@
-<Window x:Class="WechatPCMsgBakTool.SelectWechat"
+<Window x:Class="WechatBakTool.SelectWechat"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
-        xmlns:local="clr-namespace:WechatPCMsgBakTool"
+        xmlns:local="clr-namespace:WechatBakTool"
         mc:Ignorable="d"
         WindowStartupLocation="CenterScreen"
         Title="选择微信" Height="310" Width="600">

+ 3 - 3
SelectWechat.xaml.cs

@@ -16,10 +16,10 @@ using System.Windows.Media;
 using System.Windows.Media.Imaging;
 using System.Windows.Shapes;
 using System.Xml.Linq;
-using WechatPCMsgBakTool.Helpers;
-using WechatPCMsgBakTool.Model;
+using WechatBakTool.Helpers;
+using WechatBakTool.Model;
 
-namespace WechatPCMsgBakTool
+namespace WechatBakTool
 {
     /// <summary>
     /// SelectWechat.xaml 的交互逻辑

+ 2 - 2
Tools.xaml

@@ -1,9 +1,9 @@
-<Window x:Class="WechatPCMsgBakTool.Tools"
+<Window x:Class="WechatBakTool.Tools"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
-        xmlns:local="clr-namespace:WechatPCMsgBakTool"
+        xmlns:local="clr-namespace:WechatBakTool"
         mc:Ignorable="d"
         Title="资源回退工具" Height="450" Width="800" WindowStartupLocation="CenterScreen">
     <Grid>

+ 2 - 2
Tools.xaml.cs

@@ -12,9 +12,9 @@ using System.Windows.Documents;
 using System.Windows.Input;
 using System.Windows.Media;
 using System.Windows.Media.Imaging;
-using WechatPCMsgBakTool.Model;
+using WechatBakTool.Model;
 
-namespace WechatPCMsgBakTool
+namespace WechatBakTool
 {
     /// <summary>
     /// Tools.xaml 的交互逻辑

+ 2 - 2
ViewModel/CreateWorkViewModel.cs

@@ -4,9 +4,9 @@ using System.Collections.Generic;
 using System.Linq;
 using System.Text;
 using System.Threading.Tasks;
-using WechatPCMsgBakTool.Model;
+using WechatBakTool.Model;
 
-namespace WechatPCMsgBakTool.ViewModel
+namespace WechatBakTool.ViewModel
 {
     partial class CreateWorkViewModel : ObservableObject
     {

+ 2 - 2
ViewModel/WorkspaceViewModel.cs

@@ -5,9 +5,9 @@ using System.Collections.ObjectModel;
 using System.Linq;
 using System.Text;
 using System.Threading.Tasks;
-using WechatPCMsgBakTool.Model;
+using WechatBakTool.Model;
 
-namespace WechatPCMsgBakTool.ViewModel
+namespace WechatBakTool.ViewModel
 {
     partial class WorkspaceViewModel : ObservableObject
     {

+ 3 - 3
WXUserReader.cs

@@ -15,10 +15,10 @@ using System.Windows.Interop;
 using System.Windows.Media.Imaging;
 using System.Xml;
 using System.Xml.Linq;
-using WechatPCMsgBakTool.Helpers;
-using WechatPCMsgBakTool.Model;
+using WechatBakTool.Helpers;
+using WechatBakTool.Model;
 
-namespace WechatPCMsgBakTool
+namespace WechatBakTool
 {
     public class WXUserReader
     {

+ 2 - 2
WXWorkspace.cs

@@ -7,9 +7,9 @@ using System.Security.Cryptography;
 using System.Text;
 using System.Threading.Tasks;
 using System.Windows;
-using WechatPCMsgBakTool.Model;
+using WechatBakTool.Model;
 
-namespace WechatPCMsgBakTool
+namespace WechatBakTool
 {
     public class WXWorkspace
     {

+ 0 - 0
WechatPCMsgBakTool.csproj → WechatBakTool.csproj


+ 1 - 1
WechatPCMsgBakTool.sln → WechatBakTool.sln

@@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
 # Visual Studio Version 17
 VisualStudioVersion = 17.5.33530.505
 MinimumVisualStudioVersion = 10.0.40219.1
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WechatPCMsgBakTool", "WechatPCMsgBakTool.csproj", "{2F385240-6FD0-47C5-9B5E-CC8D9AA55B25}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WechatBakTool", "WechatBakTool.csproj", "{2F385240-6FD0-47C5-9B5E-CC8D9AA55B25}"
 EndProject
 Global
 	GlobalSection(SolutionConfigurationPlatforms) = preSolution