Files
RobustToolbox/SS14.Server/SS14.Server.csproj
Acruid 3a5ea35c0b Raycasting + Turret AI (#532)
* Ray -> Box intersection works.

* Turret AI finished.

* Turret Works :D

* Light masks can now be rotated.

* Shoddy angle MoveTowards works.

* Shoddy Vector2 MoveTowards works.

* And pretty broken Quaternion version..

* Slept on it, rotation works good enough now.

* Fixed nuget dependencies.

* Moved AimShootLifeProcessor.cs to content.
2018-03-09 21:48:34 +01:00

198 lines
9.8 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="12.0">
<PropertyGroup>
<ProjectType>Local</ProjectType>
<ProductVersion>12.0.31101.0</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{B04AAE71-0000-0000-0000-000000000000}</ProjectGuid>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ApplicationIcon />
<AssemblyKeyContainerName />
<AssemblyName>SS14.Server</AssemblyName>
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
<OutputType>Exe</OutputType>
<AppDesignerFolder />
<RootNamespace>SS14.Server</RootNamespace>
<StartupObject />
<StartArguments />
<FileUpgradeFlags />
<TargetFrameworkProfile />
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<NoWarn>0649</NoWarn>
<AllowedReferenceRelatedFileExtensions>.pdb;.dll.config</AllowedReferenceRelatedFileExtensions>
<BaseAddress>285212672</BaseAddress>
<AllowUnsafeBlocks>False</AllowUnsafeBlocks>
<ConfigurationOverrideFile />
<DocumentationFile />
<FileAlignment>4096</FileAlignment>
<OutputPath>$(SolutionDir)bin\Server\</OutputPath>
<RegisterForComInterop>False</RegisterForComInterop>
<RemoveIntegerChecks>False</RemoveIntegerChecks>
<TreatWarningsAsErrors>False</TreatWarningsAsErrors>
<NoStdLib>False</NoStdLib>
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<DefineConstants>TRACE;DEBUG</DefineConstants>
<DebugSymbols>True</DebugSymbols>
<Optimize>False</Optimize>
<PlatformTarget>x86</PlatformTarget>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<DefineConstants>TRACE;RELEASE</DefineConstants>
<DebugSymbols>False</DebugSymbols>
<Optimize>True</Optimize>
<PlatformTarget>x86</PlatformTarget>
<Prefer32Bit>true</Prefer32Bit>
<AllowedReferenceRelatedFileExtensions>.dll.config</AllowedReferenceRelatedFileExtensions>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
<DefineConstants>TRACE;DEBUG</DefineConstants>
<DebugSymbols>True</DebugSymbols>
<Optimize>False</Optimize>
<PlatformTarget>x64</PlatformTarget>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
<DefineConstants>TRACE;RELEASE</DefineConstants>
<Optimize>True</Optimize>
<PlatformTarget>x64</PlatformTarget>
<Prefer32Bit>false</Prefer32Bit>
<AllowedReferenceRelatedFileExtensions>.dll.config</AllowedReferenceRelatedFileExtensions>
</PropertyGroup>
<ItemGroup>
<Reference Include="System">
<Name>System</Name>
<Private>False</Private>
</Reference>
<Reference Include="System.Core">
<Name>System.Core</Name>
<Private>False</Private>
</Reference>
<Reference Include="System.Xml">
<Name>System.Xml</Name>
<Private>False</Private>
</Reference>
<Reference Include="System.Xml.Linq">
<Name>System.Xml.Linq</Name>
<Private>False</Private>
</Reference>
<Reference Include="CommandLine">
<HintPath>$(SolutionDir)packages\CommandLineParser.1.9.71\lib\net45\CommandLine.dll</HintPath>
</Reference>
<Reference Include="YamlDotNet, Version=4.3.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>$(SolutionDir)packages\YamlDotNet.4.3.0\lib\net45\YamlDotNet.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SS14.Shared\SS14.Shared.csproj">
<Name>SS14.Shared</Name>
<Project>{0529F740-0000-0000-0000-000000000000}</Project>
<Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package>
<Private>True</Private>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Compile Include="AI\AiLogicProcessor.cs" />
<Compile Include="AI\AiLogicProcessorAttribute.cs" />
<Compile Include="ClientConsoleHost\Commands\ChatCommands.cs" />
<Compile Include="ClientConsoleHost\Commands\MapCommands.cs" />
<Compile Include="ClientConsoleHost\Commands\PlayerCommands.cs" />
<Compile Include="ClientConsoleHost\Commands\RoundCommands.cs" />
<Compile Include="ClientConsoleHost\Commands\SysCommands.cs" />
<Compile Include="GameObjects\Components\Container\Container.cs" />
<Compile Include="GameObjects\Components\Container\ContainerManagerComponent.cs" />
<Compile Include="GameObjects\Components\Mover\AiControllerComponent.cs" />
<Compile Include="GameObjects\EntitySystems\AiSystem.cs" />
<Compile Include="Interfaces\GameObjects\IServerTransformComponent.cs" />
<Compile Include="Interfaces\Log\IServerLogManager.cs" />
<Compile Include="Interfaces\Maps\IMapLoader.cs" />
<Compile Include="Log\ServerLogManager.cs" />
<Compile Include="Maps\MapLoader.cs" />
<Compile Include="Maps\YamlGridSerializer.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Reflection\ServerReflectionManager.cs" />
<Compile Include="BaseServer.cs" />
<Compile Include="ServerConsole\Commands\MapCommands.cs" />
<Compile Include="Signals.cs" />
<Content Include="server_config.toml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<None Include="app.config" />
<Content Include="..\Resources\EngineContentPack.zip">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\Resources\ResourcePack.zip">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<None Include="packages.config" />
<Compile Include="CommandLineArgs.cs" />
<Compile Include="Chat\ChatManager.cs" />
<Compile Include="ClientConsoleHost\Commands\ListCommands.cs" />
<Compile Include="ClientConsoleHost\ClientConsoleHost.cs" />
<Compile Include="ClientConsoleHost\Commands\DrugsCommand.cs" />
<Compile Include="GameObjects\ServerComponentFactory.cs" />
<Compile Include="GameObjects\ServerEntityManager.cs" />
<Compile Include="GameObjects\ServerEntityNetworkManager.cs" />
<Compile Include="GameObjects\Components\ClickableComponent.cs" />
<Compile Include="GameObjects\Components\Actor\BasicActorComponent.cs" />
<Compile Include="GameObjects\Components\Collidable\CollidableComponent.cs" />
<Compile Include="GameObjects\Components\BoundingBox\BoundingBoxComponent.cs" />
<Compile Include="GameObjects\Components\Input\KeyBindingInputComponent.cs" />
<Compile Include="GameObjects\Components\Light\PointLightComponent.cs" />
<Compile Include="GameObjects\Components\Mover\PlayerInputMoverComponent.cs" />
<Compile Include="GameObjects\Components\Particles\ParticleSystemComponent.cs" />
<Compile Include="GameObjects\Components\Physics\PhysicsComponent.cs" />
<Compile Include="GameObjects\Components\Renderable\AnimatedSpriteComponent.cs" />
<Compile Include="GameObjects\Components\Renderable\SpriteComponent.cs" />
<Compile Include="GameObjects\Components\Renderable\WearableAnimatedSpriteComponent.cs" />
<Compile Include="GameObjects\Components\Transform\TransformComponent.cs" />
<Compile Include="GameObjects\EntitySystems\InputSystem.cs" />
<Compile Include="GameObjects\EntitySystems\ParticleSystem.cs" />
<Compile Include="GameObjects\EntitySystems\PhysicsSystem.cs" />
<Compile Include="GameState\GameStateManager.cs" />
<Compile Include="Interfaces\ICommandLineArgs.cs" />
<Compile Include="Interfaces\IBaseServer.cs" />
<Compile Include="Interfaces\Chat\IChatCommand.cs" />
<Compile Include="Interfaces\Chat\IChatManager.cs" />
<Compile Include="Interfaces\ClientConsoleHost\IClientCommand.cs" />
<Compile Include="Interfaces\ClientConsoleHost\IClientConsoleHost.cs" />
<Compile Include="Interfaces\GameObjects\IActorComponent.cs" />
<Compile Include="Interfaces\GameObjects\IMoverComponent.cs" />
<Compile Include="Interfaces\GameObjects\IServerEntityManager.cs" />
<Compile Include="Interfaces\GameObjects\IParticleSystemComponent.cs" />
<Compile Include="Interfaces\GameObjects\IRenderableComponent.cs" />
<Compile Include="Interfaces\GameObjects\ISpriteRenderableComponent.cs" />
<Compile Include="Interfaces\GameState\IGameStateManager.cs" />
<Compile Include="Interfaces\Placement\IPlacementManager.cs" />
<Compile Include="Interfaces\Player\IPlayerManager.cs" />
<Compile Include="Interfaces\Player\IPlayerSession.cs" />
<Compile Include="Interfaces\ServerConsole\IConsoleCommand.cs" />
<Compile Include="Interfaces\ServerConsole\IConsoleManager.cs" />
<Compile Include="Placement\PlacementManager.cs" />
<Compile Include="Player\PlayerManager.cs" />
<Compile Include="Player\PlayerSession.cs" />
<Compile Include="ServerConsole\ConsoleManager.cs" />
<Compile Include="ServerConsole\Commands\HelpCommand.cs" />
<Compile Include="ServerConsole\Commands\ListCommands.cs" />
<Compile Include="ServerConsole\Commands\ListPlayers.cs" />
<Compile Include="ServerConsole\Commands\SaveConfig.cs" />
<Compile Include="ServerConsole\Commands\ServerManagement.cs" />
<Compile Include="ServerConsole\Commands\TestCommand.cs" />
<Compile Include="ServerConsole\Commands\ThrowException.cs" />
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Import Project="..\MSBuild\SS14.Engine.targets" />
<PropertyGroup>
<PreBuildEvent>
</PreBuildEvent>
<PostBuildEvent>
</PostBuildEvent>
</PropertyGroup>
<Target Name="AfterBuild" DependsOnTargets="CopyResourcesFromShared" />
</Project>