Skip to content

Commit

Permalink
#700 Set package info (#705)
Browse files Browse the repository at this point in the history
* #700 Set package info

* Additional repo url
  • Loading branch information
thompson-tomo authored Apr 14, 2024
1 parent 7ecab9e commit 7f5d67a
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
1 change: 1 addition & 0 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
</PropertyGroup>
<PropertyGroup>
<PackageProjectUrl>https://github.com/kerryjiang/supersocket</PackageProjectUrl>
<RepositoryUrl>https://github.com/kerryjiang/SuperSocket.git</RepositoryUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
Expand Down
3 changes: 2 additions & 1 deletion legacy/SuperSocket.Engine.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@
<version>$version$</version>
<authors>Kerry Jiang</authors>
<owners>Kerry Jiang</owners>
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl>
<license type="expression">APACHE-2.0</license>
<projectUrl>http://www.supersocket.net/</projectUrl>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<description>SuperSocket is a light weight, cross platform and extensible socket server application framework. You can use it to build a server side socket application (like game server, GPS server, industrial control system, data acquisition server etc) easily without thinking about how to use socket, how to maintain the socket connections and how socket works.</description>
<tags>SuperSocket, Socket Server, .Net Socket Server Framework</tags>
<repository type="git" url="https://github.com/kerryjiang/SuperSocket.git" />
<dependencies>
<dependency id="log4net" version="2.0.3" />
<dependency id="SuperSocket" version="$version$" />
Expand Down
3 changes: 2 additions & 1 deletion legacy/SuperSocket.WebSocket.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@
<version>$version$</version>
<authors>Kerry Jiang</authors>
<owners>Kerry Jiang</owners>
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl>
<license type="expression">APACHE-2.0</license>
<projectUrl>http://www.supersocket.net/</projectUrl>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<description>WebSocket server implementation base on SuperSocket. It is just the same codebase with SuperWebSocket but has different assembly name and namespace.</description>
<tags>SuperSocket, WebSocket, SuperWebSocket</tags>
<repository type="git" url="https://github.com/kerryjiang/SuperSocket.git" />
<dependencies>
<dependency id="log4net" version="2.0.3" />
<dependency id="SuperSocket" version="$version$" />
Expand Down
3 changes: 2 additions & 1 deletion legacy/SuperSocket.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@
<version>$version$</version>
<authors>Kerry Jiang</authors>
<owners>Kerry Jiang</owners>
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl>
<license type="expression">APACHE-2.0</license>
<projectUrl>http://www.supersocket.net/</projectUrl>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<description>SuperSocket is a light weight, cross platform and extensible socket server application framework. You can use it to build a server side socket application (like game server, GPS server, industrial control system, data acquisition server etc) easily without thinking about how to use socket, how to maintain the socket connections and how socket works.</description>
<tags>SuperSocket, Socket Server, .Net Socket Server Framework</tags>
<repository type="git" url="https://github.com/kerryjiang/SuperSocket.git" />
<dependencies>
<dependency id="log4net" version="2.0.3" />
</dependencies>
Expand Down
5 changes: 3 additions & 2 deletions pkg/SuperSocket.nuspec
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
<?xml version="1.0"?>
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>SuperSocket</id>
<title>SuperSocket</title>
<version>$version$</version>
<authors>Kerry Jiang</authors>
<owners>Kerry Jiang and other contributors</owners>
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl>
<license type="expression">APACHE-2.0</license>
<projectUrl>http://www.supersocket.net/</projectUrl>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<description>SuperSocket is a light weight, cross platform and extensible socket server application framework. You can use it to build a server side socket application (like game server, GPS server, industrial control system, data acquisition server etc) easily without thinking about how to use socket, how to maintain the socket connections and how socket works.</description>
<tags>SuperSocket, Socket Server, .Net Socket Server Framework</tags>
<repository type="git" url="https://github.com/kerryjiang/SuperSocket.git" />
<dependencies>
<group targetFramework=".NETStandard2.1">
<dependency id="SuperSocket.Server" version="$version$" exclude="Build,Analyzers" />
Expand Down

0 comments on commit 7f5d67a

Please sign in to comment.