1.bin底下 各静态文件替换 成 现场应用下资源
2.修改忽略文件允许提交。 #[Bb]in/ #[Oo]bj/ #[Dd]ebug/ #[Dd]ebugPublic/ #[Rr]elease/ #[Rr]eleases/ #x64/ #x86/
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,244 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Nancy.Hosting.Self</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Nancy.Hosting.Self.AutomaticUrlReservationCreationFailureException">
|
||||
<summary>
|
||||
Exception for when automatic address reservation creation fails.
|
||||
Provides the user with manual instructions.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Nancy.Hosting.Self.AutomaticUrlReservationCreationFailureException.Message">
|
||||
<summary>
|
||||
Gets a message that describes the current exception.
|
||||
</summary>
|
||||
<returns>
|
||||
The error message that explains the reason for the exception, or an empty string("").
|
||||
</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="T:Nancy.Hosting.Self.HostConfiguration">
|
||||
<summary>
|
||||
Host configuration for the self host.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Nancy.Hosting.Self.HostConfiguration.RewriteLocalhost">
|
||||
<summary>
|
||||
Gets or sets a property that determines if localhost URIs are
|
||||
rewritten to http://+:port/ style URIs to allow for listening on
|
||||
all IP addresses, but requiring either a URL reservation, or admin
|
||||
access.
|
||||
Defaults to true.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Nancy.Hosting.Self.HostConfiguration.UrlReservations">
|
||||
<summary>
|
||||
Configuration around automatically creating URL reservations.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Nancy.Hosting.Self.HostConfiguration.AllowChunkedEncoding">
|
||||
<summary>
|
||||
Gets or sets a property that determines if Transfer-Encoding: Chunked is allowed
|
||||
for the response instead of Content-Length.
|
||||
Defaults to true.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Nancy.Hosting.Self.HostConfiguration.UnhandledExceptionCallback">
|
||||
<summary>
|
||||
Gets or sets a property that provides a callback to be called
|
||||
if there is an unhandled exception in the self host.
|
||||
Note: this will *not* be called for normal Nancy exceptions
|
||||
that are handled by the Nancy handlers.
|
||||
Defaults to writing to debug out.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Nancy.Hosting.Self.HostConfiguration.EnableClientCertificates">
|
||||
<summary>
|
||||
Gets or sets a property that determines whether client certificates
|
||||
are enabled or not.
|
||||
When set to true the self host will request a client certificate if the
|
||||
request is running over SSL.
|
||||
Defaults to false.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Nancy.Hosting.Self.HostConfiguration.AllowAuthorityFallback">
|
||||
<summary>
|
||||
Gets or sets a property determining if base URI matching can fall back to just
|
||||
using Authority (Schema + Host + Port) as base URI if it cannot match anything in
|
||||
the known list. This should only be set to True if you have issues with port forwarding
|
||||
(e.g. on Azure).
|
||||
Defaults to false.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Nancy.Hosting.Self.HostConfiguration.MaximumConnectionCount">
|
||||
<summary>
|
||||
Gets or sets a property determining how many total connections the NancyHost can maintain simultaneously.
|
||||
Higher values mean more connections can be maintained at a slower average response times; while fewer
|
||||
connections will be rejected.
|
||||
Lower values will result in fewer conections, yet will be maintained at a faster average response time.
|
||||
Defaults to the approximate number of processor threads.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Nancy.Hosting.Self.HostConfiguration.ProcessorThreadCount">
|
||||
<summary>
|
||||
Gets approximate processor thread count by halfing the Logical Core count to
|
||||
account for hyper-threading.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Nancy.Hosting.Self.HostConfiguration.#ctor">
|
||||
<summary>
|
||||
Initializes the default configuration.
|
||||
MaximumConnectionCount by default is half of the Logical Core count.
|
||||
</summary>
|
||||
<remarks>
|
||||
If the system running NancyHost is not using hyper-threading you may want to consider
|
||||
supplying your own values for MaximumConnectionCount as the default assumes
|
||||
hyperthreading is being utilized.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="T:Nancy.Hosting.Self.IgnoredHeaders">
|
||||
<summary>
|
||||
A helper class that checks for a header against a list of headers that should be ignored
|
||||
when populating the headers of an <see cref="T:System.Net.HttpListenerResponse"/> object.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Nancy.Hosting.Self.IgnoredHeaders.IsIgnored(System.String)">
|
||||
<summary>
|
||||
Determines if a header is ignored when populating the headers of an
|
||||
<see cref="T:System.Net.HttpListenerResponse"/> object.
|
||||
</summary>
|
||||
<param name="headerName">The name of the header.</param>
|
||||
<returns><c>true</c> if the header is ignored; otherwise, <c>false</c>.</returns>
|
||||
</member>
|
||||
<member name="T:Nancy.Hosting.Self.NancyHost">
|
||||
<summary>
|
||||
Allows to host Nancy server inside any application - console or windows service.
|
||||
</summary>
|
||||
<remarks>
|
||||
NancyHost uses <see cref="T:System.Net.HttpListener"/> internally. Therefore, it requires full .net 4.0 profile (not client profile)
|
||||
to run. <see cref="M:Nancy.Hosting.Self.NancyHost.Start"/> will launch a thread that will listen for requests and then process them. Each request is processed in
|
||||
its own execution thread. NancyHost needs <see cref="T:System.SerializableAttribute"/> in order to be used from another appdomain under
|
||||
mono. Working with AppDomains is necessary if you want to unload the dependencies that come with NancyHost.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="M:Nancy.Hosting.Self.NancyHost.#ctor(System.Uri[])">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Nancy.Hosting.Self.NancyHost"/> class for the specified <paramref name="baseUris"/>.
|
||||
Uses the default configuration
|
||||
</summary>
|
||||
<param name="baseUris">The <see cref="T:System.Uri"/>s that the host will listen to.</param>
|
||||
</member>
|
||||
<member name="M:Nancy.Hosting.Self.NancyHost.#ctor(Nancy.Hosting.Self.HostConfiguration,System.Uri[])">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Nancy.Hosting.Self.NancyHost"/> class for the specified <paramref name="baseUris"/>.
|
||||
Uses the specified configuration.
|
||||
</summary>
|
||||
<param name="baseUris">The <see cref="T:System.Uri"/>s that the host will listen to.</param>
|
||||
<param name="configuration">Configuration to use</param>
|
||||
</member>
|
||||
<member name="M:Nancy.Hosting.Self.NancyHost.#ctor(Nancy.Bootstrapper.INancyBootstrapper,System.Uri[])">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Nancy.Hosting.Self.NancyHost"/> class for the specified <paramref name="baseUris"/>, using
|
||||
the provided <paramref name="bootstrapper"/>.
|
||||
Uses the default configuration
|
||||
</summary>
|
||||
<param name="bootstrapper">The bootstrapper that should be used to handle the request.</param>
|
||||
<param name="baseUris">The <see cref="T:System.Uri"/>s that the host will listen to.</param>
|
||||
</member>
|
||||
<member name="M:Nancy.Hosting.Self.NancyHost.#ctor(Nancy.Bootstrapper.INancyBootstrapper,Nancy.Hosting.Self.HostConfiguration,System.Uri[])">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Nancy.Hosting.Self.NancyHost"/> class for the specified <paramref name="baseUris"/>, using
|
||||
the provided <paramref name="bootstrapper"/>.
|
||||
Uses the specified configuration.
|
||||
</summary>
|
||||
<param name="bootstrapper">The bootstrapper that should be used to handle the request.</param>
|
||||
<param name="configuration">Configuration to use</param>
|
||||
<param name="baseUris">The <see cref="T:System.Uri"/>s that the host will listen to.</param>
|
||||
</member>
|
||||
<member name="M:Nancy.Hosting.Self.NancyHost.#ctor(System.Uri,Nancy.Bootstrapper.INancyBootstrapper)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Nancy.Hosting.Self.NancyHost"/> class for the specified <paramref name="baseUri"/>, using
|
||||
the provided <paramref name="bootstrapper"/>.
|
||||
Uses the default configuration
|
||||
</summary>
|
||||
<param name="baseUri">The <see cref="T:System.Uri"/> that the host will listen to.</param>
|
||||
<param name="bootstrapper">The bootstrapper that should be used to handle the request.</param>
|
||||
</member>
|
||||
<member name="M:Nancy.Hosting.Self.NancyHost.#ctor(System.Uri,Nancy.Bootstrapper.INancyBootstrapper,Nancy.Hosting.Self.HostConfiguration)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Nancy.Hosting.Self.NancyHost"/> class for the specified <paramref name="baseUri"/>, using
|
||||
the provided <paramref name="bootstrapper"/>.
|
||||
Uses the specified configuration.
|
||||
</summary>
|
||||
<param name="baseUri">The <see cref="T:System.Uri"/> that the host will listen to.</param>
|
||||
<param name="bootstrapper">The bootstrapper that should be used to handle the request.</param>
|
||||
<param name="configuration">Configuration to use</param>
|
||||
</member>
|
||||
<member name="M:Nancy.Hosting.Self.NancyHost.Dispose">
|
||||
<summary>
|
||||
Stops the host if it is running.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Nancy.Hosting.Self.NancyHost.Start">
|
||||
<summary>
|
||||
Start listening for incoming requests with the given configuration
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Nancy.Hosting.Self.NancyHost.Stop">
|
||||
<summary>
|
||||
Stop listening for incoming requests.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Nancy.Hosting.Self.NetSh">
|
||||
<summary>
|
||||
Executes NetSh commands
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Nancy.Hosting.Self.NetSh.AddUrlAcl(System.String,System.String)">
|
||||
<summary>
|
||||
Add a url reservation
|
||||
</summary>
|
||||
<param name="url">Url to add</param>
|
||||
<param name="user">User to add the reservation for</param>
|
||||
<returns>True if successful, false otherwise.</returns>
|
||||
</member>
|
||||
<member name="T:Nancy.Hosting.Self.UacHelper">
|
||||
<summary>
|
||||
Helpers for UAC
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Nancy.Hosting.Self.UacHelper.RunElevated(System.String,System.String)">
|
||||
<summary>
|
||||
Run an executable elevated
|
||||
</summary>
|
||||
<param name="file">File to execute</param>
|
||||
<param name="args">Arguments to pass to the executable</param>
|
||||
<returns>True if successful, false otherwise</returns>
|
||||
</member>
|
||||
<member name="T:Nancy.Hosting.Self.UriExtensions">
|
||||
<summary>
|
||||
Extension methods for working with <see cref="T:System.Uri"/> instances.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Nancy.Hosting.Self.UrlReservations">
|
||||
<summary>
|
||||
Configuration for automatic url reservation creation
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Nancy.Hosting.Self.UrlReservations.CreateAutomatically">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether url reservations
|
||||
are automatically created when necessary.
|
||||
Defaults to false.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Nancy.Hosting.Self.UrlReservations.User">
|
||||
<summary>
|
||||
Gets or sets a value for the user to use to create the url reservations for.
|
||||
Defaults to the "Everyone" group.
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
+4
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.0", FrameworkDisplayName = ".NET Framework 4")]
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.5.2", FrameworkDisplayName = "")]
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")]
|
||||
@@ -0,0 +1,130 @@
|
||||
D:\project\PHXN2209008\HxBusiness\bin\Debug\HxBusiness.dll
|
||||
D:\project\PHXN2209008\HxBusiness\bin\Debug\HxBusiness.pdb
|
||||
D:\project\PHXN2209008\HxBusiness\bin\Debug\Nancy.dll
|
||||
D:\project\PHXN2209008\HxBusiness\bin\Debug\Nancy.Hosting.Self.dll
|
||||
D:\project\PHXN2209008\HxBusiness\bin\Debug\Newtonsoft.Json.dll
|
||||
D:\project\PHXN2209008\HxBusiness\bin\Debug\Nancy.xml
|
||||
D:\project\PHXN2209008\HxBusiness\bin\Debug\Nancy.Hosting.Self.xml
|
||||
D:\project\PHXN2209008\HxBusiness\bin\Debug\Newtonsoft.Json.xml
|
||||
D:\project\PHXN2209008\HxBusiness\obj\Debug\HxBusiness.csproj.AssemblyReference.cache
|
||||
D:\project\PHXN2209008\HxBusiness\obj\Debug\HxBusiness.csproj.CoreCompileInputs.cache
|
||||
D:\project\PHXN2209008\HxBusiness\obj\Debug\HxBusiness.csproj.CopyComplete
|
||||
D:\project\PHXN2209008\HxBusiness\obj\Debug\HxBusiness.dll
|
||||
D:\project\PHXN2209008\HxBusiness\obj\Debug\HxBusiness.pdb
|
||||
D:\管控运行程序代码\新增第三方管控的版本\PHXN2209008\HxBusiness\bin\Debug\HxBusiness.dll
|
||||
D:\管控运行程序代码\新增第三方管控的版本\PHXN2209008\HxBusiness\bin\Debug\HxBusiness.pdb
|
||||
D:\管控运行程序代码\新增第三方管控的版本\PHXN2209008\HxBusiness\bin\Debug\Nancy.dll
|
||||
D:\管控运行程序代码\新增第三方管控的版本\PHXN2209008\HxBusiness\bin\Debug\Nancy.Hosting.Self.dll
|
||||
D:\管控运行程序代码\新增第三方管控的版本\PHXN2209008\HxBusiness\bin\Debug\Newtonsoft.Json.dll
|
||||
D:\管控运行程序代码\新增第三方管控的版本\PHXN2209008\HxBusiness\bin\Debug\Nancy.xml
|
||||
D:\管控运行程序代码\新增第三方管控的版本\PHXN2209008\HxBusiness\bin\Debug\Nancy.Hosting.Self.xml
|
||||
D:\管控运行程序代码\新增第三方管控的版本\PHXN2209008\HxBusiness\bin\Debug\Newtonsoft.Json.xml
|
||||
D:\管控运行程序代码\新增第三方管控的版本\PHXN2209008\HxBusiness\obj\Debug\HxBusiness.csprojResolveAssemblyReference.cache
|
||||
D:\管控运行程序代码\新增第三方管控的版本\PHXN2209008\HxBusiness\obj\Debug\HxBusiness.dll
|
||||
D:\管控运行程序代码\新增第三方管控的版本\PHXN2209008\HxBusiness\obj\Debug\HxBusiness.pdb
|
||||
E:\C#\PHXN2209008成都领克总装\总装(251服务器)\PHXN2209008\HxBusiness\bin\Debug\HxBusiness.dll
|
||||
E:\C#\PHXN2209008成都领克总装\总装(251服务器)\PHXN2209008\HxBusiness\bin\Debug\HxBusiness.pdb
|
||||
E:\C#\PHXN2209008成都领克总装\总装(251服务器)\PHXN2209008\HxBusiness\bin\Debug\Nancy.dll
|
||||
E:\C#\PHXN2209008成都领克总装\总装(251服务器)\PHXN2209008\HxBusiness\bin\Debug\Nancy.Hosting.Self.dll
|
||||
E:\C#\PHXN2209008成都领克总装\总装(251服务器)\PHXN2209008\HxBusiness\bin\Debug\Newtonsoft.Json.dll
|
||||
E:\C#\PHXN2209008成都领克总装\总装(251服务器)\PHXN2209008\HxBusiness\bin\Debug\Nancy.xml
|
||||
E:\C#\PHXN2209008成都领克总装\总装(251服务器)\PHXN2209008\HxBusiness\bin\Debug\Nancy.Hosting.Self.xml
|
||||
E:\C#\PHXN2209008成都领克总装\总装(251服务器)\PHXN2209008\HxBusiness\bin\Debug\Newtonsoft.Json.xml
|
||||
E:\C#\PHXN2209008成都领克总装\总装(251服务器)\PHXN2209008\HxBusiness\obj\Debug\HxBusiness.csproj.AssemblyReference.cache
|
||||
E:\C#\PHXN2209008成都领克总装\总装(251服务器)\PHXN2209008\HxBusiness\obj\Debug\HxBusiness.csproj.CoreCompileInputs.cache
|
||||
E:\C#\PHXN2209008成都领克总装\总装(251服务器)\PHXN2209008\HxBusiness\obj\Debug\HxBusiness.csproj.CopyComplete
|
||||
E:\C#\PHXN2209008成都领克总装\总装(251服务器)\PHXN2209008\HxBusiness\obj\Debug\HxBusiness.dll
|
||||
E:\C#\PHXN2209008成都领克总装\总装(251服务器)\PHXN2209008\HxBusiness\obj\Debug\HxBusiness.pdb
|
||||
D:\管控运行程序代码\新增第三方管控的版本\2022-10-11\PHXN2209008\HxBusiness\bin\Debug\HxBusiness.dll
|
||||
D:\管控运行程序代码\新增第三方管控的版本\2022-10-11\PHXN2209008\HxBusiness\bin\Debug\HxBusiness.pdb
|
||||
D:\管控运行程序代码\新增第三方管控的版本\2022-10-11\PHXN2209008\HxBusiness\bin\Debug\Nancy.dll
|
||||
D:\管控运行程序代码\新增第三方管控的版本\2022-10-11\PHXN2209008\HxBusiness\bin\Debug\Nancy.Hosting.Self.dll
|
||||
D:\管控运行程序代码\新增第三方管控的版本\2022-10-11\PHXN2209008\HxBusiness\bin\Debug\Newtonsoft.Json.dll
|
||||
D:\管控运行程序代码\新增第三方管控的版本\2022-10-11\PHXN2209008\HxBusiness\bin\Debug\Nancy.xml
|
||||
D:\管控运行程序代码\新增第三方管控的版本\2022-10-11\PHXN2209008\HxBusiness\bin\Debug\Nancy.Hosting.Self.xml
|
||||
D:\管控运行程序代码\新增第三方管控的版本\2022-10-11\PHXN2209008\HxBusiness\bin\Debug\Newtonsoft.Json.xml
|
||||
D:\管控运行程序代码\新增第三方管控的版本\2022-10-11\PHXN2209008\HxBusiness\obj\Debug\HxBusiness.csprojResolveAssemblyReference.cache
|
||||
D:\管控运行程序代码\新增第三方管控的版本\2022-10-11\PHXN2209008\HxBusiness\obj\Debug\HxBusiness.dll
|
||||
D:\管控运行程序代码\新增第三方管控的版本\2022-10-11\PHXN2209008\HxBusiness\obj\Debug\HxBusiness.pdb
|
||||
D:\C#\成都领克总装\总装(251服务器)\HxBusiness\bin\Debug\HxBusiness.dll
|
||||
D:\C#\成都领克总装\总装(251服务器)\HxBusiness\bin\Debug\HxBusiness.pdb
|
||||
D:\C#\成都领克总装\总装(251服务器)\HxBusiness\bin\Debug\Nancy.dll
|
||||
D:\C#\成都领克总装\总装(251服务器)\HxBusiness\bin\Debug\Nancy.Hosting.Self.dll
|
||||
D:\C#\成都领克总装\总装(251服务器)\HxBusiness\bin\Debug\Newtonsoft.Json.dll
|
||||
D:\C#\成都领克总装\总装(251服务器)\HxBusiness\bin\Debug\Nancy.xml
|
||||
D:\C#\成都领克总装\总装(251服务器)\HxBusiness\bin\Debug\Nancy.Hosting.Self.xml
|
||||
D:\C#\成都领克总装\总装(251服务器)\HxBusiness\bin\Debug\Newtonsoft.Json.xml
|
||||
D:\C#\成都领克总装\总装(251服务器)\HxBusiness\obj\Debug\HxBusiness.csproj.AssemblyReference.cache
|
||||
D:\C#\成都领克总装\总装(251服务器)\HxBusiness\obj\Debug\HxBusiness.csproj.CoreCompileInputs.cache
|
||||
D:\C#\成都领克总装\总装(251服务器)\HxBusiness\obj\Debug\HxBusiness.csproj.CopyComplete
|
||||
D:\C#\成都领克总装\总装(251服务器)\HxBusiness\obj\Debug\HxBusiness.dll
|
||||
D:\C#\成都领克总装\总装(251服务器)\HxBusiness\obj\Debug\HxBusiness.pdb
|
||||
D:\csghx\PHXN2209008\HxBusiness\bin\Debug\HxBusiness.dll
|
||||
D:\csghx\PHXN2209008\HxBusiness\bin\Debug\HxBusiness.pdb
|
||||
D:\csghx\PHXN2209008\HxBusiness\bin\Debug\Nancy.dll
|
||||
D:\csghx\PHXN2209008\HxBusiness\bin\Debug\Nancy.Hosting.Self.dll
|
||||
D:\csghx\PHXN2209008\HxBusiness\bin\Debug\Newtonsoft.Json.dll
|
||||
D:\csghx\PHXN2209008\HxBusiness\bin\Debug\Nancy.xml
|
||||
D:\csghx\PHXN2209008\HxBusiness\bin\Debug\Nancy.Hosting.Self.xml
|
||||
D:\csghx\PHXN2209008\HxBusiness\bin\Debug\Newtonsoft.Json.xml
|
||||
D:\csghx\PHXN2209008\HxBusiness\obj\Debug\HxBusiness.csproj.AssemblyReference.cache
|
||||
D:\csghx\PHXN2209008\HxBusiness\obj\Debug\HxBusiness.csproj.CoreCompileInputs.cache
|
||||
D:\csghx\PHXN2209008\HxBusiness\obj\Debug\HxBusiness.csproj.CopyComplete
|
||||
D:\csghx\PHXN2209008\HxBusiness\obj\Debug\HxBusiness.dll
|
||||
D:\csghx\PHXN2209008\HxBusiness\obj\Debug\HxBusiness.pdb
|
||||
D:\C#Code\DMA\SA17168\代码\SA17168\HxBusiness\bin\Debug\HxBusiness.dll
|
||||
D:\C#Code\DMA\SA17168\代码\SA17168\HxBusiness\bin\Debug\HxBusiness.pdb
|
||||
D:\C#Code\DMA\SA17168\代码\SA17168\HxBusiness\bin\Debug\Newtonsoft.Json.dll
|
||||
D:\C#Code\DMA\SA17168\代码\SA17168\HxBusiness\bin\Debug\Nancy.xml
|
||||
D:\C#Code\DMA\SA17168\代码\SA17168\HxBusiness\bin\Debug\Nancy.Hosting.Self.xml
|
||||
D:\C#Code\DMA\SA17168\代码\SA17168\HxBusiness\obj\Debug\HxBusiness.csproj.AssemblyReference.cache
|
||||
D:\C#Code\DMA\SA17168\代码\SA17168\HxBusiness\obj\Debug\HxBusiness.csproj.CoreCompileInputs.cache
|
||||
D:\C#Code\DMA\SA17168\代码\SA17168\HxBusiness\obj\Debug\HxBusiness.csproj.CopyComplete
|
||||
D:\C#Code\DMA\SA17168\代码\SA17168\HxBusiness\obj\Debug\HxBusiness.dll
|
||||
D:\C#Code\DMA\SA17168\代码\SA17168\HxBusiness\obj\Debug\HxBusiness.pdb
|
||||
D:\C#Code\DMA\新建文件夹\SA17168\HxBusiness\obj\Debug\HxBusiness.csproj.AssemblyReference.cache
|
||||
D:\C#Code\DMA\新建文件夹\SA17168\HxBusiness\obj\Debug\HxBusiness.csproj.CoreCompileInputs.cache
|
||||
D:\C#Code\DMA\新建文件夹\SA17168\HxBusiness\obj\Debug\HxBusiness.dll
|
||||
D:\C#Code\DMA\新建文件夹\SA17168\HxBusiness\obj\Debug\HxBusiness.pdb
|
||||
D:\C#Code\DMA\新建文件夹\SA17168\AGVSystem Ver2.0\bin\Debug\HxBusiness.dll
|
||||
D:\C#Code\DMA\新建文件夹\SA17168\AGVSystem Ver2.0\bin\Debug\HxBusiness.pdb
|
||||
D:\C#Code\DMA\新建文件夹\SA17168\HxBusiness\obj\Debug\HxBusiness.csproj.CopyComplete
|
||||
D:\project\PHXN2308001吉利dma第二基地\SA17168\HxBusiness\bin\Debug\HxBusiness.dll
|
||||
D:\project\PHXN2308001吉利dma第二基地\SA17168\HxBusiness\bin\Debug\HxBusiness.pdb
|
||||
D:\project\PHXN2308001吉利dma第二基地\SA17168\HxBusiness\bin\Debug\Nancy.dll
|
||||
D:\project\PHXN2308001吉利dma第二基地\SA17168\HxBusiness\bin\Debug\Nancy.Hosting.Self.dll
|
||||
D:\project\PHXN2308001吉利dma第二基地\SA17168\HxBusiness\bin\Debug\Newtonsoft.Json.dll
|
||||
D:\project\PHXN2308001吉利dma第二基地\SA17168\HxBusiness\bin\Debug\Nancy.xml
|
||||
D:\project\PHXN2308001吉利dma第二基地\SA17168\HxBusiness\bin\Debug\Nancy.Hosting.Self.xml
|
||||
D:\project\PHXN2308001吉利dma第二基地\SA17168\HxBusiness\bin\Debug\Newtonsoft.Json.xml
|
||||
D:\project\PHXN2308001吉利dma第二基地\SA17168\HxBusiness\obj\Debug\HxBusiness.csproj.AssemblyReference.cache
|
||||
D:\project\PHXN2308001吉利dma第二基地\SA17168\HxBusiness\obj\Debug\HxBusiness.csproj.CoreCompileInputs.cache
|
||||
D:\project\PHXN2308001吉利dma第二基地\SA17168\HxBusiness\obj\Debug\HxBusiness.csproj.CopyComplete
|
||||
D:\project\PHXN2308001吉利dma第二基地\SA17168\HxBusiness\obj\Debug\HxBusiness.dll
|
||||
D:\project\PHXN2308001吉利dma第二基地\SA17168\HxBusiness\obj\Debug\HxBusiness.pdb
|
||||
D:\20230901\SA17168\HxBusiness\obj\Debug\HxBusiness.csproj.CoreCompileInputs.cache
|
||||
D:\20230901\SA17168\HxBusiness\bin\Debug\HxBusiness.dll
|
||||
D:\20230901\SA17168\HxBusiness\bin\Debug\HxBusiness.pdb
|
||||
D:\20230901\SA17168\HxBusiness\bin\Debug\Nancy.dll
|
||||
D:\20230901\SA17168\HxBusiness\bin\Debug\Nancy.Hosting.Self.dll
|
||||
D:\20230901\SA17168\HxBusiness\bin\Debug\Newtonsoft.Json.dll
|
||||
D:\20230901\SA17168\HxBusiness\bin\Debug\Nancy.xml
|
||||
D:\20230901\SA17168\HxBusiness\bin\Debug\Nancy.Hosting.Self.xml
|
||||
D:\20230901\SA17168\HxBusiness\bin\Debug\Newtonsoft.Json.xml
|
||||
D:\20230901\SA17168\HxBusiness\obj\Debug\HxBusiness.csproj.CopyComplete
|
||||
D:\20230901\SA17168\HxBusiness\obj\Debug\HxBusiness.dll
|
||||
D:\20230901\SA17168\HxBusiness\obj\Debug\HxBusiness.pdb
|
||||
D:\20230901\SA17168\HxBusiness\obj\Debug\HxBusiness.csproj.AssemblyReference.cache
|
||||
D:\Item\项目资料\05FG2608061\hx备份\CODE\20230901\SA17168\HxBusiness\bin\Debug\HxBusiness.dll
|
||||
D:\Item\项目资料\05FG2608061\hx备份\CODE\20230901\SA17168\HxBusiness\bin\Debug\HxBusiness.pdb
|
||||
D:\Item\项目资料\05FG2608061\hx备份\CODE\20230901\SA17168\HxBusiness\bin\Debug\Nancy.dll
|
||||
D:\Item\项目资料\05FG2608061\hx备份\CODE\20230901\SA17168\HxBusiness\bin\Debug\Nancy.Hosting.Self.dll
|
||||
D:\Item\项目资料\05FG2608061\hx备份\CODE\20230901\SA17168\HxBusiness\bin\Debug\Newtonsoft.Json.dll
|
||||
D:\Item\项目资料\05FG2608061\hx备份\CODE\20230901\SA17168\HxBusiness\bin\Debug\Nancy.xml
|
||||
D:\Item\项目资料\05FG2608061\hx备份\CODE\20230901\SA17168\HxBusiness\bin\Debug\Nancy.Hosting.Self.xml
|
||||
D:\Item\项目资料\05FG2608061\hx备份\CODE\20230901\SA17168\HxBusiness\bin\Debug\Newtonsoft.Json.xml
|
||||
D:\Item\项目资料\05FG2608061\hx备份\CODE\20230901\SA17168\HxBusiness\obj\Debug\HxBusiness.csproj.AssemblyReference.cache
|
||||
D:\Item\项目资料\05FG2608061\hx备份\CODE\20230901\SA17168\HxBusiness\obj\Debug\HxBusiness.csproj.CoreCompileInputs.cache
|
||||
D:\Item\项目资料\05FG2608061\hx备份\CODE\20230901\SA17168\HxBusiness\obj\Debug\HxBusiness.csproj.Up2Date
|
||||
D:\Item\项目资料\05FG2608061\hx备份\CODE\20230901\SA17168\HxBusiness\obj\Debug\HxBusiness.dll
|
||||
D:\Item\项目资料\05FG2608061\hx备份\CODE\20230901\SA17168\HxBusiness\obj\Debug\HxBusiness.pdb
|
||||
Binary file not shown.
Reference in New Issue
Block a user