-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPluton.Core.csproj
More file actions
120 lines (120 loc) · 5.34 KB
/
Copy pathPluton.Core.csproj
File metadata and controls
120 lines (120 loc) · 5.34 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{CF3338F9-D5E5-4A92-A9C3-49B17A60EDA0}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>Pluton.Core</RootNamespace>
<AssemblyName>Pluton.Core</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<LangVersion>6</LangVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<LangVersion>6</LangVersion>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="IronPython.Deps">
<HintPath>references\IronPython.Deps.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Jint">
<HintPath>references\Jint.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="System.Reactive">
<HintPath>references\System.Reactive.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="UnityEngine">
<HintPath>references\UnityEngine.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="MoonSharp.Interpreter">
<HintPath>references\MoonSharp.Interpreter.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="System.Threading">
<HintPath>references\System.Threading.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="TimedEvent.cs" />
<Compile Include="ISingleton.cs" />
<Compile Include="Singleton.cs" />
<Compile Include="CountedInstance.cs" />
<Compile Include="StringExtensions.cs" />
<Compile Include="Stopper.cs" />
<Compile Include="SingletonEx.cs" />
<Compile Include="ReflectionExtensions.cs" />
<Compile Include="IniParser.cs" />
<Compile Include="Logger.cs" />
<Compile Include="Hooks.cs" />
<Compile Include="Dump.cs" />
<Compile Include="DirectoryConfig.cs" />
<Compile Include="DataStore.cs" />
<Compile Include="CoreConfig.cs" />
<Compile Include="Config.cs" />
<Compile Include="Bootstrap.cs" />
<Compile Include="Serialize\ISerializable.cs" />
<Compile Include="Serialize\UnityEngineExtensions.cs" />
<Compile Include="Serialize\SerializedVector3.cs" />
<Compile Include="Serialize\SerializedQuaternion.cs" />
<Compile Include="PluginLoaders\BasePlugin.cs" />
<Compile Include="PluginLoaders\CSharpPlugin.cs" />
<Compile Include="PluginLoaders\CSPlugin.cs" />
<Compile Include="PluginLoaders\CSSPlugin.cs" />
<Compile Include="PluginLoaders\IPlugin.cs" />
<Compile Include="PluginLoaders\IPluginLoader.cs" />
<Compile Include="PluginLoaders\JSPlugin.cs" />
<Compile Include="PluginLoaders\LUAPlugin.cs" />
<Compile Include="PluginLoaders\PluginLoader.cs" />
<Compile Include="PluginLoaders\PYPlugin.cs" />
<Compile Include="CryptoExtensions.cs" />
<Compile Include="Util.cs" />
<Compile Include="PluginLoaders\PluginLoader.Generic.cs" />
<Compile Include="PluginLoaders\PluginLoaderHelper.cs" />
<Compile Include="PluginLoaders\PluginWatcher.cs" />
<Compile Include="Pre.cs" />
<Compile Include="Event.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<Folder Include="Serialize\" />
<Folder Include="PluginLoaders\" />
</ItemGroup>
<ProjectExtensions>
<MonoDevelop>
<Properties>
<Policies>
<DotNetNamingPolicy DirectoryNamespaceAssociation="PrefixedHierarchical" ResourceNamePolicy="FileFormatDefault" />
<TextStylePolicy FileWidth="120" TabsToSpaces="False" EolMarker="Unix" inheritsSet="VisualStudio" inheritsScope="text/plain" scope="text/x-csharp" />
<CSharpFormattingPolicy IndentSwitchBody="True" BeforeMethodDeclarationParentheses="False" BeforeMethodCallParentheses="False" BeforeConstructorDeclarationParentheses="False" NewLineBeforeConstructorInitializerColon="NewLine" NewLineAfterConstructorInitializerColon="SameLine" BeforeDelegateDeclarationParentheses="False" NewParentheses="False" SpacesBeforeBrackets="False" inheritsSet="Mono" inheritsScope="text/x-csharp" scope="text/x-csharp" />
<TextStylePolicy FileWidth="120" TabsToSpaces="False" inheritsSet="VisualStudio" inheritsScope="text/plain" scope="text/plain" />
</Policies>
</Properties>
</MonoDevelop>
</ProjectExtensions>
<ItemGroup>
<None Include="PluginLoaders\PHPPlugin.cs" />
</ItemGroup>
</Project>