* 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
12 lines
172 B
C#
12 lines
172 B
C#
using System.Web.Mvc;
|
|
|
|
namespace SkiaSharpSample.Controllers
|
|
{
|
|
public class HomeController : Controller
|
|
{
|
|
public ActionResult Index()
|
|
{
|
|
return View();
|
|
}
|
|
}
|
|
}
|