feat: Add documentation build and deployment workflow

This commit is contained in:
HueByte
2026-02-19 08:03:19 +01:00
parent 49240026b0
commit eef9059b6a
4 changed files with 70 additions and 52 deletions
+21 -10
View File
@@ -3,18 +3,29 @@
{
"src": [
{
"src": "../src",
"files": [
"EchoHub.Core/EchoHub.Core.csproj",
"EchoHub.Server/EchoHub.Server.csproj",
"EchoHub.Client/EchoHub.Client.csproj"
]
"src": "../src/EchoHub.Core/bin/Release/net10.0",
"files": ["EchoHub.Core.dll"]
}
],
"dest": "api",
"properties": {
"TargetFramework": "net10.0"
}
"dest": "api/core"
},
{
"src": [
{
"src": "../src/EchoHub.Server/bin/Release/net10.0",
"files": ["EchoHub.Server.dll"]
}
],
"dest": "api/server"
},
{
"src": [
{
"src": "../src/EchoHub.Client/bin/Release/net10.0",
"files": ["EchoHub.Client.dll"]
}
],
"dest": "api/client"
}
],
"build": {