-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
clean up - Add *.asmdef to prepare for Unity package creation
- Loading branch information
Showing
10 changed files
with
189 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"name": "UniNetty.Buffers", | ||
"rootNamespace": "UniNetty", | ||
"references": [ | ||
"UniNetty.Common" | ||
], | ||
"includePlatforms": [], | ||
"excludePlatforms": [], | ||
"allowUnsafeCode": false, | ||
"overrideReferences": false, | ||
"precompiledReferences": [], | ||
"autoReferenced": true, | ||
"defineConstraints": [], | ||
"versionDefines": [], | ||
"noEngineReferences": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"name": "UniNetty.Codecs.Http", | ||
"rootNamespace": "UniNetty", | ||
"references": [ | ||
"UniNetty.Common", | ||
"UniNetty.Buffers", | ||
"UniNetty.Codecs", | ||
"UniNetty.Handlers", | ||
"UniNetty.Transport" | ||
], | ||
"includePlatforms": [], | ||
"excludePlatforms": [], | ||
"allowUnsafeCode": false, | ||
"overrideReferences": false, | ||
"precompiledReferences": [], | ||
"autoReferenced": true, | ||
"defineConstraints": [], | ||
"versionDefines": [], | ||
"noEngineReferences": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"name": "UniNetty.Codecs.Mqtt", | ||
"rootNamespace": "UniNetty", | ||
"references": [ | ||
"UniNetty.Common", | ||
"UniNetty.Buffers", | ||
"UniNetty.Codecs", | ||
"UniNetty.Transport" | ||
], | ||
"includePlatforms": [], | ||
"excludePlatforms": [], | ||
"allowUnsafeCode": false, | ||
"overrideReferences": false, | ||
"precompiledReferences": [], | ||
"autoReferenced": true, | ||
"defineConstraints": [], | ||
"versionDefines": [], | ||
"noEngineReferences": false | ||
} |
19 changes: 19 additions & 0 deletions
19
Runtime/UniNetty.Codecs.Redis/UniNetty.Codecs.Redis.asmdef
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"name": "UniNetty.Codecs.Redis", | ||
"rootNamespace": "UniNetty", | ||
"references": [ | ||
"UniNetty.Common", | ||
"UniNetty.Buffers", | ||
"UniNetty.Codecs", | ||
"UniNetty.Transport" | ||
], | ||
"includePlatforms": [], | ||
"excludePlatforms": [], | ||
"allowUnsafeCode": false, | ||
"overrideReferences": false, | ||
"precompiledReferences": [], | ||
"autoReferenced": true, | ||
"defineConstraints": [], | ||
"versionDefines": [], | ||
"noEngineReferences": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"name": "UniNetty.Codecs", | ||
"rootNamespace": "UniNetty", | ||
"references": [ | ||
"UniNetty.Common", | ||
"UniNetty.Buffers", | ||
"UniNetty.Transport" | ||
], | ||
"includePlatforms": [], | ||
"excludePlatforms": [], | ||
"allowUnsafeCode": false, | ||
"overrideReferences": false, | ||
"precompiledReferences": [], | ||
"autoReferenced": true, | ||
"defineConstraints": [], | ||
"versionDefines": [], | ||
"noEngineReferences": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"name": "UniNetty.Common", | ||
"rootNamespace": "UniNetty", | ||
"references": [ | ||
"UniNetty.Logging" | ||
], | ||
"includePlatforms": [], | ||
"excludePlatforms": [], | ||
"allowUnsafeCode": false, | ||
"overrideReferences": false, | ||
"precompiledReferences": [], | ||
"autoReferenced": true, | ||
"defineConstraints": [], | ||
"versionDefines": [], | ||
"noEngineReferences": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"name": "UniNetty.Handlers", | ||
"rootNamespace": "UniNetty", | ||
"references": [ | ||
"UniNetty.Common", | ||
"UniNetty.Buffers", | ||
"UniNetty.Codecs", | ||
"UniNetty.Transport" | ||
], | ||
"includePlatforms": [], | ||
"excludePlatforms": [], | ||
"allowUnsafeCode": false, | ||
"overrideReferences": false, | ||
"precompiledReferences": [], | ||
"autoReferenced": true, | ||
"defineConstraints": [], | ||
"versionDefines": [], | ||
"noEngineReferences": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"name": "UniNetty.Logging", | ||
"rootNamespace": "UniNetty", | ||
"references": [], | ||
"includePlatforms": [], | ||
"excludePlatforms": [], | ||
"allowUnsafeCode": false, | ||
"overrideReferences": false, | ||
"precompiledReferences": [], | ||
"autoReferenced": true, | ||
"defineConstraints": [], | ||
"versionDefines": [], | ||
"noEngineReferences": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"name": "UniNetty.Transport", | ||
"rootNamespace": "UniNetty", | ||
"references": [ | ||
"UniNetty.Common", | ||
"UniNetty.Buffers" | ||
], | ||
"includePlatforms": [], | ||
"excludePlatforms": [], | ||
"allowUnsafeCode": false, | ||
"overrideReferences": false, | ||
"precompiledReferences": [], | ||
"autoReferenced": true, | ||
"defineConstraints": [], | ||
"versionDefines": [], | ||
"noEngineReferences": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"name": "com.ikpil.uninetty", | ||
"displayName": "UniNetty", | ||
"version": "0.0.1", | ||
"unity": "2019.3", | ||
"description": "UniNetty project - a port of DotNetty, an event-driven asynchronous network application framework", | ||
"license": "MIT", | ||
"author": "ikpil <ikpil0@gmail.com> (https://github.com/ikpil/UniNetty)", | ||
"keywords": [ | ||
"netty", | ||
"dotnetty", | ||
"networking", | ||
"protocols", | ||
"server", | ||
"game", | ||
"gamedev", | ||
"csharp", | ||
"unity3d" | ||
], | ||
"repository": { | ||
"url": "https://github.com/ikpil/UniNetty.git", | ||
"type": "git" | ||
}, | ||
"samples": [ | ||
{ | ||
"displayName": "UniNetty Demo", | ||
"description": "This sample demonstrates how to use UniNetty", | ||
"path": "Samples~/UniNettyDemo" | ||
} | ||
] | ||
} |