实例介绍
FluentFTP已编译,强大的C#ftp类库,包括20、35、40、45版。
【实例截图】
【核心代码】
FluentFTP-master
└── FluentFTP-master
├── appveyor.yml
├── build.bat
├── FluentFTP
│ ├── bin
│ │ └── Debug
│ │ ├── net20
│ │ │ ├── FluentFTP.dll
│ │ │ ├── FluentFTP.pdb
│ │ │ └── FluentFTP.xml
│ │ ├── net35
│ │ │ ├── FluentFTP.dll
│ │ │ ├── FluentFTP.pdb
│ │ │ └── FluentFTP.xml
│ │ ├── net40
│ │ │ ├── FluentFTP.dll
│ │ │ ├── FluentFTP.pdb
│ │ │ └── FluentFTP.xml
│ │ ├── net45
│ │ │ ├── FluentFTP.dll
│ │ │ ├── FluentFTP.pdb
│ │ │ └── FluentFTP.xml
│ │ ├── netstandard1.4
│ │ │ ├── FluentFTP.deps.json
│ │ │ ├── FluentFTP.dll
│ │ │ ├── FluentFTP.pdb
│ │ │ └── FluentFTP.xml
│ │ └── netstandard1.6
│ │ ├── FluentFTP.deps.json
│ │ ├── FluentFTP.dll
│ │ ├── FluentFTP.pdb
│ │ └── FluentFTP.xml
│ ├── Client
│ │ ├── FtpClient_Connection.cs
│ │ ├── FtpClient_Hash.cs
│ │ ├── FtpClient_HighLevel.cs
│ │ ├── FtpClient_Listing.cs
│ │ ├── FtpClient_LowLevel.cs
│ │ ├── FtpClient_Management.cs
│ │ └── IFtpClient.cs
│ ├── FluentFTP.csproj
│ ├── Helpers
│ │ ├── FtpEnums.cs
│ │ ├── FtpEvents.cs
│ │ ├── FtpExceptions.cs
│ │ ├── FtpHash.cs
│ │ ├── FtpListItem.cs
│ │ ├── FtpListParser.cs
│ │ ├── FtpReply.cs
│ │ ├── FtpTrace.cs
│ │ └── IntRef.cs
│ ├── obj
│ │ ├── Debug
│ │ │ ├── net20
│ │ │ │ ├── CoreCompileInputs.cache
│ │ │ │ ├── FluentFTP.AssemblyInfo.cs
│ │ │ │ ├── FluentFTP.csproj.FileListAbsolute.txt
│ │ │ │ ├── FluentFTP.dll
│ │ │ │ └── FluentFTP.pdb
│ │ │ ├── net35
│ │ │ │ ├── CoreCompileInputs.cache
│ │ │ │ ├── FluentFTP.AssemblyInfo.cs
│ │ │ │ ├── FluentFTP.csproj.FileListAbsolute.txt
│ │ │ │ ├── FluentFTP.dll
│ │ │ │ └── FluentFTP.pdb
│ │ │ ├── net40
│ │ │ │ ├── CoreCompileInputs.cache
│ │ │ │ ├── FluentFTP.AssemblyInfo.cs
│ │ │ │ ├── FluentFTP.csproj.FileListAbsolute.txt
│ │ │ │ ├── FluentFTP.dll
│ │ │ │ └── FluentFTP.pdb
│ │ │ ├── net45
│ │ │ │ ├── CoreCompileInputs.cache
│ │ │ │ ├── FluentFTP.AssemblyInfo.cs
│ │ │ │ ├── FluentFTP.csproj.FileListAbsolute.txt
│ │ │ │ ├── FluentFTP.dll
│ │ │ │ ├── FluentFTP.pdb
│ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── netstandard1.4
│ │ │ │ ├── CoreCompileInputs.cache
│ │ │ │ ├── FluentFTP.AssemblyInfo.cs
│ │ │ │ ├── FluentFTP.csproj.FileListAbsolute.txt
│ │ │ │ ├── FluentFTP.dll
│ │ │ │ ├── FluentFTP.pdb
│ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ └── netstandard1.6
│ │ │ ├── CoreCompileInputs.cache
│ │ │ ├── FluentFTP.AssemblyInfo.cs
│ │ │ ├── FluentFTP.csproj.FileListAbsolute.txt
│ │ │ ├── FluentFTP.dll
│ │ │ ├── FluentFTP.pdb
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ ├── FluentFTP.csproj.nuget.g.props
│ │ ├── FluentFTP.csproj.nuget.g.targets
│ │ └── project.assets.json
│ ├── Proxy
│ │ ├── FtpClientHttp11Proxy.cs
│ │ ├── FtpClientProxy.cs
│ │ ├── FtpClientUserAtHostProxy.cs
│ │ └── ProxyInfo.cs
│ ├── restore.bat
│ ├── sn.snk
│ ├── Stream
│ │ ├── FtpDataStream.cs
│ │ ├── FtpSocketStream.cs
│ │ └── FtpSslStream.cs
│ └── Utils
│ ├── FtpExtensions.cs
│ ├── FtpReflection.cs
│ └── NET2Compatibility.cs
├── FluentFTP.Examples
│ ├── BeginConnect.cs
│ ├── BeginCreateDirectory.cs
│ ├── BeginDeleteDirectory.cs
│ ├── BeginDeleteFile.cs
│ ├── BeginDereferenceLink.cs
│ ├── BeginDirectoryExists.cs
│ ├── BeginDisconnect.cs
│ ├── BeginExecute.cs
│ ├── BeginFileExists.cs
│ ├── BeginGetFileSize.cs
│ ├── BeginGetListing.cs
│ ├── BeginGetModifiedTime.cs
│ ├── BeginGetNameListing.cs
│ ├── BeginGetWorkingDirectory.cs
│ ├── BeginOpenAppend.cs
│ ├── BeginOpenRead.cs
│ ├── BeginOpenWrite.cs
│ ├── BeginRename.cs
│ ├── BeginSetWorkingDirectory.cs
│ ├── bin
│ │ └── Debug
│ │ └── net45
│ │ ├── Examples.exe
│ │ ├── Examples.pdb
│ │ ├── Examples.runtimeconfig.dev.json
│ │ ├── Examples.runtimeconfig.json
│ │ ├── FluentFTP.dll
│ │ ├── FluentFTP.pdb
│ │ └── FluentFTP.xml
│ ├── Connect.cs
│ ├── CreateDirectory.cs
│ ├── CustomParser.cs
│ ├── Debug.cs
│ ├── DeleteDirectory.cs
│ ├── DeleteFile.cs
│ ├── DereferenceLink.cs
│ ├── DirectoryExists.cs
│ ├── Examples.csproj
│ ├── Execute.cs
│ ├── Extensions.cs
│ ├── FileExists.cs
│ ├── GetChecksum.cs
│ ├── GetFileSize.cs
│ ├── GetHashAlgorithm.cs
│ ├── GetHash.cs
│ ├── GetListing.cs
│ ├── GetModifiedTime.cs
│ ├── GetNameListing.cs
│ ├── GetWorkingDirectory.cs
│ ├── Main.cs
│ ├── obj
│ │ ├── Debug
│ │ │ └── net45
│ │ │ ├── CoreCompileInputs.cache
│ │ │ ├── Examples.AssemblyInfo.cs
│ │ │ ├── Examples.csproj.FileListAbsolute.txt
│ │ │ ├── Examples.csprojResolveAssemblyReference.cache
│ │ │ ├── Examples.exe
│ │ │ ├── Examples.pdb
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ ├── Examples.csproj.nuget.g.props
│ │ ├── Examples.csproj.nuget.g.targets
│ │ └── project.assets.json
│ ├── OpenAppend.cs
│ ├── OpenAppendURI.cs
│ ├── OpenRead.cs
│ ├── OpenReadURI.cs
│ ├── OpenWrite.cs
│ ├── OpenWriteURI.cs
│ ├── Rename.cs
│ ├── SetEncryptionProtocols.cs
│ ├── SetHashAlgorithm.cs
│ ├── SetWorkingDirectory.cs
│ └── ValidateCertificate.cs
├── FluentFTP.sln
├── FluentFTP.Tests
│ ├── bin
│ │ └── Debug
│ │ ├── net20
│ │ │ ├── FluentFTP.dll
│ │ │ ├── FluentFTP.pdb
│ │ │ ├── FluentFTP.xml
│ │ │ ├── Tests.dll
│ │ │ ├── Tests.pdb
│ │ │ └── xunit.runner.json
│ │ ├── net35
│ │ │ ├── FluentFTP.dll
│ │ │ ├── FluentFTP.pdb
│ │ │ ├── FluentFTP.xml
│ │ │ ├── Tests.dll
│ │ │ ├── Tests.pdb
│ │ │ └── xunit.runner.json
│ │ ├── net40
│ │ │ ├── FluentFTP.dll
│ │ │ ├── FluentFTP.pdb
│ │ │ ├── FluentFTP.xml
│ │ │ ├── Tests.dll
│ │ │ ├── Tests.pdb
│ │ │ └── xunit.runner.json
│ │ ├── net45
│ │ │ ├── FluentFTP.dll
│ │ │ ├── FluentFTP.pdb
│ │ │ ├── FluentFTP.xml
│ │ │ ├── Tests.dll
│ │ │ ├── Tests.pdb
│ │ │ └── xunit.runner.json
│ │ ├── net452
│ │ │ ├── FluentFTP.dll
│ │ │ ├── FluentFTP.pdb
│ │ │ ├── FluentFTP.xml
│ │ │ ├── Tests.dll
│ │ │ ├── Tests.pdb
│ │ │ ├── xunit.abstractions.dll
│ │ │ ├── xunit.assert.dll
│ │ │ ├── xunit.core.dll
│ │ │ ├── xunit.execution.desktop.dll
│ │ │ ├── xunit.runner.json
│ │ │ ├── xunit.runner.reporters.net452.dll
│ │ │ ├── xunit.runner.utility.net452.dll
│ │ │ └── xunit.runner.visualstudio.testadapter.dll
│ │ ├── netcoreapp1.0
│ │ │ ├── FluentFTP.dll
│ │ │ ├── FluentFTP.pdb
│ │ │ ├── FluentFTP.xml
│ │ │ ├── Microsoft.CodeAnalysis.CSharp.dll
│ │ │ ├── Microsoft.CodeAnalysis.dll
│ │ │ ├── Microsoft.CodeAnalysis.VisualBasic.dll
│ │ │ ├── Microsoft.CSharp.dll
│ │ │ ├── Microsoft.DotNet.PlatformAbstractions.dll
│ │ │ ├── Microsoft.Extensions.DependencyModel.dll
│ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.dll
│ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll
│ │ │ ├── Microsoft.TestPlatform.CoreUtilities.dll
│ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll
│ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.dll
│ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll
│ │ │ ├── Microsoft.TestPlatform.PlatformAbstractions.dll
│ │ │ ├── Microsoft.VisualBasic.dll
│ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.dll
│ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll
│ │ │ ├── Microsoft.VisualStudio.TestPlatform.ObjectModel.dll
│ │ │ ├── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ ├── System.AppContext.dll
│ │ │ ├── System.Buffers.dll
│ │ │ ├── System.Collections.Concurrent.dll
│ │ │ ├── System.Collections.Immutable.dll
│ │ │ ├── System.Collections.NonGeneric.dll
│ │ │ ├── System.Collections.Specialized.dll
│ │ │ ├── System.ComponentModel.Annotations.dll
│ │ │ ├── System.ComponentModel.dll
│ │ │ ├── System.ComponentModel.EventBasedAsync.dll
│ │ │ ├── System.ComponentModel.Primitives.dll
│ │ │ ├── System.ComponentModel.TypeConverter.dll
│ │ │ ├── System.Diagnostics.DiagnosticSource.dll
│ │ │ ├── System.Diagnostics.StackTrace.dll
│ │ │ ├── System.Diagnostics.TextWriterTraceListener.dll
│ │ │ ├── System.Dynamic.Runtime.dll
│ │ │ ├── System.IO.Compression.ZipFile.dll
│ │ │ ├── System.IO.FileSystem.Primitives.dll
│ │ │ ├── System.IO.UnmanagedMemoryStream.dll
│ │ │ ├── System.Linq.dll
│ │ │ ├── System.Linq.Expressions.dll
│ │ │ ├── System.Linq.Parallel.dll
│ │ │ ├── System.Linq.Queryable.dll
│ │ │ ├── System.Net.WebHeaderCollection.dll
│ │ │ ├── System.Numerics.Vectors.dll
│ │ │ ├── System.ObjectModel.dll
│ │ │ ├── System.Private.DataContractSerialization.dll
│ │ │ ├── System.Reflection.DispatchProxy.dll
│ │ │ ├── System.Reflection.Emit.dll
│ │ │ ├── System.Reflection.Emit.ILGeneration.dll
│ │ │ ├── System.Reflection.Emit.Lightweight.dll
│ │ │ ├── System.Reflection.Metadata.dll
│ │ │ ├── System.Reflection.TypeExtensions.dll
│ │ │ ├── System.Resources.Reader.dll
│ │ │ ├── System.Runtime.InteropServices.RuntimeInformation.dll
│ │ │ ├── System.Runtime.Loader.dll
│ │ │ ├── System.Runtime.Numerics.dll
│ │ │ ├── System.Runtime.Serialization.Json.dll
│ │ │ ├── System.Runtime.Serialization.Primitives.dll
│ │ │ ├── System.Security.Claims.dll
│ │ │ ├── System.Security.Cryptography.OpenSsl.dll
│ │ │ ├── System.Security.Cryptography.Primitives.dll
│ │ │ ├── System.Security.Principal.dll
│ │ │ ├── System.Text.RegularExpressions.dll
│ │ │ ├── System.Threading.dll
│ │ │ ├── System.Threading.Tasks.Dataflow.dll
│ │ │ ├── System.Threading.Tasks.Extensions.dll
│ │ │ ├── System.Threading.Tasks.Parallel.dll
│ │ │ ├── System.Threading.Thread.dll
│ │ │ ├── System.Threading.ThreadPool.dll
│ │ │ ├── System.Xml.ReaderWriter.dll
│ │ │ ├── System.Xml.XDocument.dll
│ │ │ ├── System.Xml.XmlDocument.dll
│ │ │ ├── System.Xml.XmlSerializer.dll
│ │ │ ├── System.Xml.XPath.dll
│ │ │ ├── System.Xml.XPath.XDocument.dll
│ │ │ ├── System.Xml.XPath.XmlDocument.dll
│ │ │ ├── testhost.dll
│ │ │ ├── Tests.deps.json
│ │ │ ├── Tests.dll
│ │ │ ├── Tests.pdb
│ │ │ ├── Tests.runtimeconfig.dev.json
│ │ │ ├── Tests.runtimeconfig.json
│ │ │ ├── xunit.abstractions.dll
│ │ │ ├── xunit.assert.dll
│ │ │ ├── xunit.core.dll
│ │ │ ├── xunit.execution.dotnet.dll
│ │ │ ├── xunit.runner.json
│ │ │ ├── xunit.runner.reporters.netcoreapp10.dll
│ │ │ ├── xunit.runner.utility.netcoreapp10.dll
│ │ │ └── xunit.runner.visualstudio.dotnetcore.testadapter.dll
│ │ ├── netstandard1.4
│ │ │ ├── FluentFTP.dll
│ │ │ ├── FluentFTP.pdb
│ │ │ ├── FluentFTP.xml
│ │ │ ├── Tests.deps.json
│ │ │ ├── Tests.dll
│ │ │ ├── Tests.pdb
│ │ │ └── xunit.runner.json
│ │ └── netstandard1.6
│ │ ├── FluentFTP.dll
│ │ ├── FluentFTP.pdb
│ │ ├── FluentFTP.xml
│ │ ├── Microsoft.TestPlatform.CommunicationUtilities.dll
│ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll
│ │ ├── Microsoft.TestPlatform.CrossPlatEngine.dll
│ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll
│ │ ├── Microsoft.VisualStudio.TestPlatform.Common.dll
│ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll
│ │ ├── System.AppContext.dll
│ │ ├── System.Buffers.dll
│ │ ├── System.Collections.Concurrent.dll
│ │ ├── System.Diagnostics.DiagnosticSource.dll
│ │ ├── System.IO.Compression.ZipFile.dll
│ │ ├── System.IO.FileSystem.Primitives.dll
│ │ ├── System.Linq.dll
│ │ ├── System.Linq.Expressions.dll
│ │ ├── System.ObjectModel.dll
│ │ ├── System.Reflection.Emit.dll
│ │ ├── System.Reflection.Emit.ILGeneration.dll
│ │ ├── System.Reflection.Emit.Lightweight.dll
│ │ ├── System.Reflection.TypeExtensions.dll
│ │ ├── System.Runtime.InteropServices.RuntimeInformation.dll
│ │ ├── System.Runtime.Numerics.dll
│ │ ├── System.Security.Claims.dll
│ │ ├── System.Security.Cryptography.OpenSsl.dll
│ │ ├── System.Security.Cryptography.Primitives.dll
│ │ ├── System.Security.Principal.dll
│ │ ├── System.Text.RegularExpressions.dll
│ │ ├── System.Threading.dll
│ │ ├── System.Threading.Tasks.Extensions.dll
│ │ ├── System.Threading.Thread.dll
│ │ ├── System.Threading.ThreadPool.dll
│ │ ├── System.Xml.ReaderWriter.dll
│ │ ├── System.Xml.XDocument.dll
│ │ ├── testhost.dll
│ │ ├── Tests.deps.json
│ │ ├── Tests.dll
│ │ ├── Tests.pdb
│ │ ├── xunit.abstractions.dll
│ │ ├── xunit.assert.dll
│ │ ├── xunit.core.dll
│ │ ├── xunit.execution.dotnet.dll
│ │ └── xunit.runner.json
│ ├── obj
│ │ ├── Debug
│ │ │ ├── net20
│ │ │ │ ├── CoreCompileInputs.cache
│ │ │ │ ├── Tests.AssemblyInfo.cs
│ │ │ │ ├── Tests.csproj.FileListAbsolute.txt
│ │ │ │ ├── Tests.csprojResolveAssemblyReference.cache
│ │ │ │ ├── Tests.dll
│ │ │ │ └── Tests.pdb
│ │ │ ├── net35
│ │ │ │ ├── CoreCompileInputs.cache
│ │ │ │ ├── Tests.AssemblyInfo.cs
│ │ │ │ ├── Tests.csproj.FileListAbsolute.txt
│ │ │ │ ├── Tests.csprojResolveAssemblyReference.cache
│ │ │ │ ├── Tests.dll
│ │ │ │ └── Tests.pdb
│ │ │ ├── net40
│ │ │ │ ├── CoreCompileInputs.cache
│ │ │ │ ├── Tests.AssemblyInfo.cs
│ │ │ │ ├── Tests.csproj.FileListAbsolute.txt
│ │ │ │ ├── Tests.csprojResolveAssemblyReference.cache
│ │ │ │ ├── Tests.dll
│ │ │ │ └── Tests.pdb
│ │ │ ├── net45
│ │ │ │ ├── CoreCompileInputs.cache
│ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ │ ├── Tests.AssemblyInfo.cs
│ │ │ │ ├── Tests.csproj.FileListAbsolute.txt
│ │ │ │ ├── Tests.dll
│ │ │ │ └── Tests.pdb
│ │ │ ├── net452
│ │ │ │ ├── CoreCompileInputs.cache
│ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ │ ├── Tests.AssemblyInfo.cs
│ │ │ │ ├── Tests.csproj.FileListAbsolute.txt
│ │ │ │ ├── Tests.csprojResolveAssemblyReference.cache
│ │ │ │ ├── Tests.dll
│ │ │ │ └── Tests.pdb
│ │ │ ├── netcoreapp1.0
│ │ │ │ ├── CoreCompileInputs.cache
│ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ │ ├── Tests.AssemblyInfo.cs
│ │ │ │ ├── Tests.csproj.FileListAbsolute.txt
│ │ │ │ ├── Tests.csprojResolveAssemblyReference.cache
│ │ │ │ ├── Tests.dll
│ │ │ │ ├── Tests.pdb
│ │ │ │ └── Tests.Program.cs
│ │ │ ├── netstandard1.4
│ │ │ │ ├── CoreCompileInputs.cache
│ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ │ ├── Tests.AssemblyInfo.cs
│ │ │ │ ├── Tests.csproj.FileListAbsolute.txt
│ │ │ │ ├── Tests.csprojResolveAssemblyReference.cache
│ │ │ │ ├── Tests.dll
│ │ │ │ └── Tests.pdb
│ │ │ └── netstandard1.6
│ │ │ ├── CoreCompileInputs.cache
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── Tests.AssemblyInfo.cs
│ │ │ ├── Tests.csproj.FileListAbsolute.txt
│ │ │ ├── Tests.csprojResolveAssemblyReference.cache
│ │ │ ├── Tests.dll
│ │ │ └── Tests.pdb
│ │ ├── project.assets.json
│ │ ├── Tests.csproj.nuget.g.props
│ │ └── Tests.csproj.nuget.g.targets
│ ├── Tests.cs
│ ├── Tests.csproj
│ ├── xunit.runner.json
│ └── XUnitShim.cs
├── ISSUE_TEMPLATE.md
├── LICENSE.TXT
└── README.md
51 directories, 417 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论