-
Just a general question. Im struggling to find any infomation on how to configure the port my server runs on. My code: public APIServer()
{
Port = 3000;
rawServer = RestServerBuilder.UseDefaults().Build();
RouteManager.RegisterToRouter(rawServer.Router);
rawServer.UseCorsPolicy();
rawServer.Start();
} |
Beta Was this translation helpful? Give feedback.
Answered by
ghost
Jan 12, 2021
Replies: 1 comment 1 reply
-
Nevermind :D I found out i could add Prefixes. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nevermind :D I found out i could add Prefixes.