forked from AxisKriel/Jist
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Jist.csproj
executable file
·116 lines (116 loc) · 5.43 KB
/
Jist.csproj
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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{EE9A63C2-542D-4D59-8EC3-9D53C894EA54}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Wolfje.Plugins.Jist</RootNamespace>
<AssemblyName>Wolfje.Plugins.Jist</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Externalconsole>true</Externalconsole>
<CustomCommands>
<CustomCommands>
<Command type="Execute" command="../ServerInstance4.2/TerrariaServer.exe" workingdir="../ServerInstance4.2/" externalConsole="True" />
<Command type="BeforeExecute" command="cp bin/Debug/Wolfje.Plugins.Jist.dll ../ServerInstance4.2/" />
</CustomCommands>
</CustomCommands>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="HttpServer">
<HintPath>References\HttpServer.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>References\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="OTAPI">
<HintPath>References\OTAPI.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Collections.Immutable">
<HintPath>packages\Microsoft.Bcl.Immutable.1.1.20-beta\lib\portable-net45+win8\System.Collections.Immutable.dll</HintPath>
</Reference>
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
<Reference Include="TerrariaServer">
<HintPath>References\TerrariaServer.exe</HintPath>
</Reference>
<Reference Include="TShockAPI">
<HintPath>References\TShockAPI.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="ConsoleEx.cs" />
<Compile Include="Extensions\TShockCommand.Extensions.cs" />
<Compile Include="Extensions\TSPlayer.Extensions.cs" />
<Compile Include="Extensions\Type.Extensions.cs" />
<Compile Include="Framework\JavascriptFunctionAttribute.cs" />
<Compile Include="Framework\JavascriptFunctionsNeededEventArgs.cs" />
<Compile Include="Framework\JavascriptProvidesAttribute.cs" />
<Compile Include="Framework\JavscriptFunction.cs" />
<Compile Include="Framework\ScriptContainer.cs" />
<Compile Include="Framework\JistScript.cs" />
<Compile Include="JistEngine.cs" />
<Compile Include="JistPlugin.cs" />
<Compile Include="Framework\PreprocessorDirectives.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="ScriptLog.cs" />
<Compile Include="Extensions\ObjectArray.Extensions.cs" />
<Compile Include="StdLib\std.cs" />
<Compile Include="StdLib\stdhook.cs" />
<Compile Include="StdLib\stdtask.cs" />
<Compile Include="StdLib\tshock.cs" />
<Compile Include="StdLib\Framework\IStdLib.cs" />
<Compile Include="StdLib\Framework\stdlib_base.cs" />
<Compile Include="JistRestInterface.cs" />
<Compile Include="References\Jint\Jint\Native\**\*.cs">
<Link>Runtime\%(RecursiveDir)%(FileName)</Link>
</Compile>
<Compile Include="References\Jint\Jint\Parser\**\*.cs">
<Link>Runtime\%(RecursiveDir)%(FileName)</Link>
</Compile>
<Compile Include="References\Jint\Jint\Runtime\**\*.cs">
<Link>Runtime\%(RecursiveDir)%(FileName)</Link>
</Compile>
<Compile Include="References\Jint\Jint\*.cs">
<Link>Runtime\%(RecursiveDir)%(FileName)</Link>
</Compile>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
<Target Name="AfterBuild">
<Copy SourceFiles="$(TargetPath)" DestinationFolder="$(SolutionDir)\..\ServerInstance4.3\ServerPlugins" />
</Target>
<ItemGroup />
</Project>