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
In MVC Controller with read/write actions and API Controller with read/write actions the generated code does not have a new line between using statements and namespace declaration.
Example:
using System;using System.Collections.Generic;using System.Linq;using System.Threading.Tasks;using Microsoft.AspNetCore.Http;using Microsoft.AspNetCore.Mvc;namespace WebApplication1.Controllers
{
The text was updated successfully, but these errors were encountered:
In
MVC Controller with read/write actions
andAPI Controller with read/write actions
the generated code does not have a new line between using statements and namespace declaration.Example:
The text was updated successfully, but these errors were encountered: