Skip to content

Instantly share code, notes, and snippets.

@joecastelo
Created July 22, 2020 20:30
Show Gist options
  • Save joecastelo/6b96fe320facc2d3b21cef58cf221021 to your computer and use it in GitHub Desktop.
Save joecastelo/6b96fe320facc2d3b21cef58cf221021 to your computer and use it in GitHub Desktop.
Point the App to Start by calling the Script
using EsapiEssentials.PluginRunner;
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;
namespace PluginTester
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
private void App_OnStartup(object sender, StartupEventArgs args)
{
ScriptRunner.Run(new Script());
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment