skiasharp/samples/Basic/Web/SkiaSharpSample/Controllers/HomeController.cs
Matthew Leibowitz 12ec572dc9
Check the correct directory for native libraries with ASP.NET (#1483)
* Added an MVC sample
* Check AppDomain.[RelativeSearchPath|BaseDirectory] for native dlls  
  This is used for runtimes that use app domains, such as IIS Express
* packages.config needs an actual nuget restore
2020-09-02 03:46:58 +02:00

12 lines
172 B
C#

using System.Web.Mvc;
namespace SkiaSharpSample.Controllers
{
public class HomeController : Controller
{
public ActionResult Index()
{
return View();
}
}
}