How to Write New Plugin Project in VS-2022 Using C#?

Open VS-2022 or any VS version –> Select the Create a New Project option. -> Select ASP.NET web application – Click Next.

If the project has already been created, then follow the below steps from the class library.

New Project

Configuring

Click Create – Select Empty Project. – Project will create – it looks like.

Empty Project

Then right-click on the solution - Demo_1 project – Add – New project.

Demo

Search Class Library – select C# project- Click next.

Select C# project

Set the path location the same as where the parent project is.

Set path location

The new project will be added to the same project.

Same project

Now design your project by adding related folders – Model, Plugins, Webservices for Request & Response like.

Response

Start writing related code.

Happy Coding!