From a7d4f352b7421ef7e02ecbb4dee1521a1ec4613f Mon Sep 17 00:00:00 2001 From: AJ Isaacs Date: Tue, 28 Oct 2025 18:18:45 -0400 Subject: [PATCH] build(webapi): update publish artifacts and switch to port 5001 Adjust published appsettings.json to listen on http://localhost:5001 and refresh static web assets + DLL after rebuild. --- .../publish/RoslynBridge.WebApi.dll | Bin 59392 -> 59392 bytes ...idge.WebApi.staticwebassets.endpoints.json | 6 +++++- RoslynBridge.WebApi/publish/appsettings.json | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/RoslynBridge.WebApi/publish/RoslynBridge.WebApi.dll b/RoslynBridge.WebApi/publish/RoslynBridge.WebApi.dll index 30a4d305318edd8ed44ea520f1d586b63385e718..eadb52ea9119c592d490c160ac8f3d0f26724037 100644 GIT binary patch delta 358 zcmZp;z}#?wc|r%vT;7T2C-%rN)=gX)&Zsk)k+Gh!WpX2sOxVoG^nI_uhO4b^E9c(z zX)jo_b?IHE9h*50Y!%W=PE1L)Oi4~QF*iy{NwcspHa0gfOEph1Gc+(WNK8z%G&VL$ zF||x&U{GUZP@F73RcSNtWo=GgQBj=^21efiCI$wE+R3hW;6fks*a4mBA87 zCIg`fgE@l{ke$Mi#$W-2#z1J!V8CDoRAUYlHDfRY^9+Fc62baFDnL3+fo3FbKK;;^ Qg{i@Mv*42tj1vvm0M(*vxBvhE delta 350 zcmZp;z}#?wc|r$E-KpH)6MJMBt0t}tXH=ie$XL(VFu4&(MsH?h`o33yar!Fb!UhMQ zl_!Ob>Z_kF+{|%ctB{_7fvJhHg_*g5L0XELS(>SdNs2{^k%gtPk(p_liDim`p}BEV zYHAt-gBl});$-=$N}G8vYjg5W3Q(EBz~~#m#K6E%G1>KwJS)R*Aaio&9cB5GzbE~l zx8k2?le=n3$1d}9MxcbVRZM7cYEf~Fqu1mOcVdj7YEC*q)qu>CtCBqM$+w(sOe z{vgw!AQQw^n5Zbm7(F@kuIA+0yAvlGux#eLm&fdHz+k{&%3#7^%wWM_#$XQQ88DOn|%;plU;)E@OryhEyO-+kE<=EelhP^=82* K9~dVZumJ$T%xgmc diff --git a/RoslynBridge.WebApi/publish/RoslynBridge.WebApi.staticwebassets.endpoints.json b/RoslynBridge.WebApi/publish/RoslynBridge.WebApi.staticwebassets.endpoints.json index 21da96b..8403e6b 100644 --- a/RoslynBridge.WebApi/publish/RoslynBridge.WebApi.staticwebassets.endpoints.json +++ b/RoslynBridge.WebApi/publish/RoslynBridge.WebApi.staticwebassets.endpoints.json @@ -1 +1,5 @@ -{"Version":1,"ManifestType":"Publish","Endpoints":[]} \ No newline at end of file +{ + "Version": 1, + "ManifestType": "Publish", + "Endpoints": [] +} \ No newline at end of file diff --git a/RoslynBridge.WebApi/publish/appsettings.json b/RoslynBridge.WebApi/publish/appsettings.json index c152051..bc6705a 100644 --- a/RoslynBridge.WebApi/publish/appsettings.json +++ b/RoslynBridge.WebApi/publish/appsettings.json @@ -26,7 +26,7 @@ "Kestrel": { "Endpoints": { "Http": { - "Url": "http://localhost:5000" + "Url": "http://localhost:5001" } } }