├── .gitignore ├── README.md ├── Reference └── System.Data.SQLite.dll ├── WatchExeTime.BLL.Service ├── HotKeyService.cs ├── ProgramStageConfigServiceBLLService.cs ├── Properties │ └── AssemblyInfo.cs ├── WatchExeBLLService.cs ├── WatchExeTime.BLL.Service.csproj ├── WatchTimeBLLService.cs ├── WatchTypeBLLService.cs ├── bin │ └── Debug │ │ ├── Dapper.dll │ │ ├── Dapper.pdb │ │ ├── Dapper.xml │ │ ├── Data │ │ └── WatchQQTime.db │ │ ├── System.Data.SQLite.dll │ │ ├── WatchExeTime.BLL.Service.dll │ │ ├── WatchExeTime.BLL.Service.pdb │ │ ├── WatchExeTime.DAO.IServices.dll │ │ ├── WatchExeTime.DAO.IServices.pdb │ │ ├── WatchExeTime.DAO.Services.dll │ │ ├── WatchExeTime.DAO.Services.pdb │ │ ├── WatchExeTime.DAO.dll │ │ ├── WatchExeTime.DAO.dll.config │ │ ├── WatchExeTime.DAO.pdb │ │ ├── WatchExeTime.Factory.dll │ │ └── WatchExeTime.Factory.pdb └── obj │ └── Debug │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── WatchExeTime.BLL.Service.csproj.CopyComplete │ ├── WatchExeTime.BLL.Service.csproj.CoreCompileInputs.cache │ ├── WatchExeTime.BLL.Service.csproj.FileListAbsolute.txt │ ├── WatchExeTime.BLL.Service.csprojAssemblyReference.cache │ ├── WatchExeTime.BLL.Service.dll │ └── WatchExeTime.BLL.Service.pdb ├── WatchExeTime.BLL ├── .gitignore ├── CurrentWindow.cs ├── Images │ └── Logo.ico ├── Properties │ └── AssemblyInfo.cs ├── PropgramManager.cs ├── SetWindow.cs ├── WatchExeTime.BLL.csproj ├── bin │ └── Debug │ │ ├── Images │ │ └── Logo.ico │ │ ├── WatchExeTime.BLL.dll │ │ └── WatchExeTime.BLL.pdb └── obj │ ├── Debug │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── WatchExeTime.BLL.csproj.CoreCompileInputs.cache │ ├── WatchExeTime.BLL.csproj.FileListAbsolute.txt │ ├── WatchExeTime.BLL.csprojAssemblyReference.cache │ ├── WatchExeTime.BLL.dll │ └── WatchExeTime.BLL.pdb │ └── Release │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── WatchExeTime.DAO.IServices ├── IProgramStageConfigService.cs ├── IWatchExeService.cs ├── IWatchTimeService.cs ├── IWatchTypeService.cs ├── Properties │ └── AssemblyInfo.cs ├── WatchExeTime.DAO.IServices.csproj ├── bin │ └── Debug │ │ ├── Dapper.dll │ │ ├── Dapper.pdb │ │ ├── Dapper.xml │ │ ├── Data │ │ └── WatchQQTime.db │ │ ├── System.Data.SQLite.dll │ │ ├── WatchExeTime.DAO.IServices.dll │ │ ├── WatchExeTime.DAO.IServices.pdb │ │ ├── WatchExeTime.DAO.dll │ │ ├── WatchExeTime.DAO.dll.config │ │ └── WatchExeTime.DAO.pdb └── obj │ └── Debug │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── WatchExeTime.DAO.IServices.csproj.CopyComplete │ ├── WatchExeTime.DAO.IServices.csproj.CoreCompileInputs.cache │ ├── WatchExeTime.DAO.IServices.csproj.FileListAbsolute.txt │ ├── WatchExeTime.DAO.IServices.csprojAssemblyReference.cache │ ├── WatchExeTime.DAO.IServices.dll │ └── WatchExeTime.DAO.IServices.pdb ├── WatchExeTime.DAO.Services ├── ProgramStageConfigService.cs ├── Properties │ └── AssemblyInfo.cs ├── WatchExeService.cs ├── WatchExeTime.DAO.Services.csproj ├── WatchTimeService.cs ├── WatchTypeService.cs ├── bin │ └── Debug │ │ ├── Dapper.dll │ │ ├── Dapper.pdb │ │ ├── Dapper.xml │ │ ├── Data │ │ └── WatchQQTime.db │ │ ├── System.Data.SQLite.dll │ │ ├── WatchExeTime.DAO.IServices.dll │ │ ├── WatchExeTime.DAO.IServices.pdb │ │ ├── WatchExeTime.DAO.Services.dll │ │ ├── WatchExeTime.DAO.Services.pdb │ │ ├── WatchExeTime.DAO.dll │ │ ├── WatchExeTime.DAO.dll.config │ │ ├── WatchExeTime.DAO.pdb │ │ ├── x64 │ │ └── SQLite.Interop.dll │ │ └── x86 │ │ └── SQLite.Interop.dll ├── obj │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── WatchExeTime.DAO.Services.csproj.CopyComplete │ │ ├── WatchExeTime.DAO.Services.csproj.CoreCompileInputs.cache │ │ ├── WatchExeTime.DAO.Services.csproj.FileListAbsolute.txt │ │ ├── WatchExeTime.DAO.Services.csprojAssemblyReference.cache │ │ ├── WatchExeTime.DAO.Services.dll │ │ └── WatchExeTime.DAO.Services.pdb ├── packages.config └── x64 │ └── SQLite.Interop.dll ├── WatchExeTime.DAO ├── App.config ├── Data │ └── WatchQQTime.db ├── NotifyPropertyChanged.cs ├── ProgramStageConfigModel.cs ├── Properties │ └── AssemblyInfo.cs ├── SqlBaseHelper.cs ├── WatchExeModel.cs ├── WatchExeTime.DAO.csproj ├── WatchTimeModel.cs ├── WatchTypeModel.cs ├── bin │ └── Debug │ │ ├── Dapper.dll │ │ ├── Dapper.pdb │ │ ├── Dapper.xml │ │ ├── Data │ │ └── WatchQQTime.db │ │ ├── EntityFramework.SqlServer.dll │ │ ├── EntityFramework.SqlServer.xml │ │ ├── EntityFramework.dll │ │ ├── EntityFramework.xml │ │ ├── System.Data.SQLite.dll │ │ ├── WatchExeTime.DAO.dll │ │ ├── WatchExeTime.DAO.dll.config │ │ ├── WatchExeTime.DAO.pdb │ │ ├── x64 │ │ └── SQLite.Interop.dll │ │ └── x86 │ │ └── SQLite.Interop.dll ├── obj │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ └── DesignTimeResolveAssemblyReferencesInput.cache └── packages.config ├── WatchExeTime.Factory ├── BaseFactory.cs ├── Properties │ └── AssemblyInfo.cs ├── SQLiteServiceFactory.cs ├── Singleton.cs ├── SingletonFactory.cs ├── WatchExeTime.Factory.csproj ├── bin │ └── Release │ │ ├── Dapper.dll │ │ ├── Dapper.pdb │ │ ├── Dapper.xml │ │ ├── Data │ │ └── WatchQQTime.db │ │ ├── System.Data.SQLite.dll │ │ ├── WatchExeTime.DAO.IServices.dll │ │ ├── WatchExeTime.DAO.IServices.pdb │ │ ├── WatchExeTime.DAO.Services.dll │ │ ├── WatchExeTime.DAO.Services.pdb │ │ ├── WatchExeTime.DAO.dll │ │ ├── WatchExeTime.DAO.dll.config │ │ ├── WatchExeTime.DAO.pdb │ │ ├── WatchExeTime.Factory.dll │ │ └── WatchExeTime.Factory.pdb └── obj │ ├── Debug │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── WatchExeTime.Factory.csproj.CopyComplete │ ├── WatchExeTime.Factory.csproj.CoreCompileInputs.cache │ ├── WatchExeTime.Factory.csproj.FileListAbsolute.txt │ ├── WatchExeTime.Factory.csprojAssemblyReference.cache │ ├── WatchExeTime.Factory.dll │ └── WatchExeTime.Factory.pdb │ └── Release │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── WatchExeTime.Factory.csproj.CopyComplete │ ├── WatchExeTime.Factory.csproj.CoreCompileInputs.cache │ ├── WatchExeTime.Factory.csproj.FileListAbsolute.txt │ ├── WatchExeTime.Factory.csprojAssemblyReference.cache │ ├── WatchExeTime.Factory.dll │ └── WatchExeTime.Factory.pdb ├── WatchExeTime.common ├── GlobalCommon.cs ├── LogHelper.cs ├── NotifyIconHelper.cs ├── Properties │ └── AssemblyInfo.cs ├── WatchExeTime.common.csproj └── WindowHelper.cs ├── WatchExeTime.sln └── WatchExeTime ├── App.config ├── App.xaml ├── App.xaml.cs ├── Converter ├── Converter.xaml ├── DateTimeFomatConverter.cs ├── ExeIDToStringConverter.cs ├── IntToBoolConverter.cs ├── IntToVisibilityConverter.cs └── SeCondTimeFormatConverter.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Reference ├── GalaSoft.MvvmLight.dll ├── Microsoft.Expression.Interactions.dll └── System.Windows.Interactivity.dll ├── Resource └── Images │ └── Backgroud │ ├── wmx.png │ ├── xxp.png │ └── yz.png ├── ViewModel ├── MainWindowViewModel.cs ├── ViewModelBase.cs ├── WatchExeSettingViewModel.cs ├── WatchExeStageSettingViewModel.cs └── WatchUseTimeViewModel.cs ├── Views ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── WatchExeSetting.xaml ├── WatchExeSetting.xaml.cs ├── WatchExeStageSetting.xaml ├── WatchExeStageSetting.xaml.cs ├── WatchUseTime.xaml └── WatchUseTime.xaml.cs ├── WatchExeTime.csproj ├── WatchExeTime.csproj.user ├── WatchQQTime - 20190905的数据备份.db ├── bin └── Debug │ ├── Dapper.dll │ ├── Dapper.pdb │ ├── Dapper.xml │ ├── Data │ └── WatchQQTime.db │ ├── System.Data.SQLite.dll │ ├── WatchExeTime.BLL.Service.dll │ ├── WatchExeTime.BLL.Service.pdb │ ├── WatchExeTime.BLL.dll │ ├── WatchExeTime.BLL.pdb │ ├── WatchExeTime.DAO.IServices.dll │ ├── WatchExeTime.DAO.IServices.pdb │ ├── WatchExeTime.DAO.Services.dll │ ├── WatchExeTime.DAO.Services.pdb │ ├── WatchExeTime.DAO.dll │ ├── WatchExeTime.DAO.dll.config │ ├── WatchExeTime.DAO.pdb │ ├── WatchExeTime.Factory.dll │ ├── WatchExeTime.Factory.pdb │ ├── WatchExeTime.exe │ ├── WatchExeTime.exe.config │ └── WatchExeTime.pdb └── obj └── Debug ├── App.baml ├── App.g.cs ├── App.g.i.cs ├── Converter └── Converter.baml ├── DesignTimeResolveAssemblyReferences.cache ├── DesignTimeResolveAssemblyReferencesInput.cache ├── GeneratedInternalTypeHelper.g.cs ├── GeneratedInternalTypeHelper.g.i.cs ├── MainWindow.g.i.cs ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── Views ├── MainWindow.baml ├── MainWindow.g.cs └── MainWindow.g.i.cs ├── WatchExeTime.Properties.Resources.resources ├── WatchExeTime.csproj.CopyComplete ├── WatchExeTime.csproj.CoreCompileInputs.cache ├── WatchExeTime.csproj.FileListAbsolute.txt ├── WatchExeTime.csproj.GenerateResource.cache ├── WatchExeTime.csprojAssemblyReference.cache ├── WatchExeTime.exe ├── WatchExeTime.g.resources ├── WatchExeTime.pdb ├── WatchExeTime_Content.g.i.cs ├── WatchExeTime_MarkupCompile.cache ├── WatchExeTime_MarkupCompile.i.cache ├── WatchExeTime_MarkupCompile.i.lref └── WatchExeTime_MarkupCompile.lref /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/README.md -------------------------------------------------------------------------------- /Reference/System.Data.SQLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/Reference/System.Data.SQLite.dll -------------------------------------------------------------------------------- /WatchExeTime.BLL.Service/HotKeyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL.Service/HotKeyService.cs -------------------------------------------------------------------------------- /WatchExeTime.BLL.Service/ProgramStageConfigServiceBLLService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL.Service/ProgramStageConfigServiceBLLService.cs -------------------------------------------------------------------------------- /WatchExeTime.BLL.Service/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL.Service/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WatchExeTime.BLL.Service/WatchExeBLLService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL.Service/WatchExeBLLService.cs -------------------------------------------------------------------------------- /WatchExeTime.BLL.Service/WatchExeTime.BLL.Service.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL.Service/WatchExeTime.BLL.Service.csproj -------------------------------------------------------------------------------- /WatchExeTime.BLL.Service/WatchTimeBLLService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL.Service/WatchTimeBLLService.cs -------------------------------------------------------------------------------- /WatchExeTime.BLL.Service/WatchTypeBLLService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL.Service/WatchTypeBLLService.cs -------------------------------------------------------------------------------- /WatchExeTime.BLL.Service/bin/Debug/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL.Service/bin/Debug/Dapper.dll -------------------------------------------------------------------------------- /WatchExeTime.BLL.Service/bin/Debug/Dapper.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL.Service/bin/Debug/Dapper.pdb -------------------------------------------------------------------------------- /WatchExeTime.BLL.Service/bin/Debug/Dapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL.Service/bin/Debug/Dapper.xml -------------------------------------------------------------------------------- /WatchExeTime.BLL.Service/bin/Debug/Data/WatchQQTime.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL.Service/bin/Debug/Data/WatchQQTime.db -------------------------------------------------------------------------------- /WatchExeTime.BLL.Service/bin/Debug/System.Data.SQLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL.Service/bin/Debug/System.Data.SQLite.dll -------------------------------------------------------------------------------- /WatchExeTime.BLL.Service/bin/Debug/WatchExeTime.BLL.Service.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL.Service/bin/Debug/WatchExeTime.BLL.Service.dll -------------------------------------------------------------------------------- /WatchExeTime.BLL.Service/bin/Debug/WatchExeTime.BLL.Service.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL.Service/bin/Debug/WatchExeTime.BLL.Service.pdb -------------------------------------------------------------------------------- /WatchExeTime.BLL.Service/bin/Debug/WatchExeTime.DAO.IServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL.Service/bin/Debug/WatchExeTime.DAO.IServices.dll -------------------------------------------------------------------------------- /WatchExeTime.BLL.Service/bin/Debug/WatchExeTime.DAO.IServices.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL.Service/bin/Debug/WatchExeTime.DAO.IServices.pdb -------------------------------------------------------------------------------- /WatchExeTime.BLL.Service/bin/Debug/WatchExeTime.DAO.Services.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL.Service/bin/Debug/WatchExeTime.DAO.Services.dll -------------------------------------------------------------------------------- /WatchExeTime.BLL.Service/bin/Debug/WatchExeTime.DAO.Services.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL.Service/bin/Debug/WatchExeTime.DAO.Services.pdb -------------------------------------------------------------------------------- /WatchExeTime.BLL.Service/bin/Debug/WatchExeTime.DAO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL.Service/bin/Debug/WatchExeTime.DAO.dll -------------------------------------------------------------------------------- /WatchExeTime.BLL.Service/bin/Debug/WatchExeTime.DAO.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL.Service/bin/Debug/WatchExeTime.DAO.dll.config -------------------------------------------------------------------------------- /WatchExeTime.BLL.Service/bin/Debug/WatchExeTime.DAO.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL.Service/bin/Debug/WatchExeTime.DAO.pdb -------------------------------------------------------------------------------- /WatchExeTime.BLL.Service/bin/Debug/WatchExeTime.Factory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL.Service/bin/Debug/WatchExeTime.Factory.dll -------------------------------------------------------------------------------- /WatchExeTime.BLL.Service/bin/Debug/WatchExeTime.Factory.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL.Service/bin/Debug/WatchExeTime.Factory.pdb -------------------------------------------------------------------------------- /WatchExeTime.BLL.Service/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL.Service/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /WatchExeTime.BLL.Service/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WatchExeTime.BLL.Service/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WatchExeTime.BLL.Service/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WatchExeTime.BLL.Service/obj/Debug/WatchExeTime.BLL.Service.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WatchExeTime.BLL.Service/obj/Debug/WatchExeTime.BLL.Service.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL.Service/obj/Debug/WatchExeTime.BLL.Service.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /WatchExeTime.BLL.Service/obj/Debug/WatchExeTime.BLL.Service.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL.Service/obj/Debug/WatchExeTime.BLL.Service.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /WatchExeTime.BLL.Service/obj/Debug/WatchExeTime.BLL.Service.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL.Service/obj/Debug/WatchExeTime.BLL.Service.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /WatchExeTime.BLL.Service/obj/Debug/WatchExeTime.BLL.Service.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL.Service/obj/Debug/WatchExeTime.BLL.Service.dll -------------------------------------------------------------------------------- /WatchExeTime.BLL.Service/obj/Debug/WatchExeTime.BLL.Service.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL.Service/obj/Debug/WatchExeTime.BLL.Service.pdb -------------------------------------------------------------------------------- /WatchExeTime.BLL/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | -------------------------------------------------------------------------------- /WatchExeTime.BLL/CurrentWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL/CurrentWindow.cs -------------------------------------------------------------------------------- /WatchExeTime.BLL/Images/Logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL/Images/Logo.ico -------------------------------------------------------------------------------- /WatchExeTime.BLL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WatchExeTime.BLL/PropgramManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL/PropgramManager.cs -------------------------------------------------------------------------------- /WatchExeTime.BLL/SetWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL/SetWindow.cs -------------------------------------------------------------------------------- /WatchExeTime.BLL/WatchExeTime.BLL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL/WatchExeTime.BLL.csproj -------------------------------------------------------------------------------- /WatchExeTime.BLL/bin/Debug/Images/Logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL/bin/Debug/Images/Logo.ico -------------------------------------------------------------------------------- /WatchExeTime.BLL/bin/Debug/WatchExeTime.BLL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL/bin/Debug/WatchExeTime.BLL.dll -------------------------------------------------------------------------------- /WatchExeTime.BLL/bin/Debug/WatchExeTime.BLL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL/bin/Debug/WatchExeTime.BLL.pdb -------------------------------------------------------------------------------- /WatchExeTime.BLL/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /WatchExeTime.BLL/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WatchExeTime.BLL/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WatchExeTime.BLL/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WatchExeTime.BLL/obj/Debug/WatchExeTime.BLL.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | fe11cacdc62f0d50f46c45f847a96b52c6ce576b 2 | -------------------------------------------------------------------------------- /WatchExeTime.BLL/obj/Debug/WatchExeTime.BLL.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL/obj/Debug/WatchExeTime.BLL.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /WatchExeTime.BLL/obj/Debug/WatchExeTime.BLL.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL/obj/Debug/WatchExeTime.BLL.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /WatchExeTime.BLL/obj/Debug/WatchExeTime.BLL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL/obj/Debug/WatchExeTime.BLL.dll -------------------------------------------------------------------------------- /WatchExeTime.BLL/obj/Debug/WatchExeTime.BLL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.BLL/obj/Debug/WatchExeTime.BLL.pdb -------------------------------------------------------------------------------- /WatchExeTime.BLL/obj/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WatchExeTime.BLL/obj/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WatchExeTime.BLL/obj/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WatchExeTime.DAO.IServices/IProgramStageConfigService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.IServices/IProgramStageConfigService.cs -------------------------------------------------------------------------------- /WatchExeTime.DAO.IServices/IWatchExeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.IServices/IWatchExeService.cs -------------------------------------------------------------------------------- /WatchExeTime.DAO.IServices/IWatchTimeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.IServices/IWatchTimeService.cs -------------------------------------------------------------------------------- /WatchExeTime.DAO.IServices/IWatchTypeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.IServices/IWatchTypeService.cs -------------------------------------------------------------------------------- /WatchExeTime.DAO.IServices/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.IServices/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WatchExeTime.DAO.IServices/WatchExeTime.DAO.IServices.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.IServices/WatchExeTime.DAO.IServices.csproj -------------------------------------------------------------------------------- /WatchExeTime.DAO.IServices/bin/Debug/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.IServices/bin/Debug/Dapper.dll -------------------------------------------------------------------------------- /WatchExeTime.DAO.IServices/bin/Debug/Dapper.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.IServices/bin/Debug/Dapper.pdb -------------------------------------------------------------------------------- /WatchExeTime.DAO.IServices/bin/Debug/Dapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.IServices/bin/Debug/Dapper.xml -------------------------------------------------------------------------------- /WatchExeTime.DAO.IServices/bin/Debug/Data/WatchQQTime.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.IServices/bin/Debug/Data/WatchQQTime.db -------------------------------------------------------------------------------- /WatchExeTime.DAO.IServices/bin/Debug/System.Data.SQLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.IServices/bin/Debug/System.Data.SQLite.dll -------------------------------------------------------------------------------- /WatchExeTime.DAO.IServices/bin/Debug/WatchExeTime.DAO.IServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.IServices/bin/Debug/WatchExeTime.DAO.IServices.dll -------------------------------------------------------------------------------- /WatchExeTime.DAO.IServices/bin/Debug/WatchExeTime.DAO.IServices.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.IServices/bin/Debug/WatchExeTime.DAO.IServices.pdb -------------------------------------------------------------------------------- /WatchExeTime.DAO.IServices/bin/Debug/WatchExeTime.DAO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.IServices/bin/Debug/WatchExeTime.DAO.dll -------------------------------------------------------------------------------- /WatchExeTime.DAO.IServices/bin/Debug/WatchExeTime.DAO.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.IServices/bin/Debug/WatchExeTime.DAO.dll.config -------------------------------------------------------------------------------- /WatchExeTime.DAO.IServices/bin/Debug/WatchExeTime.DAO.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.IServices/bin/Debug/WatchExeTime.DAO.pdb -------------------------------------------------------------------------------- /WatchExeTime.DAO.IServices/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.IServices/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /WatchExeTime.DAO.IServices/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WatchExeTime.DAO.IServices/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WatchExeTime.DAO.IServices/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WatchExeTime.DAO.IServices/obj/Debug/WatchExeTime.DAO.IServices.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WatchExeTime.DAO.IServices/obj/Debug/WatchExeTime.DAO.IServices.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | ef876fdf30b536cfc3753b3d98fc08fa42a1dcbb 2 | -------------------------------------------------------------------------------- /WatchExeTime.DAO.IServices/obj/Debug/WatchExeTime.DAO.IServices.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.IServices/obj/Debug/WatchExeTime.DAO.IServices.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /WatchExeTime.DAO.IServices/obj/Debug/WatchExeTime.DAO.IServices.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.IServices/obj/Debug/WatchExeTime.DAO.IServices.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /WatchExeTime.DAO.IServices/obj/Debug/WatchExeTime.DAO.IServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.IServices/obj/Debug/WatchExeTime.DAO.IServices.dll -------------------------------------------------------------------------------- /WatchExeTime.DAO.IServices/obj/Debug/WatchExeTime.DAO.IServices.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.IServices/obj/Debug/WatchExeTime.DAO.IServices.pdb -------------------------------------------------------------------------------- /WatchExeTime.DAO.Services/ProgramStageConfigService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.Services/ProgramStageConfigService.cs -------------------------------------------------------------------------------- /WatchExeTime.DAO.Services/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.Services/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WatchExeTime.DAO.Services/WatchExeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.Services/WatchExeService.cs -------------------------------------------------------------------------------- /WatchExeTime.DAO.Services/WatchExeTime.DAO.Services.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.Services/WatchExeTime.DAO.Services.csproj -------------------------------------------------------------------------------- /WatchExeTime.DAO.Services/WatchTimeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.Services/WatchTimeService.cs -------------------------------------------------------------------------------- /WatchExeTime.DAO.Services/WatchTypeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.Services/WatchTypeService.cs -------------------------------------------------------------------------------- /WatchExeTime.DAO.Services/bin/Debug/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.Services/bin/Debug/Dapper.dll -------------------------------------------------------------------------------- /WatchExeTime.DAO.Services/bin/Debug/Dapper.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.Services/bin/Debug/Dapper.pdb -------------------------------------------------------------------------------- /WatchExeTime.DAO.Services/bin/Debug/Dapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.Services/bin/Debug/Dapper.xml -------------------------------------------------------------------------------- /WatchExeTime.DAO.Services/bin/Debug/Data/WatchQQTime.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.Services/bin/Debug/Data/WatchQQTime.db -------------------------------------------------------------------------------- /WatchExeTime.DAO.Services/bin/Debug/System.Data.SQLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.Services/bin/Debug/System.Data.SQLite.dll -------------------------------------------------------------------------------- /WatchExeTime.DAO.Services/bin/Debug/WatchExeTime.DAO.IServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.Services/bin/Debug/WatchExeTime.DAO.IServices.dll -------------------------------------------------------------------------------- /WatchExeTime.DAO.Services/bin/Debug/WatchExeTime.DAO.IServices.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.Services/bin/Debug/WatchExeTime.DAO.IServices.pdb -------------------------------------------------------------------------------- /WatchExeTime.DAO.Services/bin/Debug/WatchExeTime.DAO.Services.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.Services/bin/Debug/WatchExeTime.DAO.Services.dll -------------------------------------------------------------------------------- /WatchExeTime.DAO.Services/bin/Debug/WatchExeTime.DAO.Services.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.Services/bin/Debug/WatchExeTime.DAO.Services.pdb -------------------------------------------------------------------------------- /WatchExeTime.DAO.Services/bin/Debug/WatchExeTime.DAO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.Services/bin/Debug/WatchExeTime.DAO.dll -------------------------------------------------------------------------------- /WatchExeTime.DAO.Services/bin/Debug/WatchExeTime.DAO.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.Services/bin/Debug/WatchExeTime.DAO.dll.config -------------------------------------------------------------------------------- /WatchExeTime.DAO.Services/bin/Debug/WatchExeTime.DAO.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.Services/bin/Debug/WatchExeTime.DAO.pdb -------------------------------------------------------------------------------- /WatchExeTime.DAO.Services/bin/Debug/x64/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.Services/bin/Debug/x64/SQLite.Interop.dll -------------------------------------------------------------------------------- /WatchExeTime.DAO.Services/bin/Debug/x86/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.Services/bin/Debug/x86/SQLite.Interop.dll -------------------------------------------------------------------------------- /WatchExeTime.DAO.Services/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.Services/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /WatchExeTime.DAO.Services/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WatchExeTime.DAO.Services/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WatchExeTime.DAO.Services/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WatchExeTime.DAO.Services/obj/Debug/WatchExeTime.DAO.Services.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WatchExeTime.DAO.Services/obj/Debug/WatchExeTime.DAO.Services.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 090be4e3624321c6ba556e5d92a387085030d55a 2 | -------------------------------------------------------------------------------- /WatchExeTime.DAO.Services/obj/Debug/WatchExeTime.DAO.Services.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.Services/obj/Debug/WatchExeTime.DAO.Services.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /WatchExeTime.DAO.Services/obj/Debug/WatchExeTime.DAO.Services.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.Services/obj/Debug/WatchExeTime.DAO.Services.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /WatchExeTime.DAO.Services/obj/Debug/WatchExeTime.DAO.Services.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.Services/obj/Debug/WatchExeTime.DAO.Services.dll -------------------------------------------------------------------------------- /WatchExeTime.DAO.Services/obj/Debug/WatchExeTime.DAO.Services.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.Services/obj/Debug/WatchExeTime.DAO.Services.pdb -------------------------------------------------------------------------------- /WatchExeTime.DAO.Services/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.Services/packages.config -------------------------------------------------------------------------------- /WatchExeTime.DAO.Services/x64/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO.Services/x64/SQLite.Interop.dll -------------------------------------------------------------------------------- /WatchExeTime.DAO/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO/App.config -------------------------------------------------------------------------------- /WatchExeTime.DAO/Data/WatchQQTime.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO/Data/WatchQQTime.db -------------------------------------------------------------------------------- /WatchExeTime.DAO/NotifyPropertyChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO/NotifyPropertyChanged.cs -------------------------------------------------------------------------------- /WatchExeTime.DAO/ProgramStageConfigModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO/ProgramStageConfigModel.cs -------------------------------------------------------------------------------- /WatchExeTime.DAO/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WatchExeTime.DAO/SqlBaseHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO/SqlBaseHelper.cs -------------------------------------------------------------------------------- /WatchExeTime.DAO/WatchExeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO/WatchExeModel.cs -------------------------------------------------------------------------------- /WatchExeTime.DAO/WatchExeTime.DAO.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO/WatchExeTime.DAO.csproj -------------------------------------------------------------------------------- /WatchExeTime.DAO/WatchTimeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO/WatchTimeModel.cs -------------------------------------------------------------------------------- /WatchExeTime.DAO/WatchTypeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO/WatchTypeModel.cs -------------------------------------------------------------------------------- /WatchExeTime.DAO/bin/Debug/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO/bin/Debug/Dapper.dll -------------------------------------------------------------------------------- /WatchExeTime.DAO/bin/Debug/Dapper.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO/bin/Debug/Dapper.pdb -------------------------------------------------------------------------------- /WatchExeTime.DAO/bin/Debug/Dapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO/bin/Debug/Dapper.xml -------------------------------------------------------------------------------- /WatchExeTime.DAO/bin/Debug/Data/WatchQQTime.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO/bin/Debug/Data/WatchQQTime.db -------------------------------------------------------------------------------- /WatchExeTime.DAO/bin/Debug/EntityFramework.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO/bin/Debug/EntityFramework.SqlServer.dll -------------------------------------------------------------------------------- /WatchExeTime.DAO/bin/Debug/EntityFramework.SqlServer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO/bin/Debug/EntityFramework.SqlServer.xml -------------------------------------------------------------------------------- /WatchExeTime.DAO/bin/Debug/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO/bin/Debug/EntityFramework.dll -------------------------------------------------------------------------------- /WatchExeTime.DAO/bin/Debug/EntityFramework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO/bin/Debug/EntityFramework.xml -------------------------------------------------------------------------------- /WatchExeTime.DAO/bin/Debug/System.Data.SQLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO/bin/Debug/System.Data.SQLite.dll -------------------------------------------------------------------------------- /WatchExeTime.DAO/bin/Debug/WatchExeTime.DAO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO/bin/Debug/WatchExeTime.DAO.dll -------------------------------------------------------------------------------- /WatchExeTime.DAO/bin/Debug/WatchExeTime.DAO.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO/bin/Debug/WatchExeTime.DAO.dll.config -------------------------------------------------------------------------------- /WatchExeTime.DAO/bin/Debug/WatchExeTime.DAO.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO/bin/Debug/WatchExeTime.DAO.pdb -------------------------------------------------------------------------------- /WatchExeTime.DAO/bin/Debug/x64/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO/bin/Debug/x64/SQLite.Interop.dll -------------------------------------------------------------------------------- /WatchExeTime.DAO/bin/Debug/x86/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO/bin/Debug/x86/SQLite.Interop.dll -------------------------------------------------------------------------------- /WatchExeTime.DAO/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /WatchExeTime.DAO/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /WatchExeTime.DAO/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.DAO/packages.config -------------------------------------------------------------------------------- /WatchExeTime.Factory/BaseFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.Factory/BaseFactory.cs -------------------------------------------------------------------------------- /WatchExeTime.Factory/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.Factory/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WatchExeTime.Factory/SQLiteServiceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.Factory/SQLiteServiceFactory.cs -------------------------------------------------------------------------------- /WatchExeTime.Factory/Singleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.Factory/Singleton.cs -------------------------------------------------------------------------------- /WatchExeTime.Factory/SingletonFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.Factory/SingletonFactory.cs -------------------------------------------------------------------------------- /WatchExeTime.Factory/WatchExeTime.Factory.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.Factory/WatchExeTime.Factory.csproj -------------------------------------------------------------------------------- /WatchExeTime.Factory/bin/Release/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.Factory/bin/Release/Dapper.dll -------------------------------------------------------------------------------- /WatchExeTime.Factory/bin/Release/Dapper.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.Factory/bin/Release/Dapper.pdb -------------------------------------------------------------------------------- /WatchExeTime.Factory/bin/Release/Dapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.Factory/bin/Release/Dapper.xml -------------------------------------------------------------------------------- /WatchExeTime.Factory/bin/Release/Data/WatchQQTime.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.Factory/bin/Release/Data/WatchQQTime.db -------------------------------------------------------------------------------- /WatchExeTime.Factory/bin/Release/System.Data.SQLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.Factory/bin/Release/System.Data.SQLite.dll -------------------------------------------------------------------------------- /WatchExeTime.Factory/bin/Release/WatchExeTime.DAO.IServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.Factory/bin/Release/WatchExeTime.DAO.IServices.dll -------------------------------------------------------------------------------- /WatchExeTime.Factory/bin/Release/WatchExeTime.DAO.IServices.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.Factory/bin/Release/WatchExeTime.DAO.IServices.pdb -------------------------------------------------------------------------------- /WatchExeTime.Factory/bin/Release/WatchExeTime.DAO.Services.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.Factory/bin/Release/WatchExeTime.DAO.Services.dll -------------------------------------------------------------------------------- /WatchExeTime.Factory/bin/Release/WatchExeTime.DAO.Services.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.Factory/bin/Release/WatchExeTime.DAO.Services.pdb -------------------------------------------------------------------------------- /WatchExeTime.Factory/bin/Release/WatchExeTime.DAO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.Factory/bin/Release/WatchExeTime.DAO.dll -------------------------------------------------------------------------------- /WatchExeTime.Factory/bin/Release/WatchExeTime.DAO.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.Factory/bin/Release/WatchExeTime.DAO.dll.config -------------------------------------------------------------------------------- /WatchExeTime.Factory/bin/Release/WatchExeTime.DAO.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.Factory/bin/Release/WatchExeTime.DAO.pdb -------------------------------------------------------------------------------- /WatchExeTime.Factory/bin/Release/WatchExeTime.Factory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.Factory/bin/Release/WatchExeTime.Factory.dll -------------------------------------------------------------------------------- /WatchExeTime.Factory/bin/Release/WatchExeTime.Factory.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.Factory/bin/Release/WatchExeTime.Factory.pdb -------------------------------------------------------------------------------- /WatchExeTime.Factory/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.Factory/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /WatchExeTime.Factory/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WatchExeTime.Factory/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WatchExeTime.Factory/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WatchExeTime.Factory/obj/Debug/WatchExeTime.Factory.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WatchExeTime.Factory/obj/Debug/WatchExeTime.Factory.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 2549db9b7c2825a6cfc417fc13465980a9e31246 2 | -------------------------------------------------------------------------------- /WatchExeTime.Factory/obj/Debug/WatchExeTime.Factory.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.Factory/obj/Debug/WatchExeTime.Factory.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /WatchExeTime.Factory/obj/Debug/WatchExeTime.Factory.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.Factory/obj/Debug/WatchExeTime.Factory.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /WatchExeTime.Factory/obj/Debug/WatchExeTime.Factory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.Factory/obj/Debug/WatchExeTime.Factory.dll -------------------------------------------------------------------------------- /WatchExeTime.Factory/obj/Debug/WatchExeTime.Factory.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.Factory/obj/Debug/WatchExeTime.Factory.pdb -------------------------------------------------------------------------------- /WatchExeTime.Factory/obj/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WatchExeTime.Factory/obj/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WatchExeTime.Factory/obj/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WatchExeTime.Factory/obj/Release/WatchExeTime.Factory.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WatchExeTime.Factory/obj/Release/WatchExeTime.Factory.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.Factory/obj/Release/WatchExeTime.Factory.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /WatchExeTime.Factory/obj/Release/WatchExeTime.Factory.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.Factory/obj/Release/WatchExeTime.Factory.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /WatchExeTime.Factory/obj/Release/WatchExeTime.Factory.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.Factory/obj/Release/WatchExeTime.Factory.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /WatchExeTime.Factory/obj/Release/WatchExeTime.Factory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.Factory/obj/Release/WatchExeTime.Factory.dll -------------------------------------------------------------------------------- /WatchExeTime.Factory/obj/Release/WatchExeTime.Factory.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.Factory/obj/Release/WatchExeTime.Factory.pdb -------------------------------------------------------------------------------- /WatchExeTime.common/GlobalCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.common/GlobalCommon.cs -------------------------------------------------------------------------------- /WatchExeTime.common/LogHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.common/LogHelper.cs -------------------------------------------------------------------------------- /WatchExeTime.common/NotifyIconHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.common/NotifyIconHelper.cs -------------------------------------------------------------------------------- /WatchExeTime.common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WatchExeTime.common/WatchExeTime.common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.common/WatchExeTime.common.csproj -------------------------------------------------------------------------------- /WatchExeTime.common/WindowHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.common/WindowHelper.cs -------------------------------------------------------------------------------- /WatchExeTime.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime.sln -------------------------------------------------------------------------------- /WatchExeTime/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/App.config -------------------------------------------------------------------------------- /WatchExeTime/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/App.xaml -------------------------------------------------------------------------------- /WatchExeTime/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/App.xaml.cs -------------------------------------------------------------------------------- /WatchExeTime/Converter/Converter.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/Converter/Converter.xaml -------------------------------------------------------------------------------- /WatchExeTime/Converter/DateTimeFomatConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/Converter/DateTimeFomatConverter.cs -------------------------------------------------------------------------------- /WatchExeTime/Converter/ExeIDToStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/Converter/ExeIDToStringConverter.cs -------------------------------------------------------------------------------- /WatchExeTime/Converter/IntToBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/Converter/IntToBoolConverter.cs -------------------------------------------------------------------------------- /WatchExeTime/Converter/IntToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/Converter/IntToVisibilityConverter.cs -------------------------------------------------------------------------------- /WatchExeTime/Converter/SeCondTimeFormatConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/Converter/SeCondTimeFormatConverter.cs -------------------------------------------------------------------------------- /WatchExeTime/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WatchExeTime/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WatchExeTime/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/Properties/Resources.resx -------------------------------------------------------------------------------- /WatchExeTime/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WatchExeTime/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/Properties/Settings.settings -------------------------------------------------------------------------------- /WatchExeTime/Reference/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/Reference/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /WatchExeTime/Reference/Microsoft.Expression.Interactions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/Reference/Microsoft.Expression.Interactions.dll -------------------------------------------------------------------------------- /WatchExeTime/Reference/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/Reference/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /WatchExeTime/Resource/Images/Backgroud/wmx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/Resource/Images/Backgroud/wmx.png -------------------------------------------------------------------------------- /WatchExeTime/Resource/Images/Backgroud/xxp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/Resource/Images/Backgroud/xxp.png -------------------------------------------------------------------------------- /WatchExeTime/Resource/Images/Backgroud/yz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/Resource/Images/Backgroud/yz.png -------------------------------------------------------------------------------- /WatchExeTime/ViewModel/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/ViewModel/MainWindowViewModel.cs -------------------------------------------------------------------------------- /WatchExeTime/ViewModel/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/ViewModel/ViewModelBase.cs -------------------------------------------------------------------------------- /WatchExeTime/ViewModel/WatchExeSettingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/ViewModel/WatchExeSettingViewModel.cs -------------------------------------------------------------------------------- /WatchExeTime/ViewModel/WatchExeStageSettingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/ViewModel/WatchExeStageSettingViewModel.cs -------------------------------------------------------------------------------- /WatchExeTime/ViewModel/WatchUseTimeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/ViewModel/WatchUseTimeViewModel.cs -------------------------------------------------------------------------------- /WatchExeTime/Views/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/Views/MainWindow.xaml -------------------------------------------------------------------------------- /WatchExeTime/Views/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/Views/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WatchExeTime/Views/WatchExeSetting.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/Views/WatchExeSetting.xaml -------------------------------------------------------------------------------- /WatchExeTime/Views/WatchExeSetting.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/Views/WatchExeSetting.xaml.cs -------------------------------------------------------------------------------- /WatchExeTime/Views/WatchExeStageSetting.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/Views/WatchExeStageSetting.xaml -------------------------------------------------------------------------------- /WatchExeTime/Views/WatchExeStageSetting.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/Views/WatchExeStageSetting.xaml.cs -------------------------------------------------------------------------------- /WatchExeTime/Views/WatchUseTime.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/Views/WatchUseTime.xaml -------------------------------------------------------------------------------- /WatchExeTime/Views/WatchUseTime.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/Views/WatchUseTime.xaml.cs -------------------------------------------------------------------------------- /WatchExeTime/WatchExeTime.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/WatchExeTime.csproj -------------------------------------------------------------------------------- /WatchExeTime/WatchExeTime.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/WatchExeTime.csproj.user -------------------------------------------------------------------------------- /WatchExeTime/WatchQQTime - 20190905的数据备份.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/WatchQQTime - 20190905的数据备份.db -------------------------------------------------------------------------------- /WatchExeTime/bin/Debug/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/bin/Debug/Dapper.dll -------------------------------------------------------------------------------- /WatchExeTime/bin/Debug/Dapper.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/bin/Debug/Dapper.pdb -------------------------------------------------------------------------------- /WatchExeTime/bin/Debug/Dapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/bin/Debug/Dapper.xml -------------------------------------------------------------------------------- /WatchExeTime/bin/Debug/Data/WatchQQTime.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/bin/Debug/Data/WatchQQTime.db -------------------------------------------------------------------------------- /WatchExeTime/bin/Debug/System.Data.SQLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/bin/Debug/System.Data.SQLite.dll -------------------------------------------------------------------------------- /WatchExeTime/bin/Debug/WatchExeTime.BLL.Service.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/bin/Debug/WatchExeTime.BLL.Service.dll -------------------------------------------------------------------------------- /WatchExeTime/bin/Debug/WatchExeTime.BLL.Service.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/bin/Debug/WatchExeTime.BLL.Service.pdb -------------------------------------------------------------------------------- /WatchExeTime/bin/Debug/WatchExeTime.BLL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/bin/Debug/WatchExeTime.BLL.dll -------------------------------------------------------------------------------- /WatchExeTime/bin/Debug/WatchExeTime.BLL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/bin/Debug/WatchExeTime.BLL.pdb -------------------------------------------------------------------------------- /WatchExeTime/bin/Debug/WatchExeTime.DAO.IServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/bin/Debug/WatchExeTime.DAO.IServices.dll -------------------------------------------------------------------------------- /WatchExeTime/bin/Debug/WatchExeTime.DAO.IServices.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/bin/Debug/WatchExeTime.DAO.IServices.pdb -------------------------------------------------------------------------------- /WatchExeTime/bin/Debug/WatchExeTime.DAO.Services.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/bin/Debug/WatchExeTime.DAO.Services.dll -------------------------------------------------------------------------------- /WatchExeTime/bin/Debug/WatchExeTime.DAO.Services.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/bin/Debug/WatchExeTime.DAO.Services.pdb -------------------------------------------------------------------------------- /WatchExeTime/bin/Debug/WatchExeTime.DAO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/bin/Debug/WatchExeTime.DAO.dll -------------------------------------------------------------------------------- /WatchExeTime/bin/Debug/WatchExeTime.DAO.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/bin/Debug/WatchExeTime.DAO.dll.config -------------------------------------------------------------------------------- /WatchExeTime/bin/Debug/WatchExeTime.DAO.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/bin/Debug/WatchExeTime.DAO.pdb -------------------------------------------------------------------------------- /WatchExeTime/bin/Debug/WatchExeTime.Factory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/bin/Debug/WatchExeTime.Factory.dll -------------------------------------------------------------------------------- /WatchExeTime/bin/Debug/WatchExeTime.Factory.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/bin/Debug/WatchExeTime.Factory.pdb -------------------------------------------------------------------------------- /WatchExeTime/bin/Debug/WatchExeTime.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/bin/Debug/WatchExeTime.exe -------------------------------------------------------------------------------- /WatchExeTime/bin/Debug/WatchExeTime.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/bin/Debug/WatchExeTime.exe.config -------------------------------------------------------------------------------- /WatchExeTime/bin/Debug/WatchExeTime.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/bin/Debug/WatchExeTime.pdb -------------------------------------------------------------------------------- /WatchExeTime/obj/Debug/App.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/obj/Debug/App.baml -------------------------------------------------------------------------------- /WatchExeTime/obj/Debug/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/obj/Debug/App.g.cs -------------------------------------------------------------------------------- /WatchExeTime/obj/Debug/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/obj/Debug/App.g.i.cs -------------------------------------------------------------------------------- /WatchExeTime/obj/Debug/Converter/Converter.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/obj/Debug/Converter/Converter.baml -------------------------------------------------------------------------------- /WatchExeTime/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /WatchExeTime/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /WatchExeTime/obj/Debug/GeneratedInternalTypeHelper.g.cs: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /WatchExeTime/obj/Debug/GeneratedInternalTypeHelper.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/obj/Debug/GeneratedInternalTypeHelper.g.i.cs -------------------------------------------------------------------------------- /WatchExeTime/obj/Debug/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/obj/Debug/MainWindow.g.i.cs -------------------------------------------------------------------------------- /WatchExeTime/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WatchExeTime/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WatchExeTime/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WatchExeTime/obj/Debug/Views/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/obj/Debug/Views/MainWindow.baml -------------------------------------------------------------------------------- /WatchExeTime/obj/Debug/Views/MainWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/obj/Debug/Views/MainWindow.g.cs -------------------------------------------------------------------------------- /WatchExeTime/obj/Debug/Views/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/obj/Debug/Views/MainWindow.g.i.cs -------------------------------------------------------------------------------- /WatchExeTime/obj/Debug/WatchExeTime.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/obj/Debug/WatchExeTime.Properties.Resources.resources -------------------------------------------------------------------------------- /WatchExeTime/obj/Debug/WatchExeTime.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WatchExeTime/obj/Debug/WatchExeTime.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 13affbe50fcec2d4a725881203355ce1b1acba15 2 | -------------------------------------------------------------------------------- /WatchExeTime/obj/Debug/WatchExeTime.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/obj/Debug/WatchExeTime.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /WatchExeTime/obj/Debug/WatchExeTime.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/obj/Debug/WatchExeTime.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /WatchExeTime/obj/Debug/WatchExeTime.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/obj/Debug/WatchExeTime.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /WatchExeTime/obj/Debug/WatchExeTime.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/obj/Debug/WatchExeTime.exe -------------------------------------------------------------------------------- /WatchExeTime/obj/Debug/WatchExeTime.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/obj/Debug/WatchExeTime.g.resources -------------------------------------------------------------------------------- /WatchExeTime/obj/Debug/WatchExeTime.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/obj/Debug/WatchExeTime.pdb -------------------------------------------------------------------------------- /WatchExeTime/obj/Debug/WatchExeTime_Content.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/obj/Debug/WatchExeTime_Content.g.i.cs -------------------------------------------------------------------------------- /WatchExeTime/obj/Debug/WatchExeTime_MarkupCompile.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/obj/Debug/WatchExeTime_MarkupCompile.cache -------------------------------------------------------------------------------- /WatchExeTime/obj/Debug/WatchExeTime_MarkupCompile.i.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/obj/Debug/WatchExeTime_MarkupCompile.i.cache -------------------------------------------------------------------------------- /WatchExeTime/obj/Debug/WatchExeTime_MarkupCompile.i.lref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/obj/Debug/WatchExeTime_MarkupCompile.i.lref -------------------------------------------------------------------------------- /WatchExeTime/obj/Debug/WatchExeTime_MarkupCompile.lref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkkk/WatchExeTime/HEAD/WatchExeTime/obj/Debug/WatchExeTime_MarkupCompile.lref --------------------------------------------------------------------------------