You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[ApiController]publicabstractpartialclassSayHiControllerBase:ControllerBase{internalabstractISayHiSayHiImpl{get;}///<summary>/// say hello///</summary>[HttpPost][Route("/sayHi/hello")][ProducesResponseType((int)HttpStatusCode.OK, Type =typeof(HelloContent))]publicvirtualasyncTask<IActionResult>Hello(HelloContentbody){varresult=await SayHiImpl.HelloAsync(body);return Ok(result);}[HttpPost][Route("/sayHi/world")][ProducesResponseType((int)HttpStatusCode.OK, Type =typeof(WorldResult))]publicvirtualasyncTask<IActionResult>World(){varresult=await SayHiImpl.WorldAsync();return Ok(result);}}}
There are quite a few extra blank lines which produces warnings in the project.
The text was updated successfully, but these errors were encountered:
For instance in this generated code:
There are quite a few extra blank lines which produces warnings in the project.
The text was updated successfully, but these errors were encountered: