chore(work): 调整目录结构

This commit is contained in:
Fu Diwei
2024-01-31 13:36:08 +08:00
committed by RHQYZ
parent bf39f8dd83
commit 5eed125d49
28 changed files with 29 additions and 29 deletions

View File

@@ -2,7 +2,7 @@ using System;
using System.Threading;
using System.Threading.Tasks;
namespace SKIT.FlurlHttpClient.Wechat.Work.SDK.Finance
namespace SKIT.FlurlHttpClient.Wechat.Work.ExtendedSDK.Finance
{
public interface IWechatWorkFinanceClient : IDisposable
{

View File

@@ -1,7 +1,7 @@
using System;
using System.Runtime.InteropServices;
namespace SKIT.FlurlHttpClient.Wechat.Work.SDK.Finance.InteropServices
namespace SKIT.FlurlHttpClient.Wechat.Work.ExtendedSDK.Finance.InteropServices
{
internal static partial class FinanceDllLinuxPInvoker
{

View File

@@ -2,7 +2,7 @@ using System;
using System.Runtime.InteropServices;
using System.Security;
namespace SKIT.FlurlHttpClient.Wechat.Work.SDK.Finance.InteropServices
namespace SKIT.FlurlHttpClient.Wechat.Work.ExtendedSDK.Finance.InteropServices
{
internal static partial class FinanceDllWindowsPInvoker
{

View File

@@ -2,7 +2,7 @@ using System;
using System.Runtime.InteropServices;
using System.Text;
namespace SKIT.FlurlHttpClient.Wechat.Work.SDK.Finance.InteropServices
namespace SKIT.FlurlHttpClient.Wechat.Work.ExtendedSDK.Finance.InteropServices
{
internal static class MarshalerHelper
{

View File

@@ -1,6 +1,6 @@
using System.Collections.Generic;
namespace SKIT.FlurlHttpClient.Wechat.Work.SDK.Finance.Models.Abstractions
namespace SKIT.FlurlHttpClient.Wechat.Work.ExtendedSDK.Finance.Models.Abstractions
{
public abstract class ChatMessageBase
{

View File

@@ -1,4 +1,4 @@
namespace SKIT.FlurlHttpClient.Wechat.Work.SDK.Finance.Models
namespace SKIT.FlurlHttpClient.Wechat.Work.ExtendedSDK.Finance.Models
{
/// <summary>
/// <para>表示会话内容存档之解密会话记录数据接口的请求。</para>

View File

@@ -1,6 +1,6 @@
using System.Collections.Generic;
namespace SKIT.FlurlHttpClient.Wechat.Work.SDK.Finance.Models
namespace SKIT.FlurlHttpClient.Wechat.Work.ExtendedSDK.Finance.Models
{
/// <summary>
/// <para>表示会话内容存档之解密会话记录数据接口的响应。</para>

View File

@@ -1,4 +1,4 @@
namespace SKIT.FlurlHttpClient.Wechat.Work.SDK.Finance.Models
namespace SKIT.FlurlHttpClient.Wechat.Work.ExtendedSDK.Finance.Models
{
/// <summary>
/// <para>表示会话内容存档之获取会话记录数据接口的请求。</para>

View File

@@ -1,4 +1,4 @@
namespace SKIT.FlurlHttpClient.Wechat.Work.SDK.Finance.Models
namespace SKIT.FlurlHttpClient.Wechat.Work.ExtendedSDK.Finance.Models
{
/// <summary>
/// <para>表示会话内容存档之获取会话记录数据接口的响应。</para>

View File

@@ -1,4 +1,4 @@
namespace SKIT.FlurlHttpClient.Wechat.Work.SDK.Finance.Models
namespace SKIT.FlurlHttpClient.Wechat.Work.ExtendedSDK.Finance.Models
{
/// <summary>
/// <para>表示会话内容存档之获取媒体文件分片接口的请求。</para>

View File

@@ -1,6 +1,6 @@
using System.Linq;
namespace SKIT.FlurlHttpClient.Wechat.Work.SDK.Finance.Models
namespace SKIT.FlurlHttpClient.Wechat.Work.ExtendedSDK.Finance.Models
{
/// <summary>
/// <para>表示会话内容存档之获取媒体文件分片接口的响应。</para>

View File

@@ -1,4 +1,4 @@
namespace SKIT.FlurlHttpClient.Wechat.Work.SDK.Finance.Models
namespace SKIT.FlurlHttpClient.Wechat.Work.ExtendedSDK.Finance.Models
{
/// <summary>
/// <para>表示会话内容存档之获取媒体文件接口的请求。</para>

View File

@@ -1,6 +1,6 @@
using System.Linq;
namespace SKIT.FlurlHttpClient.Wechat.Work.SDK.Finance.Models
namespace SKIT.FlurlHttpClient.Wechat.Work.ExtendedSDK.Finance.Models
{
/// <summary>
/// <para>表示会话内容存档之获取媒体文件接口的响应。</para>

View File

@@ -1,6 +1,6 @@
using System;
namespace SKIT.FlurlHttpClient.Wechat.Work.SDK.Finance.Settings
namespace SKIT.FlurlHttpClient.Wechat.Work.ExtendedSDK.Finance.Settings
{
public class Credentials
{

View File

@@ -1,6 +1,6 @@
using System;
namespace SKIT.FlurlHttpClient.Wechat.Work.SDK.Finance.Settings
namespace SKIT.FlurlHttpClient.Wechat.Work.ExtendedSDK.Finance.Settings
{
/// <summary>
/// 表示一个企业微信会话内容存档的消息加解密密钥实体。

View File

@@ -2,7 +2,7 @@ using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
namespace SKIT.FlurlHttpClient.Wechat.Work.SDK.Finance.Settings
namespace SKIT.FlurlHttpClient.Wechat.Work.ExtendedSDK.Finance.Settings
{
/// <summary>
/// 企业微信会话内容存档的消息加解密密钥管理器接口。

View File

@@ -5,9 +5,9 @@ using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace SKIT.FlurlHttpClient.Wechat.Work.SDK.Finance
namespace SKIT.FlurlHttpClient.Wechat.Work.ExtendedSDK.Finance
{
using SKIT.FlurlHttpClient.Wechat.Work.SDK.Finance.InteropServices;
using SKIT.FlurlHttpClient.Wechat.Work.ExtendedSDK.Finance.InteropServices;
/// <summary>
/// 一个企业微信会话内容存档 API HTTP 客户端。

View File

@@ -1,4 +1,4 @@
namespace SKIT.FlurlHttpClient.Wechat.Work.SDK.Finance
namespace SKIT.FlurlHttpClient.Wechat.Work.ExtendedSDK.Finance
{
/// <summary>
/// 一个用于构造 <see cref="WechatWorkFinanceClient"/> 时使用的配置项。

View File

@@ -1,6 +1,6 @@
using System;
namespace SKIT.FlurlHttpClient.Wechat.Work.SDK.Finance
namespace SKIT.FlurlHttpClient.Wechat.Work.ExtendedSDK.Finance
{
/// <summary>
/// 表示企业微信会话内容存档 API 请求的基类。

View File

@@ -1,7 +1,6 @@
using System;
using System.Collections.Generic;
namespace SKIT.FlurlHttpClient.Wechat.Work.SDK.Finance
namespace SKIT.FlurlHttpClient.Wechat.Work.ExtendedSDK.Finance
{
/// <summary>
/// 表示企业微信会话内容存档 API 响应的基类。

View File

@@ -36,7 +36,7 @@
</ItemGroup>
<ItemGroup>
<ContentWithTargetPath Include="SDK\Finance\_Libs\*.*">
<ContentWithTargetPath Include="ExtendedSDK\Finance\_Libs\*.*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<TargetPath>%(Filename)%(Extension)</TargetPath>
</ContentWithTargetPath>