WebSocket组件降低Newtonsoft.Json对Net版本依赖
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -263,3 +263,4 @@ __pycache__/
|
|||||||
/Windows/CS/Framework4.0/Toprie/Output
|
/Windows/CS/Framework4.0/Toprie/Output
|
||||||
/Windows/CS/Framework4.0/Utils/Output
|
/Windows/CS/Framework4.0/Utils/Output
|
||||||
/Windows/CS/Framework4.0/Toprie/testDevice
|
/Windows/CS/Framework4.0/Toprie/testDevice
|
||||||
|
/Windows/CS/Framework4.0/CubeLib/Output
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
@@ -38,8 +38,8 @@
|
|||||||
</ApplicationIcon>
|
</ApplicationIcon>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
<Reference Include="Newtonsoft.Json, Version=8.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\Newtonsoft.Json.13.0.4\lib\net40\Newtonsoft.Json.dll</HintPath>
|
<HintPath>..\packages\Newtonsoft.Json.8.0.3\lib\net40\Newtonsoft.Json.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="System" />
|
<Reference Include="System" />
|
||||||
<Reference Include="System.Core" />
|
<Reference Include="System.Core" />
|
||||||
|
|||||||
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
|||||||
// 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
|
// 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
|
||||||
//通过使用 "*",如下所示:
|
//通过使用 "*",如下所示:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("1.0.1.0")]
|
[assembly: AssemblyVersion("1.0.1.1")]
|
||||||
[assembly: AssemblyFileVersion("1.0.1.0")]
|
[assembly: AssemblyFileVersion("1.0.1.1")]
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<packages>
|
<packages>
|
||||||
<package id="Newtonsoft.Json" version="13.0.4" targetFramework="net40" />
|
<package id="Newtonsoft.Json" version="8.0.3" targetFramework="net40" />
|
||||||
</packages>
|
</packages>
|
||||||
@@ -40,7 +40,7 @@ $licenseUrl = "https://opensource.org/licenses/MIT"
|
|||||||
$iconFileName = "CubeLib.ico"
|
$iconFileName = "CubeLib.ico"
|
||||||
$iconSourcePath = Join-Path $scriptDir $iconFileName
|
$iconSourcePath = Join-Path $scriptDir $iconFileName
|
||||||
$iconUrl = "http://47.111.181.23:8081/repository/gradle/main/CubeLib.ico"
|
$iconUrl = "http://47.111.181.23:8081/repository/gradle/main/CubeLib.ico"
|
||||||
$releaseNotes = "WebSocket组件初始版本,支持客户端和服务器功能"
|
$releaseNotes = "WebSocket组件降低Newtonsoft.Json对Net版本依赖"
|
||||||
|
|
||||||
# 其他设置
|
# 其他设置
|
||||||
$nupkgFileName = "$packageId.$version.nupkg"
|
$nupkgFileName = "$packageId.$version.nupkg"
|
||||||
|
|||||||
Reference in New Issue
Block a user