mirror of
https://github.com/RRQM/TouchSocket.git
synced 2025-12-19 01:46:44 +08:00
72 lines
3.2 KiB
XML
72 lines
3.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
||
<PropertyGroup>
|
||
<TargetFrameworks>net45;netcoreapp3.1;netstandard2.0</TargetFrameworks>
|
||
<ApplicationIcon>RRQM.ico</ApplicationIcon>
|
||
<SignAssembly>true</SignAssembly>
|
||
<AssemblyOriginatorKeyFile>RRQM.pfx</AssemblyOriginatorKeyFile>
|
||
<Version>1.0.1.1</Version>
|
||
<Company>若汝棋茗</Company>
|
||
<Copyright>Copyright © 2021 若汝棋茗</Copyright>
|
||
<Description>介绍:这是一个扩展于RRQMSocket.RPC的JsonRpc组件,可以通过该组件直接创建JsonRpc服务解析器,让Web端、移动端可以跨语言调用RPC函数。功能支持JsonRpc全功能。
|
||
|
||
Introduction:This is a JSONRPC component that extends RRQMSocket.rpc. You can create a JSONRPC service parser directly through this component, so that the Web side and mobile side can call RPC functions across languages. Features support JSONRPC full functionality.
|
||
|
||
更新说明:
|
||
修复:参数计数不匹配时返回异常。
|
||
|
||
Demo:https://gitee.com/RRQM_OS/RRQMBox
|
||
API:https://gitee.com/RRQM_OS/RRQM/wikis/pages </Description>
|
||
<PackageProjectUrl>https://gitee.com/dotnetchina/RRQMSocket</PackageProjectUrl>
|
||
<PackageIconUrl></PackageIconUrl>
|
||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||
<PackageIcon>RRQM.png</PackageIcon>
|
||
<Authors>若汝棋茗</Authors>
|
||
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
|
||
<PackageLicenseFile>LICENSE</PackageLicenseFile>
|
||
<PackageTags>JsonRpc;Socket;IOCP</PackageTags>
|
||
</PropertyGroup>
|
||
|
||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'">
|
||
<DocumentationFile>bin\Debug\netstandard2.0\RRQMSocket.JsonRpc.xml</DocumentationFile>
|
||
<OutputPath></OutputPath>
|
||
</PropertyGroup>
|
||
|
||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
|
||
<DocumentationFile>bin\Release\netstandard2.0\RRQMSocket.JsonRpc.xml</DocumentationFile>
|
||
<OutputPath></OutputPath>
|
||
</PropertyGroup>
|
||
|
||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net45|AnyCPU'">
|
||
<DocumentationFile>bin\Debug\net45\RRQMSocket.JsonRpc.xml</DocumentationFile>
|
||
<OutputPath></OutputPath>
|
||
</PropertyGroup>
|
||
|
||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net45|AnyCPU'">
|
||
<DocumentationFile>bin\Release\net45\RRQMSocket.JsonRpc.xml</DocumentationFile>
|
||
<OutputPath></OutputPath>
|
||
</PropertyGroup>
|
||
|
||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netcoreapp3.1|AnyCPU'">
|
||
<DocumentationFile>bin\Debug\netcoreapp3.1\RRQMSocket.JsonRpc.xml</DocumentationFile>
|
||
<OutputPath></OutputPath>
|
||
</PropertyGroup>
|
||
|
||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netcoreapp3.1|AnyCPU'">
|
||
<DocumentationFile>bin\Release\netcoreapp3.1\RRQMSocket.JsonRpc.xml</DocumentationFile>
|
||
<OutputPath></OutputPath>
|
||
</PropertyGroup>
|
||
<ItemGroup>
|
||
<None Include="LICENSE">
|
||
<Pack>True</Pack>
|
||
<PackagePath></PackagePath>
|
||
</None>
|
||
<None Include="RRQM.png">
|
||
<Pack>True</Pack>
|
||
<PackagePath></PackagePath>
|
||
</None>
|
||
</ItemGroup>
|
||
<ItemGroup>
|
||
<PackageReference Include="RRQMSocket.RPC" Version="1.0.9" />
|
||
</ItemGroup>
|
||
</Project>
|