基本信息
源码名称:Quartz.NET通过Windows服务挂载
源码大小:9.79M
文件格式:.rar
开发语言:C#
更新时间:2023-01-14
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 20 元 
   源码介绍

Quartz是JAVA移植的定时任务框架

.
├── QtzNetTest
│   ├── Business
│   │   ├── Business.csproj
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── TaskExecuteHandler.cs
│   │   ├── Tool.cs
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── Business.dll
│   │   │   │   ├── Business.pdb
│   │   │   │   ├── Newtonsoft.Json.dll
│   │   │   │   ├── Newtonsoft.Json.xml
│   │   │   │   ├── Quartz.dll
│   │   │   │   ├── Quartz.pdb
│   │   │   │   └── Quartz.xml
│   │   │   └── Release
│   │   ├── obj
│   │   │   └── Debug
│   │   │       ├── Business.csproj.FileListAbsolute.txt
│   │   │       ├── Business.dll
│   │   │       ├── Business.pdb
│   │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │       ├── TempPE
│   │   │       ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │       ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │       └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   └── packages.config
│   ├── QtzNetTest
│   │   ├── --App.config
│   │   ├── App.config
│   │   ├── Job
│   │   │   ├── TestJob.cs
│   │   │   └── TestOtherJob.cs
│   │   ├── Program.cs
│   │   ├── ProjectInstaller.Designer.cs
│   │   ├── ProjectInstaller.cs
│   │   ├── ProjectInstaller.resx
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── QtzNetTest.csproj
│   │   ├── QtzNetTest.csproj.user
│   │   ├── TestService.Designer.cs
│   │   ├── TestService.cs
│   │   ├── TestService.resx
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── Business.dll
│   │   │   │   ├── Business.pdb
│   │   │   │   ├── Install.bat
│   │   │   │   ├── InstallUtil.InstallLog
│   │   │   │   ├── InstallUtil.exe
│   │   │   │   ├── MoreLinq.dll
│   │   │   │   ├── MoreLinq.pdb
│   │   │   │   ├── MoreLinq.xml
│   │   │   │   ├── Newtonsoft.Json.dll
│   │   │   │   ├── Newtonsoft.Json.xml
│   │   │   │   ├── QtzNetTest.InstallLog
│   │   │   │   ├── QtzNetTest.InstallState
│   │   │   │   ├── QtzNetTest.exe
│   │   │   │   ├── QtzNetTest.exe.config
│   │   │   │   ├── QtzNetTest.pdb
│   │   │   │   ├── QtzNetTest.vshost.exe
│   │   │   │   ├── QtzNetTest.vshost.exe.config
│   │   │   │   ├── QtzNetTest.vshost.exe.manifest
│   │   │   │   ├── Quartz.Jobs.dll
│   │   │   │   ├── Quartz.Jobs.pdb
│   │   │   │   ├── Quartz.Jobs.xml
│   │   │   │   ├── Quartz.Plugins.dll
│   │   │   │   ├── Quartz.Plugins.pdb
│   │   │   │   ├── Quartz.Plugins.xml
│   │   │   │   ├── Quartz.dll
│   │   │   │   ├── Quartz.pdb
│   │   │   │   ├── Quartz.xml
│   │   │   │   ├── System.ValueTuple.dll
│   │   │   │   ├── System.ValueTuple.xml
│   │   │   │   ├── Uninstall.bat
│   │   │   │   └── quartz_jobs.xml
│   │   │   └── Release
│   │   ├── obj
│   │   │   └── Debug
│   │   │       ├── DesignTimeResolveAssemblyReferences.cache
│   │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │       ├── QtzNetTest.ProjectInstaller.resources
│   │   │       ├── QtzNetTest.TestService.resources
│   │   │       ├── QtzNetTest.csproj.FileListAbsolute.txt
│   │   │       ├── QtzNetTest.csproj.GenerateResource.Cache
│   │   │       ├── QtzNetTest.csprojResolveAssemblyReference.cache
│   │   │       ├── QtzNetTest.exe
│   │   │       ├── QtzNetTest.pdb
│   │   │       ├── TempPE
│   │   │       ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │       ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │       └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   ├── packages.config
│   │   └── quartz_jobs.xml
│   ├── QtzNetTest.sln
│   ├── ShowTimerTask
│   │   ├── App.config
│   │   ├── Detial.cs
│   │   ├── Form1.Designer.cs
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Service References
│   │   ├── ShowTimerTask.csproj
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── Business.dll
│   │   │   │   ├── Business.pdb
│   │   │   │   ├── MoreLinq.dll
│   │   │   │   ├── MoreLinq.pdb
│   │   │   │   ├── MoreLinq.xml
│   │   │   │   ├── Newtonsoft.Json.dll
│   │   │   │   ├── Newtonsoft.Json.xml
│   │   │   │   ├── Quartz.dll
│   │   │   │   ├── Quartz.pdb
│   │   │   │   ├── Quartz.xml
│   │   │   │   ├── ShowTimerTask.exe
│   │   │   │   ├── ShowTimerTask.exe.config
│   │   │   │   ├── ShowTimerTask.pdb
│   │   │   │   ├── System.ValueTuple.dll
│   │   │   │   └── System.ValueTuple.xml
│   │   │   └── Release
│   │   ├── obj
│   │   │   └── Debug
│   │   │       ├── DesignTimeResolveAssemblyReferences.cache
│   │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │       ├── ShowTimerTask.Form1.resources
│   │   │       ├── ShowTimerTask.Properties.Resources.resources
│   │   │       ├── ShowTimerTask.csproj.FileListAbsolute.txt
│   │   │       ├── ShowTimerTask.csproj.GenerateResource.Cache
│   │   │       ├── ShowTimerTask.csprojResolveAssemblyReference.cache
│   │   │       ├── ShowTimerTask.exe
│   │   │       ├── ShowTimerTask.pdb
│   │   │       ├── TempPE
│   │   │       ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │       ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │       └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   └── packages.config
│   └── packages
│       ├── Newtonsoft.Json.13.0.2
│       │   ├── LICENSE.md
│       │   ├── Newtonsoft.Json.13.0.2.nupkg
│       │   ├── README.md
│       │   ├── lib
│       │   │   ├── net20
│       │   │   │   ├── Newtonsoft.Json.dll
│       │   │   │   └── Newtonsoft.Json.xml
│       │   │   ├── net35
│       │   │   │   ├── Newtonsoft.Json.dll
│       │   │   │   └── Newtonsoft.Json.xml
│       │   │   ├── net40
│       │   │   │   ├── Newtonsoft.Json.dll
│       │   │   │   └── Newtonsoft.Json.xml
│       │   │   ├── net45
│       │   │   │   ├── Newtonsoft.Json.dll
│       │   │   │   └── Newtonsoft.Json.xml
│       │   │   ├── net6.0
│       │   │   │   ├── Newtonsoft.Json.dll
│       │   │   │   └── Newtonsoft.Json.xml
│       │   │   ├── netstandard1.0
│       │   │   │   ├── Newtonsoft.Json.dll
│       │   │   │   └── Newtonsoft.Json.xml
│       │   │   ├── netstandard1.3
│       │   │   │   ├── Newtonsoft.Json.dll
│       │   │   │   └── Newtonsoft.Json.xml
│       │   │   └── netstandard2.0
│       │   │       ├── Newtonsoft.Json.dll
│       │   │       └── Newtonsoft.Json.xml
│       │   └── packageIcon.png
│       ├── Quartz.3.0.7
│       │   ├── Quartz.3.0.7.nupkg
│       │   └── lib
│       │       ├── net452
│       │       │   ├── Quartz.dll
│       │       │   ├── Quartz.pdb
│       │       │   └── Quartz.xml
│       │       └── netstandard2.0
│       │           ├── Quartz.dll
│       │           ├── Quartz.pdb
│       │           └── Quartz.xml
│       ├── Quartz.Jobs.3.0.7
│       │   ├── Quartz.Jobs.3.0.7.nupkg
│       │   └── lib
│       │       ├── net452
│       │       │   ├── Quartz.Jobs.dll
│       │       │   ├── Quartz.Jobs.pdb
│       │       │   └── Quartz.Jobs.xml
│       │       └── netstandard2.0
│       │           ├── Quartz.Jobs.dll
│       │           ├── Quartz.Jobs.pdb
│       │           └── Quartz.Jobs.xml
│       ├── Quartz.Plugins.3.0.7
│       │   ├── Quartz.Plugins.3.0.7.nupkg
│       │   └── lib
│       │       ├── net452
│       │       │   ├── Quartz.Plugins.dll
│       │       │   ├── Quartz.Plugins.pdb
│       │       │   └── Quartz.Plugins.xml
│       │       └── netstandard2.0
│       │           ├── Quartz.Plugins.dll
│       │           ├── Quartz.Plugins.pdb
│       │           └── Quartz.Plugins.xml
│       ├── System.ValueTuple.4.5.0
│       │   ├── LICENSE.TXT
│       │   ├── System.ValueTuple.4.5.0.nupkg
│       │   ├── THIRD-PARTY-NOTICES.TXT
│       │   ├── lib
│       │   │   ├── MonoAndroid10
│       │   │   │   └── _._
│       │   │   ├── MonoTouch10
│       │   │   │   └── _._
│       │   │   ├── net461
│       │   │   │   ├── System.ValueTuple.dll
│       │   │   │   └── System.ValueTuple.xml
│       │   │   ├── net47
│       │   │   │   ├── System.ValueTuple.dll
│       │   │   │   └── System.ValueTuple.xml
│       │   │   ├── netcoreapp2.0
│       │   │   │   └── _._
│       │   │   ├── netstandard1.0
│       │   │   │   ├── System.ValueTuple.dll
│       │   │   │   └── System.ValueTuple.xml
│       │   │   ├── netstandard2.0
│       │   │   │   └── _._
│       │   │   ├── portable-net40 sl4 win8 wp8
│       │   │   │   ├── System.ValueTuple.dll
│       │   │   │   └── System.ValueTuple.xml
│       │   │   ├── uap10.0.16299
│       │   │   │   └── _._
│       │   │   ├── xamarinios10
│       │   │   │   └── _._
│       │   │   ├── xamarinmac20
│       │   │   │   └── _._
│       │   │   ├── xamarintvos10
│       │   │   │   └── _._
│       │   │   └── xamarinwatchos10
│       │   │       └── _._
│       │   ├── ref
│       │   │   ├── MonoAndroid10
│       │   │   │   └── _._
│       │   │   ├── MonoTouch10
│       │   │   │   └── _._
│       │   │   ├── net461
│       │   │   │   └── System.ValueTuple.dll
│       │   │   ├── net47
│       │   │   │   └── System.ValueTuple.dll
│       │   │   ├── netcoreapp2.0
│       │   │   │   └── _._
│       │   │   ├── netstandard2.0
│       │   │   │   └── _._
│       │   │   ├── portable-net40 sl4 win8 wp8
│       │   │   │   └── System.ValueTuple.dll
│       │   │   ├── uap10.0.16299
│       │   │   │   └── _._
│       │   │   ├── xamarinios10
│       │   │   │   └── _._
│       │   │   ├── xamarinmac20
│       │   │   │   └── _._
│       │   │   ├── xamarintvos10
│       │   │   │   └── _._
│       │   │   └── xamarinwatchos10
│       │   │       └── _._
│       │   ├── useSharedDesignerContext.txt
│       │   └── version.txt
│       └── morelinq.3.3.2
│           ├── COPYING.txt
│           ├── lib
│           │   ├── net451
│           │   │   ├── MoreLinq.dll
│           │   │   ├── MoreLinq.pdb
│           │   │   └── MoreLinq.xml
│           │   ├── netstandard1.0
│           │   │   ├── MoreLinq.dll
│           │   │   ├── MoreLinq.pdb
│           │   │   └── MoreLinq.xml
│           │   └── netstandard2.0
│           │       ├── MoreLinq.dll
│           │       ├── MoreLinq.pdb
│           │       └── MoreLinq.xml
│           └── morelinq.3.3.2.nupkg
├── Quartz.NET通过Windows服务挂载.rar
└── 说明文档
    ├── ReadMe.md
    ├── image-20230114101055706.png
    ├── image-20230114101508888.png
    └── image-20230114101533628.png

84 directories, 210 files