2017-08-04 14:24:01 +02:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-04-07 15:31:38 +02:00
|
|
|
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2017-08-04 14:24:01 +02:00
|
|
|
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
2018-04-19 20:15:36 +02:00
|
|
|
|
<Platform Condition=" '$(Platform)' == '' ">x64</Platform>
|
2017-08-04 14:24:01 +02:00
|
|
|
|
<ProjectGuid>{A2E5F175-78AF-4DDD-8F97-E2D2552372ED}</ProjectGuid>
|
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
|
|
|
|
<RootNamespace>Content.Client</RootNamespace>
|
|
|
|
|
|
<AssemblyName>Content.Client</AssemblyName>
|
2019-05-11 16:10:09 +02:00
|
|
|
|
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
|
2017-08-04 14:24:01 +02:00
|
|
|
|
<FileAlignment>512</FileAlignment>
|
2019-03-30 23:20:50 +01:00
|
|
|
|
<ContentAssemblyTarget>..\RobustToolbox\bin\Client\Resources\Assemblies\</ContentAssemblyTarget>
|
2018-09-13 20:09:53 +02:00
|
|
|
|
<LangVersion>7.2</LangVersion>
|
2017-08-06 13:02:04 +02:00
|
|
|
|
<!--
|
|
|
|
|
|
This copies all dependencies,
|
|
|
|
|
|
but on the plus side it's automatically located in the right place.
|
|
|
|
|
|
-->
|
2017-08-06 14:50:03 +02:00
|
|
|
|
<OutputPath>..\bin\Content.Client\</OutputPath>
|
2017-09-23 00:35:08 +02:00
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
2018-04-07 15:31:38 +02:00
|
|
|
|
<CodeAnalysisRuleSet Condition="'$(ActualOS)' == 'Windows'">MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
2017-09-23 00:35:08 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
|
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
2017-08-04 14:24:01 +02:00
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
2018-04-07 15:31:38 +02:00
|
|
|
|
<DebugType>portable</DebugType>
|
2017-08-04 23:09:42 +02:00
|
|
|
|
<PlatformTarget>x86</PlatformTarget>
|
2017-08-04 14:24:01 +02:00
|
|
|
|
</PropertyGroup>
|
2017-08-04 23:09:42 +02:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
|
2018-04-07 15:31:38 +02:00
|
|
|
|
<DefineConstants>TRACE;RELEASE</DefineConstants>
|
2017-08-04 23:09:42 +02:00
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
|
<PlatformTarget>x86</PlatformTarget>
|
2017-09-23 00:35:08 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
|
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
2018-04-07 15:31:38 +02:00
|
|
|
|
<DebugType>portable</DebugType>
|
2017-09-23 00:35:08 +02:00
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
|
2018-04-07 15:31:38 +02:00
|
|
|
|
<DefineConstants>TRACE;RELEASE</DefineConstants>
|
2017-09-23 00:35:08 +02:00
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
2017-08-04 14:24:01 +02:00
|
|
|
|
</PropertyGroup>
|
2018-04-07 15:31:38 +02:00
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
|
|
|
|
<DefineConstants>TRACE;RELEASE</DefineConstants>
|
|
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
|
<DebugType>portable</DebugType>
|
|
|
|
|
|
</PropertyGroup>
|
2018-09-13 20:09:53 +02:00
|
|
|
|
<ItemGroup>
|
2018-11-30 21:54:30 +01:00
|
|
|
|
<PackageReference Include="Nett" Version="0.9.0" />
|
2019-02-11 19:14:29 +01:00
|
|
|
|
<PackageReference Include="SixLabors.Core" Version="1.0.0-beta0007" />
|
|
|
|
|
|
<PackageReference Include="SixLabors.ImageSharp" Version="1.0.0-beta0006" />
|
2018-09-13 20:09:53 +02:00
|
|
|
|
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
|
|
|
|
|
|
<PackageReference Include="YamlDotNet" Version="5.0.1" />
|
2018-11-30 21:54:30 +01:00
|
|
|
|
<PackageReference Include="SharpZipLib" Version="1.0.0" />
|
2018-09-13 20:09:53 +02:00
|
|
|
|
</ItemGroup>
|
2017-08-04 14:24:01 +02:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Reference Include="System" />
|
|
|
|
|
|
<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.Net.Http" />
|
|
|
|
|
|
<Reference Include="System.Xml" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2019-04-13 09:45:09 +02:00
|
|
|
|
<Compile Include="Chat\ChatBox.cs" />
|
|
|
|
|
|
<Compile Include="Chat\ChatManager.cs" />
|
2019-03-17 15:52:27 +01:00
|
|
|
|
<Compile Include="Commands\DebugCommands.cs" />
|
2017-08-04 14:24:01 +02:00
|
|
|
|
<Compile Include="EntryPoint.cs" />
|
2019-05-14 15:19:41 +02:00
|
|
|
|
<Compile Include="EscapeMenuOwner.cs" />
|
2018-12-13 07:47:19 -06:00
|
|
|
|
<Compile Include="GameObjects\Components\Actor\CharacterInterface.cs" />
|
|
|
|
|
|
<Compile Include="GameObjects\Components\DamageableComponent.cs" />
|
2019-03-16 20:40:07 +01:00
|
|
|
|
<Compile Include="GameObjects\Components\Doors\AirlockVisualizer2D.cs" />
|
2018-12-13 07:47:19 -06:00
|
|
|
|
<Compile Include="GameObjects\Components\HUD\Inventory\ClientInventoryComponent.cs" />
|
2019-03-23 15:04:14 +01:00
|
|
|
|
<Compile Include="GameObjects\Components\Mobs\CameraRecoilComponent.cs" />
|
2018-12-13 07:47:19 -06:00
|
|
|
|
<Compile Include="GameObjects\Components\Mobs\ICharacterUI.cs" />
|
|
|
|
|
|
<Compile Include="GameObjects\Components\Mobs\SpeciesUI.cs" />
|
2018-09-19 18:54:04 +02:00
|
|
|
|
<Compile Include="GameObjects\Components\Clothing\ClothingComponent.cs" />
|
|
|
|
|
|
<Compile Include="GameObjects\Components\Items\ItemComponent.cs" />
|
2018-08-31 08:52:48 +02:00
|
|
|
|
<Compile Include="GameObjects\Components\Power\ApcBoundUserInterface.cs" />
|
2018-09-21 08:21:40 +02:00
|
|
|
|
<Compile Include="GameObjects\Components\Power\PowerCellVisualizer2D.cs" />
|
2019-04-26 15:51:05 +02:00
|
|
|
|
<Compile Include="GameObjects\Components\Research\LatheBoundUserInterface.cs" />
|
|
|
|
|
|
<Compile Include="GameObjects\Components\Research\LatheDatabaseComponent.cs" />
|
|
|
|
|
|
<Compile Include="GameObjects\Components\Research\MaterialStorageComponent.cs" />
|
2019-03-28 14:31:49 +01:00
|
|
|
|
<Compile Include="GameObjects\Components\Sound\SoundComponent.cs" />
|
2018-04-22 06:11:38 -05:00
|
|
|
|
<Compile Include="GameObjects\Components\Storage\ClientStorageComponent.cs" />
|
2019-05-05 18:52:06 +02:00
|
|
|
|
<Compile Include="GameObjects\Components\Storage\StorageVisualizer2D.cs" />
|
2019-04-04 15:09:06 +02:00
|
|
|
|
<Compile Include="GameObjects\Components\SubFloorHideComponent.cs" />
|
2019-03-23 15:04:14 +01:00
|
|
|
|
<Compile Include="GameObjects\Components\Weapons\Ranged\BallisticMagazineVisualizer2D.cs" />
|
|
|
|
|
|
<Compile Include="GameObjects\Components\Weapons\Ranged\BallisticMagazineWeaponVisualizer2D.cs" />
|
2018-12-13 14:49:57 +01:00
|
|
|
|
<Compile Include="GameObjects\Components\Weapons\Ranged\ClientRangedWeaponComponent.cs" />
|
2019-03-23 15:04:14 +01:00
|
|
|
|
<Compile Include="GameObjects\EntitySystems\CameraRecoilSystem.cs" />
|
2018-11-21 21:11:30 +01:00
|
|
|
|
<Compile Include="GameObjects\EntitySystems\ClientNotifySystem.cs" />
|
2019-04-09 17:33:53 +02:00
|
|
|
|
<Compile Include="GameObjects\EntitySystems\ExamineSystem.cs" />
|
2019-03-28 11:14:03 +01:00
|
|
|
|
<Compile Include="GameObjects\EntitySystems\IconSmoothSystem.cs" />
|
2018-12-13 14:49:57 +01:00
|
|
|
|
<Compile Include="GameObjects\EntitySystems\RangedWeaponSystem.cs" />
|
2019-04-04 15:09:06 +02:00
|
|
|
|
<Compile Include="GameObjects\EntitySystems\SubFloorHideSystem.cs" />
|
2018-11-21 20:58:11 +01:00
|
|
|
|
<Compile Include="GameObjects\EntitySystems\VerbSystem.cs" />
|
2018-11-25 19:04:49 +01:00
|
|
|
|
<Compile Include="GameTicking\ClientGameTicker.cs" />
|
2018-12-13 07:47:19 -06:00
|
|
|
|
<Compile Include="Graphics\Overlays\CircleMaskOverlay.cs" />
|
|
|
|
|
|
<Compile Include="Graphics\Overlays\GradientCircleMask.cs" />
|
2018-08-16 15:57:11 -07:00
|
|
|
|
<Compile Include="Input\ContentContexts.cs" />
|
2019-04-13 09:45:09 +02:00
|
|
|
|
<Compile Include="Interfaces\Chat\IChatManager.cs" />
|
2018-11-25 19:04:49 +01:00
|
|
|
|
<Compile Include="Interfaces\IClientGameTicker.cs" />
|
2018-11-21 21:11:30 +01:00
|
|
|
|
<Compile Include="Interfaces\IClientNotifyManager.cs" />
|
|
|
|
|
|
<Compile Include="ClientNotifyManager.cs" />
|
2018-11-30 21:54:30 +01:00
|
|
|
|
<Compile Include="Interfaces\Parallax\IParallaxManager.cs" />
|
|
|
|
|
|
<Compile Include="Parallax\ParallaxGenerator.cs" />
|
|
|
|
|
|
<Compile Include="Parallax\ParallaxManager.cs" />
|
|
|
|
|
|
<Compile Include="Parallax\ParallaxOverlay.cs" />
|
2017-08-04 14:24:01 +02:00
|
|
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
2017-09-30 16:56:19 +02:00
|
|
|
|
<Compile Include="GameObjects\Components\Items\ClientHandsComponent.cs" />
|
2017-09-26 21:27:48 +02:00
|
|
|
|
<Compile Include="Interfaces\GameObjects\Components\Items\IHandsComponent.cs" />
|
2019-04-26 15:51:05 +02:00
|
|
|
|
<Compile Include="Research\LatheMenu.cs" />
|
|
|
|
|
|
<Compile Include="Research\LatheQueueMenu.cs" />
|
2019-05-14 15:19:41 +02:00
|
|
|
|
<Compile Include="UserInterface\EscapeMenu.cs" />
|
2017-09-30 16:56:19 +02:00
|
|
|
|
<Compile Include="UserInterface\HandsGui.cs" />
|
2018-05-27 16:44:50 +02:00
|
|
|
|
<Compile Include="GameObjects\Components\Power\PowerDebugTool.cs" />
|
2018-11-25 19:04:49 +01:00
|
|
|
|
<Compile Include="UserInterface\LobbyGui.cs" />
|
2019-02-18 09:16:06 +01:00
|
|
|
|
<Compile Include="UserInterface\NanoStyle.cs" />
|
2019-05-14 01:19:25 +02:00
|
|
|
|
<Compile Include="UserInterface\Placeholder.cs" />
|
2019-05-16 16:25:06 +02:00
|
|
|
|
<Compile Include="UserInterface\TutorialButton.cs" />
|
2019-02-24 16:14:19 +01:00
|
|
|
|
<Compile Include="Utility\ResourceCacheExtensions.cs" />
|
2019-03-27 17:29:06 +05:00
|
|
|
|
<Compile Include="GameObjects\Components\Mobs\SpeciesVisualizer2D.cs" />
|
2017-08-04 14:24:01 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\Content.Shared\Content.Shared.csproj">
|
|
|
|
|
|
<Project>{26aeebb3-dde7-443a-9f43-7bc7f4acf6b5}</Project>
|
|
|
|
|
|
<Name>Content.Shared</Name>
|
|
|
|
|
|
</ProjectReference>
|
2019-04-15 21:11:38 -06:00
|
|
|
|
<ProjectReference Include="..\RobustToolbox\Robust.Client\Robust.Client.csproj">
|
|
|
|
|
|
<Project>{83429bd6-6358-4b18-be51-401df8ea2673}</Project>
|
|
|
|
|
|
<Name>Robust.Client</Name>
|
2017-08-04 14:24:01 +02:00
|
|
|
|
</ProjectReference>
|
2019-04-15 21:11:38 -06:00
|
|
|
|
<ProjectReference Include="..\RobustToolbox\Robust.Shared.Maths\Robust.Shared.Maths.csproj">
|
|
|
|
|
|
<Project>{93f23a82-00c5-4572-964e-e7c9457726d4}</Project>
|
|
|
|
|
|
<Name>Robust.Shared.Maths</Name>
|
2018-08-27 01:23:42 -07:00
|
|
|
|
</ProjectReference>
|
2019-04-15 21:11:38 -06:00
|
|
|
|
<ProjectReference Include="..\RobustToolbox\Robust.Shared\Robust.Shared.csproj">
|
|
|
|
|
|
<Project>{0529f740-0000-0000-0000-000000000000}</Project>
|
|
|
|
|
|
<Name>Robust.Shared</Name>
|
2017-08-04 14:24:01 +02:00
|
|
|
|
</ProjectReference>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
2017-08-07 00:31:11 +02:00
|
|
|
|
<Import Project="..\SS14.Content.targets" />
|
2018-11-30 21:54:30 +01:00
|
|
|
|
<!--<Target Name="AfterBuild" DependsOnTargets="CopyContentAssemblies" />-->
|
2017-08-07 00:31:11 +02:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<!-- Files to be copied into Client/Assemblies -->
|
|
|
|
|
|
<ContentAssemblies Include="$(OutputPath)Content.Client.dll" />
|
|
|
|
|
|
<ContentAssemblies Include="$(OutputPath)Content.Shared.dll" />
|
|
|
|
|
|
<ContentAssemblies Include="$(OutputPath)Content.Client.pdb" Condition="'$(Configuration)' == 'Debug'" />
|
|
|
|
|
|
<ContentAssemblies Include="$(OutputPath)Content.Shared.pdb" Condition="'$(Configuration)' == 'Debug'" />
|
|
|
|
|
|
</ItemGroup>
|
2018-02-06 19:34:36 -08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Include="app.config" />
|
2018-07-17 11:39:55 +02:00
|
|
|
|
<Compile Include="GameObjects\Components\Power\SmesVisualizer2D.cs" />
|
|
|
|
|
|
<Compile Include="GameObjects\Components\Power\ApcVisualizer2D.cs" />
|
2018-08-02 08:29:55 +02:00
|
|
|
|
<Compile Include="Construction\ConstructionMenu.cs" />
|
|
|
|
|
|
<Compile Include="Construction\ConstructionButton.cs" />
|
|
|
|
|
|
<Compile Include="GameObjects\Components\Construction\ConstructorComponent.cs" />
|
|
|
|
|
|
<Compile Include="GameObjects\Components\Construction\ConstructionGhostComponent.cs" />
|
|
|
|
|
|
<Compile Include="Construction\ConstructionPlacementHijack.cs" />
|
2018-08-09 20:22:54 +02:00
|
|
|
|
<Compile Include="GameObjects\Components\IconSmoothing\IconSmoothComponent.cs" />
|
2018-02-06 19:34:36 -08:00
|
|
|
|
</ItemGroup>
|
2019-04-15 21:11:38 -06:00
|
|
|
|
</Project>
|