添加项目文件。

This commit is contained in:
GG Z
2026-02-23 16:55:06 +08:00
parent 7a0bf44207
commit 37217063b9
117 changed files with 4885 additions and 0 deletions

23
ScriptPad/App.xaml.cs Normal file
View File

@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
using System.Windows;
namespace ScriptPad
{
/// <summary>
/// App.xaml 的交互逻辑
/// </summary>
public partial class App : Application
{
private void Application_Startup(object sender, StartupEventArgs e)
{
ScriptGlobals.InitAssemblies = new List<System.Reflection.Assembly>();
ScriptGlobals.InitAssemblies.Add(typeof(object).Assembly);
}
}
}