嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 3 元微信扫码支付:3 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
Quartz,CSVHelper 小例子
.
├── Quartz,CSVHelper 小例子_WindowsFormsApp4.rar
└── WindowsFormsApp4
├── CSVhELPER.rar
├── Quartz_My
│ ├── App.config
│ ├── Form1.Designer.cs
│ ├── Form1.cs
│ ├── Form1.resx
│ ├── MyJob.cs
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Quartz_My.csproj
│ ├── bin
│ │ └── Debug
│ │ ├── Microsoft.Extensions.Logging.Abstractions.dll
│ │ ├── Microsoft.Extensions.Logging.Abstractions.xml
│ │ ├── Quartz.dll
│ │ ├── Quartz.xml
│ │ ├── Quartz_My.exe
│ │ ├── Quartz_My.exe.config
│ │ ├── Quartz_My.pdb
│ │ ├── System.Buffers.dll
│ │ ├── System.Buffers.xml
│ │ ├── System.Diagnostics.DiagnosticSource.dll
│ │ ├── System.Diagnostics.DiagnosticSource.xml
│ │ ├── System.Memory.dll
│ │ ├── System.Memory.xml
│ │ ├── System.Numerics.Vectors.dll
│ │ ├── System.Numerics.Vectors.xml
│ │ ├── System.Runtime.CompilerServices.Unsafe.dll
│ │ └── System.Runtime.CompilerServices.Unsafe.xml
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Quartz_My.Form1.resources
│ │ ├── Quartz_My.Properties.Resources.resources
│ │ ├── Quartz_My.csproj.AssemblyReference.cache
│ │ ├── Quartz_My.csproj.CopyComplete
│ │ ├── Quartz_My.csproj.CoreCompileInputs.cache
│ │ ├── Quartz_My.csproj.FileListAbsolute.txt
│ │ ├── Quartz_My.csproj.GenerateResource.cache
│ │ ├── Quartz_My.csproj.SuggestedBindingRedirects.cache
│ │ ├── Quartz_My.exe
│ │ ├── Quartz_My.pdb
│ │ └── TempPE
│ └── packages.config
├── WindowsFormsApp1
│ ├── App.config
│ ├── CSV_Helper.csproj
│ ├── Form1.Designer.cs
│ ├── Form1.cs
│ ├── Form1.resx
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── WindowsFormsApp1.csproj
│ ├── bin
│ │ └── Debug
│ │ ├── 2023_04_23.csv
│ │ ├── CsvHelper.dll
│ │ ├── CsvHelper.xml
│ │ ├── Microsoft.Bcl.AsyncInterfaces.dll
│ │ ├── Microsoft.Bcl.AsyncInterfaces.xml
│ │ ├── Microsoft.Bcl.HashCode.dll
│ │ ├── Microsoft.Bcl.HashCode.xml
│ │ ├── Microsoft.Extensions.Logging.Abstractions.dll
│ │ ├── Microsoft.Extensions.Logging.Abstractions.xml
│ │ ├── Quartz.dll
│ │ ├── Quartz.xml
│ │ ├── System.Buffers.dll
│ │ ├── System.Buffers.xml
│ │ ├── System.Diagnostics.DiagnosticSource.dll
│ │ ├── System.Diagnostics.DiagnosticSource.xml
│ │ ├── System.Memory.dll
│ │ ├── System.Memory.xml
│ │ ├── System.Numerics.Vectors.dll
│ │ ├── System.Numerics.Vectors.xml
│ │ ├── System.Runtime.CompilerServices.Unsafe.dll
│ │ ├── System.Runtime.CompilerServices.Unsafe.xml
│ │ ├── System.Threading.Tasks.Extensions.dll
│ │ ├── System.Threading.Tasks.Extensions.xml
│ │ ├── WindowsFormsApp1.exe
│ │ ├── WindowsFormsApp1.exe.config
│ │ ├── WindowsFormsApp1.pdb
│ │ ├── file.csv
│ │ └── foo.csv
│ ├── obj
│ │ └── Debug
│ │ ├── CSV_Helper.csproj.AssemblyReference.cache
│ │ ├── CSV_Helper.csproj.CopyComplete
│ │ ├── CSV_Helper.csproj.CoreCompileInputs.cache
│ │ ├── CSV_Helper.csproj.FileListAbsolute.txt
│ │ ├── CSV_Helper.csproj.GenerateResource.cache
│ │ ├── CSV_Helper.csproj.SuggestedBindingRedirects.cache
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── TempPE
│ │ ├── WindowsFormsApp1.Form1.resources
│ │ ├── WindowsFormsApp1.Properties.Resources.resources
│ │ ├── WindowsFormsApp1.csproj.AssemblyReference.cache
│ │ ├── WindowsFormsApp1.csproj.CopyComplete
│ │ ├── WindowsFormsApp1.csproj.CoreCompileInputs.cache
│ │ ├── WindowsFormsApp1.csproj.FileListAbsolute.txt
│ │ ├── WindowsFormsApp1.csproj.GenerateResource.cache
│ │ ├── WindowsFormsApp1.csproj.SuggestedBindingRedirects.cache
│ │ ├── WindowsFormsApp1.exe
│ │ ├── WindowsFormsApp1.exe.config
│ │ └── WindowsFormsApp1.pdb
│ └── packages.config
├── WindowsFormsApp4
│ ├── App.config
│ ├── Form1.Designer.cs
│ ├── Form1.cs
│ ├── Form1.resx
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── WindowsFormsApp4.csproj
│ ├── bin
│ │ └── Debug
│ │ ├── CsvHelper.dll
│ │ ├── CsvHelper.xml
│ │ ├── Microsoft.Bcl.AsyncInterfaces.dll
│ │ ├── Microsoft.Bcl.AsyncInterfaces.xml
│ │ ├── Microsoft.Bcl.HashCode.dll
│ │ ├── Microsoft.Bcl.HashCode.xml
│ │ ├── System.Buffers.dll
│ │ ├── System.Buffers.xml
│ │ ├── System.Memory.dll
│ │ ├── System.Memory.xml
│ │ ├── System.Numerics.Vectors.dll
│ │ ├── System.Numerics.Vectors.xml
│ │ ├── System.Runtime.CompilerServices.Unsafe.dll
│ │ ├── System.Runtime.CompilerServices.Unsafe.xml
│ │ ├── System.Threading.Tasks.Extensions.dll
│ │ ├── System.Threading.Tasks.Extensions.xml
│ │ ├── WindowsFormsApp4.exe
│ │ ├── WindowsFormsApp4.exe.config
│ │ ├── WindowsFormsApp4.pdb
│ │ └── foo.csv
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── TempPE
│ │ ├── WindowsFormsApp4.Form1.resources
│ │ ├── WindowsFormsApp4.Properties.Resources.resources
│ │ ├── WindowsFormsApp4.csproj.AssemblyReference.cache
│ │ ├── WindowsFormsApp4.csproj.CopyComplete
│ │ ├── WindowsFormsApp4.csproj.CoreCompileInputs.cache
│ │ ├── WindowsFormsApp4.csproj.FileListAbsolute.txt
│ │ ├── WindowsFormsApp4.csproj.GenerateResource.cache
│ │ ├── WindowsFormsApp4.csproj.SuggestedBindingRedirects.cache
│ │ ├── WindowsFormsApp4.exe
│ │ └── WindowsFormsApp4.pdb
│ └── packages.config
├── WindowsFormsApp4.sln
└── packages
├── CsvHelper.30.0.1
│ ├── CsvHelper.30.0.1.nupkg
│ ├── Icon.png
│ └── lib
│ ├── net45
│ │ ├── CsvHelper.dll
│ │ └── CsvHelper.xml
│ ├── net47
│ │ ├── CsvHelper.dll
│ │ └── CsvHelper.xml
│ ├── net5.0
│ │ ├── CsvHelper.dll
│ │ └── CsvHelper.xml
│ ├── net6.0
│ │ ├── CsvHelper.dll
│ │ └── CsvHelper.xml
│ ├── netstandard2.0
│ │ ├── CsvHelper.dll
│ │ └── CsvHelper.xml
│ └── netstandard2.1
│ ├── CsvHelper.dll
│ └── CsvHelper.xml
├── Microsoft.Bcl.AsyncInterfaces.1.0.0
│ ├── LICENSE.TXT
│ ├── Microsoft.Bcl.AsyncInterfaces.1.0.0.nupkg
│ ├── THIRD-PARTY-NOTICES.TXT
│ ├── lib
│ │ ├── net461
│ │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll
│ │ │ └── Microsoft.Bcl.AsyncInterfaces.xml
│ │ ├── netstandard2.0
│ │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll
│ │ │ └── Microsoft.Bcl.AsyncInterfaces.xml
│ │ └── netstandard2.1
│ │ ├── Microsoft.Bcl.AsyncInterfaces.dll
│ │ └── Microsoft.Bcl.AsyncInterfaces.xml
│ ├── ref
│ │ ├── net461
│ │ │ └── Microsoft.Bcl.AsyncInterfaces.dll
│ │ ├── netstandard2.0
│ │ │ └── Microsoft.Bcl.AsyncInterfaces.dll
│ │ └── netstandard2.1
│ │ └── Microsoft.Bcl.AsyncInterfaces.dll
│ ├── useSharedDesignerContext.txt
│ └── version.txt
├── Microsoft.Bcl.HashCode.1.0.0
│ ├── LICENSE.TXT
│ ├── Microsoft.Bcl.HashCode.1.0.0.nupkg
│ ├── THIRD-PARTY-NOTICES.TXT
│ ├── lib
│ │ ├── net461
│ │ │ ├── Microsoft.Bcl.HashCode.dll
│ │ │ └── Microsoft.Bcl.HashCode.xml
│ │ ├── netcoreapp2.1
│ │ │ ├── Microsoft.Bcl.HashCode.dll
│ │ │ └── Microsoft.Bcl.HashCode.xml
│ │ ├── netstandard2.0
│ │ │ ├── Microsoft.Bcl.HashCode.dll
│ │ │ └── Microsoft.Bcl.HashCode.xml
│ │ └── netstandard2.1
│ │ ├── Microsoft.Bcl.HashCode.dll
│ │ └── Microsoft.Bcl.HashCode.xml
│ ├── ref
│ │ ├── net461
│ │ │ └── Microsoft.Bcl.HashCode.dll
│ │ ├── netcoreapp2.1
│ │ │ └── Microsoft.Bcl.HashCode.dll
│ │ ├── netstandard2.0
│ │ │ └── Microsoft.Bcl.HashCode.dll
│ │ └── netstandard2.1
│ │ └── Microsoft.Bcl.HashCode.dll
│ ├── useSharedDesignerContext.txt
│ └── version.txt
├── Microsoft.CSharp.4.3.0
│ ├── Microsoft.CSharp.4.3.0.nupkg
│ ├── ThirdPartyNotices.txt
│ ├── dotnet_library_license.txt
│ ├── lib
│ │ ├── MonoAndroid10
│ │ │ └── _._
│ │ ├── MonoTouch10
│ │ │ └── _._
│ │ ├── net45
│ │ │ └── _._
│ │ ├── netcore50
│ │ │ └── Microsoft.CSharp.dll
│ │ ├── netstandard1.3
│ │ │ └── Microsoft.CSharp.dll
│ │ ├── portable-net45 win8 wp8 wpa81
│ │ │ └── _._
│ │ ├── win8
│ │ │ └── _._
│ │ ├── wp80
│ │ │ └── _._
│ │ ├── wpa81
│ │ │ └── _._
│ │ ├── xamarinios10
│ │ │ └── _._
│ │ ├── xamarinmac20
│ │ │ └── _._
│ │ ├── xamarintvos10
│ │ │ └── _._
│ │ └── xamarinwatchos10
│ │ └── _._
│ └── ref
│ ├── MonoAndroid10
│ │ └── _._
│ ├── MonoTouch10
│ │ └── _._
│ ├── net45
│ │ └── _._
│ ├── netcore50
│ │ ├── Microsoft.CSharp.dll
│ │ ├── Microsoft.CSharp.xml
│ │ ├── de
│ │ │ └── Microsoft.CSharp.xml
│ │ ├── es
│ │ │ └── Microsoft.CSharp.xml
│ │ ├── fr
│ │ │ └── Microsoft.CSharp.xml
│ │ ├── it
│ │ │ └── Microsoft.CSharp.xml
│ │ ├── ja
│ │ │ └── Microsoft.CSharp.xml
│ │ ├── ko
│ │ │ └── Microsoft.CSharp.xml
│ │ ├── ru
│ │ │ └── Microsoft.CSharp.xml
│ │ ├── zh-hans
│ │ │ └── Microsoft.CSharp.xml
│ │ └── zh-hant
│ │ └── Microsoft.CSharp.xml
│ ├── netstandard1.0
│ │ ├── Microsoft.CSharp.dll
│ │ ├── Microsoft.CSharp.xml
│ │ ├── de
│ │ │ └── Microsoft.CSharp.xml
│ │ ├── es
│ │ │ └── Microsoft.CSharp.xml
│ │ ├── fr
│ │ │ └── Microsoft.CSharp.xml
│ │ ├── it
│ │ │ └── Microsoft.CSharp.xml
│ │ ├── ja
│ │ │ └── Microsoft.CSharp.xml
│ │ ├── ko
│ │ │ └── Microsoft.CSharp.xml
│ │ ├── ru
│ │ │ └── Microsoft.CSharp.xml
│ │ ├── zh-hans
│ │ │ └── Microsoft.CSharp.xml
│ │ └── zh-hant
│ │ └── Microsoft.CSharp.xml
│ ├── portable-net45 win8 wp8 wpa81
│ │ └── _._
│ ├── win8
│ │ └── _._
│ ├── wp80
│ │ └── _._
│ ├── wpa81
│ │ └── _._
│ ├── xamarinios10
│ │ └── _._
│ ├── xamarinmac20
│ │ └── _._
│ ├── xamarintvos10
│ │ └── _._
│ └── xamarinwatchos10
│ └── _._
├── Microsoft.Extensions.Logging.Abstractions.2.1.1
│ ├── Microsoft.Extensions.Logging.Abstractions.2.1.1.nupkg
│ └── lib
│ └── netstandard2.0
│ ├── Microsoft.Extensions.Logging.Abstractions.dll
│ └── Microsoft.Extensions.Logging.Abstractions.xml
├── Quartz.3.6.2
│ ├── Quartz.3.6.2.nupkg
│ ├── lib
│ │ ├── net462
│ │ │ ├── Quartz.dll
│ │ │ └── Quartz.xml
│ │ ├── net472
│ │ │ ├── Quartz.dll
│ │ │ └── Quartz.xml
│ │ └── netstandard2.0
│ │ ├── Quartz.dll
│ │ └── Quartz.xml
│ └── quartz-logo-small.png
├── System.Buffers.4.4.0
│ ├── LICENSE.TXT
│ ├── System.Buffers.4.4.0.nupkg
│ ├── THIRD-PARTY-NOTICES.TXT
│ ├── lib
│ │ ├── netcoreapp2.0
│ │ │ └── _._
│ │ ├── netstandard1.1
│ │ │ ├── System.Buffers.dll
│ │ │ └── System.Buffers.xml
│ │ └── netstandard2.0
│ │ ├── System.Buffers.dll
│ │ └── System.Buffers.xml
│ ├── ref
│ │ ├── netcoreapp2.0
│ │ │ └── _._
│ │ ├── netstandard1.1
│ │ │ ├── System.Buffers.dll
│ │ │ └── System.Buffers.xml
│ │ └── netstandard2.0
│ │ ├── System.Buffers.dll
│ │ └── System.Buffers.xml
│ ├── useSharedDesignerContext.txt
│ └── version.txt
├── System.Buffers.4.5.1
│ ├── LICENSE.TXT
│ ├── System.Buffers.4.5.1.nupkg
│ ├── THIRD-PARTY-NOTICES.TXT
│ ├── lib
│ │ ├── net461
│ │ │ ├── System.Buffers.dll
│ │ │ └── System.Buffers.xml
│ │ ├── netcoreapp2.0
│ │ │ └── _._
│ │ ├── netstandard1.1
│ │ │ ├── System.Buffers.dll
│ │ │ └── System.Buffers.xml
│ │ ├── netstandard2.0
│ │ │ ├── System.Buffers.dll
│ │ │ └── System.Buffers.xml
│ │ └── uap10.0.16299
│ │ └── _._
│ ├── ref
│ │ ├── net45
│ │ │ ├── System.Buffers.dll
│ │ │ └── System.Buffers.xml
│ │ ├── netcoreapp2.0
│ │ │ └── _._
│ │ ├── netstandard1.1
│ │ │ ├── System.Buffers.dll
│ │ │ └── System.Buffers.xml
│ │ ├── netstandard2.0
│ │ │ ├── System.Buffers.dll
│ │ │ └── System.Buffers.xml
│ │ └── uap10.0.16299
│ │ └── _._
│ ├── useSharedDesignerContext.txt
│ └── version.txt
├── System.Diagnostics.DiagnosticSource.4.7.1
│ ├── Icon.png
│ ├── LICENSE.TXT
│ ├── System.Diagnostics.DiagnosticSource.4.7.1.nupkg
│ ├── THIRD-PARTY-NOTICES.TXT
│ ├── lib
│ │ ├── net45
│ │ │ ├── System.Diagnostics.DiagnosticSource.dll
│ │ │ └── System.Diagnostics.DiagnosticSource.xml
│ │ ├── net46
│ │ │ ├── System.Diagnostics.DiagnosticSource.dll
│ │ │ └── System.Diagnostics.DiagnosticSource.xml
│ │ ├── netstandard1.1
│ │ │ ├── System.Diagnostics.DiagnosticSource.dll
│ │ │ └── System.Diagnostics.DiagnosticSource.xml
│ │ ├── netstandard1.3
│ │ │ ├── System.Diagnostics.DiagnosticSource.dll
│ │ │ └── System.Diagnostics.DiagnosticSource.xml
│ │ └── portable-net45 win8 wpa81
│ │ ├── System.Diagnostics.DiagnosticSource.dll
│ │ └── System.Diagnostics.DiagnosticSource.xml
│ ├── useSharedDesignerContext.txt
│ └── version.txt
├── System.Memory.4.5.0
│ ├── LICENSE.TXT
│ ├── System.Memory.4.5.0.nupkg
│ ├── THIRD-PARTY-NOTICES.TXT
│ ├── lib
│ │ ├── MonoAndroid10
│ │ │ └── _._
│ │ ├── MonoTouch10
│ │ │ └── _._
│ │ ├── netcoreapp2.1
│ │ │ └── _._
│ │ ├── netstandard1.1
│ │ │ ├── System.Memory.dll
│ │ │ └── System.Memory.xml
│ │ ├── netstandard2.0
│ │ │ ├── System.Memory.dll
│ │ │ └── System.Memory.xml
│ │ ├── uap10.0.16300
│ │ │ └── _._
│ │ ├── xamarinios10
│ │ │ └── _._
│ │ ├── xamarinmac20
│ │ │ └── _._
│ │ ├── xamarintvos10
│ │ │ └── _._
│ │ └── xamarinwatchos10
│ │ └── _._
│ ├── ref
│ │ ├── MonoAndroid10
│ │ │ └── _._
│ │ ├── MonoTouch10
│ │ │ └── _._
│ │ ├── netcoreapp2.1
│ │ │ └── _._
│ │ ├── netstandard1.1
│ │ │ ├── System.Memory.dll
│ │ │ └── System.Memory.xml
│ │ ├── netstandard2.0
│ │ │ ├── System.Memory.dll
│ │ │ └── System.Memory.xml
│ │ ├── uap10.0.16300
│ │ │ └── _._
│ │ ├── xamarinios10
│ │ │ └── _._
│ │ ├── xamarinmac20
│ │ │ └── _._
│ │ ├── xamarintvos10
│ │ │ └── _._
│ │ └── xamarinwatchos10
│ │ └── _._
│ ├── useSharedDesignerContext.txt
│ └── version.txt
├── System.Memory.4.5.4
│ ├── LICENSE.TXT
│ ├── System.Memory.4.5.4.nupkg
│ ├── THIRD-PARTY-NOTICES.TXT
│ ├── lib
│ │ ├── net461
│ │ │ ├── System.Memory.dll
│ │ │ └── System.Memory.xml
│ │ ├── netcoreapp2.1
│ │ │ └── _._
│ │ ├── netstandard1.1
│ │ │ ├── System.Memory.dll
│ │ │ └── System.Memory.xml
│ │ └── netstandard2.0
│ │ ├── System.Memory.dll
│ │ └── System.Memory.xml
│ ├── ref
│ │ └── netcoreapp2.1
│ │ └── _._
│ ├── useSharedDesignerContext.txt
│ └── version.txt
├── System.Numerics.Vectors.4.4.0
│ ├── LICENSE.TXT
│ ├── System.Numerics.Vectors.4.4.0.nupkg
│ ├── THIRD-PARTY-NOTICES.TXT
│ ├── lib
│ │ ├── MonoAndroid10
│ │ │ └── _._
│ │ ├── MonoTouch10
│ │ │ └── _._
│ │ ├── net46
│ │ │ ├── System.Numerics.Vectors.dll
│ │ │ └── System.Numerics.Vectors.xml
│ │ ├── netcoreapp2.0
│ │ │ └── _._
│ │ ├── netstandard1.0
│ │ │ ├── System.Numerics.Vectors.dll
│ │ │ └── System.Numerics.Vectors.xml
│ │ ├── netstandard2.0
│ │ │ ├── System.Numerics.Vectors.dll
│ │ │ └── System.Numerics.Vectors.xml
│ │ ├── portable-net45 win8 wp8 wpa81
│ │ │ ├── System.Numerics.Vectors.dll
│ │ │ └── System.Numerics.Vectors.xml
│ │ ├── xamarinios10
│ │ │ └── _._
│ │ ├── xamarinmac20
│ │ │ └── _._
│ │ ├── xamarintvos10
│ │ │ └── _._
│ │ └── xamarinwatchos10
│ │ └── _._
│ ├── ref
│ │ ├── MonoAndroid10
│ │ │ └── _._
│ │ ├── MonoTouch10
│ │ │ └── _._
│ │ ├── net46
│ │ │ ├── System.Numerics.Vectors.dll
│ │ │ └── System.Numerics.Vectors.xml
│ │ ├── netcoreapp2.0
│ │ │ └── _._
│ │ ├── netstandard1.0
│ │ │ ├── System.Numerics.Vectors.dll
│ │ │ └── System.Numerics.Vectors.xml
│ │ ├── netstandard2.0
│ │ │ ├── System.Numerics.Vectors.dll
│ │ │ └── System.Numerics.Vectors.xml
│ │ ├── xamarinios10
│ │ │ └── _._
│ │ ├── xamarinmac20
│ │ │ └── _._
│ │ ├── xamarintvos10
│ │ │ └── _._
│ │ └── xamarinwatchos10
│ │ └── _._
│ ├── useSharedDesignerContext.txt
│ └── version.txt
├── System.Numerics.Vectors.4.5.0
│ ├── LICENSE.TXT
│ ├── System.Numerics.Vectors.4.5.0.nupkg
│ ├── THIRD-PARTY-NOTICES.TXT
│ ├── lib
│ │ ├── MonoAndroid10
│ │ │ └── _._
│ │ ├── MonoTouch10
│ │ │ └── _._
│ │ ├── net46
│ │ │ ├── System.Numerics.Vectors.dll
│ │ │ └── System.Numerics.Vectors.xml
│ │ ├── netcoreapp2.0
│ │ │ └── _._
│ │ ├── netstandard1.0
│ │ │ ├── System.Numerics.Vectors.dll
│ │ │ └── System.Numerics.Vectors.xml
│ │ ├── netstandard2.0
│ │ │ ├── System.Numerics.Vectors.dll
│ │ │ └── System.Numerics.Vectors.xml
│ │ ├── portable-net45 win8 wp8 wpa81
│ │ │ ├── System.Numerics.Vectors.dll
│ │ │ └── System.Numerics.Vectors.xml
│ │ ├── uap10.0.16299
│ │ │ └── _._
│ │ ├── xamarinios10
│ │ │ └── _._
│ │ ├── xamarinmac20
│ │ │ └── _._
│ │ ├── xamarintvos10
│ │ │ └── _._
│ │ └── xamarinwatchos10
│ │ └── _._
│ ├── ref
│ │ ├── MonoAndroid10
│ │ │ └── _._
│ │ ├── MonoTouch10
│ │ │ └── _._
│ │ ├── net45
│ │ │ ├── System.Numerics.Vectors.dll
│ │ │ └── System.Numerics.Vectors.xml
│ │ ├── net46
│ │ │ ├── System.Numerics.Vectors.dll
│ │ │ └── System.Numerics.Vectors.xml
│ │ ├── netcoreapp2.0
│ │ │ └── _._
│ │ ├── netstandard1.0
│ │ │ ├── System.Numerics.Vectors.dll
│ │ │ └── System.Numerics.Vectors.xml
│ │ ├── netstandard2.0
│ │ │ ├── System.Numerics.Vectors.dll
│ │ │ └── System.Numerics.Vectors.xml
│ │ ├── uap10.0.16299
│ │ │ └── _._
│ │ ├── xamarinios10
│ │ │ └── _._
│ │ ├── xamarinmac20
│ │ │ └── _._
│ │ ├── xamarintvos10
│ │ │ └── _._
│ │ └── xamarinwatchos10
│ │ └── _._
│ ├── useSharedDesignerContext.txt
│ └── version.txt
├── System.Runtime.CompilerServices.Unsafe.4.5.2
│ ├── LICENSE.TXT
│ ├── System.Runtime.CompilerServices.Unsafe.4.5.2.nupkg
│ ├── THIRD-PARTY-NOTICES.TXT
│ ├── lib
│ │ ├── netcoreapp2.0
│ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll
│ │ │ └── System.Runtime.CompilerServices.Unsafe.xml
│ │ ├── netstandard1.0
│ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll
│ │ │ └── System.Runtime.CompilerServices.Unsafe.xml
│ │ └── netstandard2.0
│ │ ├── System.Runtime.CompilerServices.Unsafe.dll
│ │ └── System.Runtime.CompilerServices.Unsafe.xml
│ ├── ref
│ │ ├── netstandard1.0
│ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll
│ │ │ └── System.Runtime.CompilerServices.Unsafe.xml
│ │ └── netstandard2.0
│ │ ├── System.Runtime.CompilerServices.Unsafe.dll
│ │ └── System.Runtime.CompilerServices.Unsafe.xml
│ ├── useSharedDesignerContext.txt
│ └── version.txt
├── System.Runtime.CompilerServices.Unsafe.4.5.3
│ ├── LICENSE.TXT
│ ├── System.Runtime.CompilerServices.Unsafe.4.5.3.nupkg
│ ├── THIRD-PARTY-NOTICES.TXT
│ ├── lib
│ │ ├── net461
│ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll
│ │ │ └── System.Runtime.CompilerServices.Unsafe.xml
│ │ ├── netcoreapp2.0
│ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll
│ │ │ └── System.Runtime.CompilerServices.Unsafe.xml
│ │ ├── netstandard1.0
│ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll
│ │ │ └── System.Runtime.CompilerServices.Unsafe.xml
│ │ └── netstandard2.0
│ │ ├── System.Runtime.CompilerServices.Unsafe.dll
│ │ └── System.Runtime.CompilerServices.Unsafe.xml
│ ├── ref
│ │ ├── net461
│ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll
│ │ │ └── System.Runtime.CompilerServices.Unsafe.xml
│ │ ├── netstandard1.0
│ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll
│ │ │ └── System.Runtime.CompilerServices.Unsafe.xml
│ │ └── netstandard2.0
│ │ ├── System.Runtime.CompilerServices.Unsafe.dll
│ │ └── System.Runtime.CompilerServices.Unsafe.xml
│ ├── useSharedDesignerContext.txt
│ └── version.txt
└── System.Threading.Tasks.Extensions.4.5.2
├── LICENSE.TXT
├── System.Threading.Tasks.Extensions.4.5.2.nupkg
├── THIRD-PARTY-NOTICES.TXT
├── lib
│ ├── MonoAndroid10
│ │ └── _._
│ ├── MonoTouch10
│ │ └── _._
│ ├── netcoreapp2.1
│ │ └── _._
│ ├── netstandard1.0
│ │ ├── System.Threading.Tasks.Extensions.dll
│ │ └── System.Threading.Tasks.Extensions.xml
│ ├── netstandard2.0
│ │ ├── System.Threading.Tasks.Extensions.dll
│ │ └── System.Threading.Tasks.Extensions.xml
│ ├── portable-net45 win8 wp8 wpa81
│ │ ├── System.Threading.Tasks.Extensions.dll
│ │ └── System.Threading.Tasks.Extensions.xml
│ ├── xamarinios10
│ │ └── _._
│ ├── xamarinmac20
│ │ └── _._
│ ├── xamarintvos10
│ │ └── _._
│ └── xamarinwatchos10
│ └── _._
├── ref
│ ├── MonoAndroid10
│ │ └── _._
│ ├── MonoTouch10
│ │ └── _._
│ ├── netcoreapp2.1
│ │ └── _._
│ ├── xamarinios10
│ │ └── _._
│ ├── xamarinmac20
│ │ └── _._
│ ├── xamarintvos10
│ │ └── _._
│ └── xamarinwatchos10
│ └── _._
├── useSharedDesignerContext.txt
└── version.txt
255 directories, 477 files