errors can be found here, in the image
I am trying to use some library/packages
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.Rendering;
using Microsoft.CodeAnalysis.CSharp;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Configuration;
using Newtonsoft.Json;
using SimplCommerce.Infrastructure.Data;
using SimplCommerce.Module.Core.Extensions;
using SimplCommerce.Module.Core.Models;
using SimplCommerce.Module.Orders.Services;
using SimplCommerce.Module.Orders.ViewModels;
In these, I am having error
Microsoft.AspNetCore
and some package of internal structure like
SimpleCommerce.Module.Core.
I am newbie in the visual studio and Microsoft tools so how I can resolve errors of using statements and another error I am getting is of C# version. I having C# 4 but the requirements of some of the projects are C# 5 so how I can upgrade version too.
Thank you in advanced