赖素文
authored
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
using Microsoft.Extensions.DependencyInjection;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
namespace UEditorNetCore
{
public static class UEditorServiceExtension
{
public static UEditorActionCollection AddUEditorService(
this IServiceCollection services,
string configFile="config.json",
bool isCache = false)
{
Config.ConfigFile = configFile;
Config.noCache = !isCache;
var actions = new UEditorActionCollection();
services.AddSingleton(actions);
services.AddSingleton<UEditorService>();
return actions;
}
}
}
|