Skip to content

Commit 1bbb4e9

Browse files
author
Zack
committed
update to api 116
1 parent e20b573 commit 1bbb4e9

File tree

4 files changed

+76
-71
lines changed

4 files changed

+76
-71
lines changed

RegionFlags.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
namespace RegionFlags
1515
{
16-
[ApiVersion(1,15)]
16+
[ApiVersion(1,16)]
1717
public class RegionFlags : TerrariaPlugin
1818
{
1919
private FlaggedRegionManager regions;

RegionFlags.csproj

Lines changed: 75 additions & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -1,77 +1,82 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<PropertyGroup>
4-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5-
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6-
<ProductVersion>8.0.30703</ProductVersion>
7-
<SchemaVersion>2.0</SchemaVersion>
8-
<ProjectGuid>{3D10F989-C149-47D7-8166-32031FB644CA}</ProjectGuid>
9-
<OutputType>Library</OutputType>
10-
<AppDesignerFolder>Properties</AppDesignerFolder>
11-
<RootNamespace>RegionFlags</RootNamespace>
12-
<AssemblyName>RegionFlags</AssemblyName>
13-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14-
<FileAlignment>512</FileAlignment>
15-
</PropertyGroup>
16-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17-
<DebugSymbols>true</DebugSymbols>
18-
<DebugType>full</DebugType>
19-
<Optimize>false</Optimize>
20-
<OutputPath>bin\Debug\</OutputPath>
21-
<DefineConstants>DEBUG;TRACE</DefineConstants>
22-
<ErrorReport>prompt</ErrorReport>
23-
<WarningLevel>4</WarningLevel>
24-
</PropertyGroup>
25-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26-
<DebugType>pdbonly</DebugType>
27-
<Optimize>true</Optimize>
28-
<OutputPath>bin\Release\</OutputPath>
29-
<DefineConstants>TRACE</DefineConstants>
30-
<ErrorReport>prompt</ErrorReport>
31-
<WarningLevel>4</WarningLevel>
32-
</PropertyGroup>
33-
<ItemGroup>
34-
<Reference Include="Mono.Data.Sqlite">
35-
<HintPath>dll\Mono.Data.Sqlite.dll</HintPath>
36-
</Reference>
37-
<Reference Include="MySql.Data">
38-
<HintPath>dll\MySql.Data.dll</HintPath>
39-
</Reference>
40-
<Reference Include="MySql.Web">
41-
<HintPath>dll\MySql.Web.dll</HintPath>
42-
</Reference>
43-
<Reference Include="System" />
44-
<Reference Include="System.Core" />
45-
<Reference Include="System.Xml.Linq" />
46-
<Reference Include="System.Data.DataSetExtensions" />
47-
<Reference Include="Microsoft.CSharp" />
48-
<Reference Include="System.Data" />
49-
<Reference Include="System.Xml" />
50-
<Reference Include="TerrariaServer">
51-
<HintPath>dll\TerrariaServer.exe</HintPath>
52-
</Reference>
53-
<Reference Include="TShockAPI">
54-
<HintPath>dll\TShockAPI.dll</HintPath>
55-
</Reference>
56-
</ItemGroup>
57-
<ItemGroup>
58-
<Compile Include="FlaggedRegion.cs" />
59-
<Compile Include="FlaggedRegionManager.cs" />
60-
<Compile Include="Flags.cs" />
61-
<Compile Include="NPCHooks.cs" />
62-
<Compile Include="PlayerHooks.cs" />
63-
<Compile Include="PositionQueue.cs" />
64-
<Compile Include="RegionFlags.cs" />
65-
<Compile Include="Properties\AssemblyInfo.cs" />
66-
<Compile Include="RegionPlayer.cs" />
67-
<Compile Include="Utilities.cs" />
68-
</ItemGroup>
69-
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6+
<ProductVersion>8.0.30703</ProductVersion>
7+
<SchemaVersion>2.0</SchemaVersion>
8+
<ProjectGuid>{3D10F989-C149-47D7-8166-32031FB644CA}</ProjectGuid>
9+
<OutputType>Library</OutputType>
10+
<AppDesignerFolder>Properties</AppDesignerFolder>
11+
<RootNamespace>RegionFlags</RootNamespace>
12+
<AssemblyName>RegionFlags</AssemblyName>
13+
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14+
<FileAlignment>512</FileAlignment>
15+
</PropertyGroup>
16+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17+
<DebugSymbols>true</DebugSymbols>
18+
<DebugType>full</DebugType>
19+
<Optimize>false</Optimize>
20+
<OutputPath>bin\Debug\</OutputPath>
21+
<DefineConstants>DEBUG;TRACE</DefineConstants>
22+
<ErrorReport>prompt</ErrorReport>
23+
<WarningLevel>4</WarningLevel>
24+
<PlatformTarget>x86</PlatformTarget>
25+
</PropertyGroup>
26+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27+
<DebugType>pdbonly</DebugType>
28+
<Optimize>true</Optimize>
29+
<OutputPath>bin\Release\</OutputPath>
30+
<DefineConstants>TRACE</DefineConstants>
31+
<ErrorReport>prompt</ErrorReport>
32+
<WarningLevel>4</WarningLevel>
33+
<PlatformTarget>x86</PlatformTarget>
34+
</PropertyGroup>
35+
<ItemGroup>
36+
<Reference Include="Mono.Data.Sqlite">
37+
<HintPath>dll\Mono.Data.Sqlite.dll</HintPath>
38+
</Reference>
39+
<Reference Include="MySql.Data">
40+
<HintPath>dll\MySql.Data.dll</HintPath>
41+
</Reference>
42+
<Reference Include="MySql.Web">
43+
<HintPath>dll\MySql.Web.dll</HintPath>
44+
</Reference>
45+
<Reference Include="System" />
46+
<Reference Include="System.Core" />
47+
<Reference Include="System.Xml.Linq" />
48+
<Reference Include="System.Data.DataSetExtensions" />
49+
<Reference Include="Microsoft.CSharp" />
50+
<Reference Include="System.Data" />
51+
<Reference Include="System.Xml" />
52+
<Reference Include="TerrariaServer">
53+
<HintPath>dll\TerrariaServer.exe</HintPath>
54+
</Reference>
55+
<Reference Include="TShockAPI">
56+
<HintPath>dll\TShockAPI.dll</HintPath>
57+
</Reference>
58+
</ItemGroup>
59+
<ItemGroup>
60+
<Compile Include="FlaggedRegion.cs" />
61+
<Compile Include="FlaggedRegionManager.cs" />
62+
<Compile Include="Flags.cs" />
63+
<Compile Include="NPCHooks.cs" />
64+
<Compile Include="PlayerHooks.cs" />
65+
<Compile Include="PositionQueue.cs" />
66+
<Compile Include="RegionFlags.cs" />
67+
<Compile Include="Properties\AssemblyInfo.cs" />
68+
<Compile Include="RegionPlayer.cs" />
69+
<Compile Include="Utilities.cs" />
70+
</ItemGroup>
71+
<ItemGroup>
72+
<WCFMetadata Include="Service References\" />
73+
</ItemGroup>
74+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
7075
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
7176
Other similar extension points exist, see Microsoft.Common.targets.
7277
<Target Name="BeforeBuild">
7378
</Target>
7479
<Target Name="AfterBuild">
7580
</Target>
76-
-->
81+
-->
7782
</Project>

dll/TShockAPI.dll

24 KB
Binary file not shown.

dll/TerrariaServer.exe

405 KB
Binary file not shown.

0 commit comments

Comments
 (0)