2019-05-28 00:18:29 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
<Import Project="..\RobustToolbox\MSBuild\Robust.Properties.targets" />
|
2017-08-04 14:24:01 +02:00
|
|
|
|
<PropertyGroup>
|
2019-08-03 15:07:47 +02:00
|
|
|
|
<!-- Work around https://github.com/dotnet/project-system/issues/4314 -->
|
|
|
|
|
|
<TargetFramework>$(TargetFramework)</TargetFramework>
|
2020-11-24 01:36:36 +01:00
|
|
|
|
<LangVersion>9</LangVersion>
|
2019-05-28 00:18:29 +02:00
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
2017-08-06 14:50:03 +02:00
|
|
|
|
<OutputPath>..\bin\Content.Client\</OutputPath>
|
2020-01-22 20:17:32 +01:00
|
|
|
|
<OutputType Condition="'$(FullRelease)' != 'True'">Exe</OutputType>
|
2020-12-09 23:28:24 +11:00
|
|
|
|
<WarningsAsErrors>nullable</WarningsAsErrors>
|
2018-04-07 15:31:38 +02:00
|
|
|
|
</PropertyGroup>
|
2019-05-28 00:18:29 +02:00
|
|
|
|
<Import Project="..\RobustToolbox\MSBuild\Robust.DefineConstants.targets" />
|
2018-09-13 20:09:53 +02:00
|
|
|
|
<ItemGroup>
|
2020-06-13 01:28:28 -04:00
|
|
|
|
<PackageReference Include="Nett" Version="0.15.0" />
|
2021-02-25 12:05:53 +01:00
|
|
|
|
<PackageReference Include="JetBrains.Annotations" Version="2020.3.0" PrivateAssets="All" />
|
2018-09-13 20:09:53 +02:00
|
|
|
|
</ItemGroup>
|
2017-08-04 14:24:01 +02:00
|
|
|
|
<ItemGroup>
|
2020-01-22 20:17:32 +01:00
|
|
|
|
<ProjectReference Include="..\RobustToolbox\Lidgren.Network\Lidgren.Network.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\RobustToolbox\Robust.Shared.Maths\Robust.Shared.Maths.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\RobustToolbox\Robust.Shared\Robust.Shared.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\RobustToolbox\Robust.Client\Robust.Client.csproj" />
|
2019-05-28 00:18:29 +02:00
|
|
|
|
<ProjectReference Include="..\Content.Shared\Content.Shared.csproj" />
|
2018-02-06 19:34:36 -08:00
|
|
|
|
</ItemGroup>
|
2020-09-07 12:23:10 +02:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Update="UserInterface\OptionsMenu.Graphics.cs">
|
|
|
|
|
|
<DependentUpon>OptionsMenu.cs</DependentUpon>
|
|
|
|
|
|
</Compile>
|
|
|
|
|
|
<Compile Update="UserInterface\OptionsMenu.KeyRebind.cs">
|
|
|
|
|
|
<DependentUpon>OptionsMenu.cs</DependentUpon>
|
|
|
|
|
|
</Compile>
|
|
|
|
|
|
<Compile Update="UserInterface\OptionsMenu.Audio.cs">
|
|
|
|
|
|
<DependentUpon>OptionsMenu.cs</DependentUpon>
|
|
|
|
|
|
</Compile>
|
|
|
|
|
|
</ItemGroup>
|
2020-12-19 12:59:53 +01:00
|
|
|
|
|
2020-12-20 21:47:46 +01:00
|
|
|
|
<Import Project="..\RobustToolbox\MSBuild\XamlIL.targets" />
|
2020-12-29 16:10:15 +01:00
|
|
|
|
<Import Project="..\RobustToolbox\MSBuild\Robust.Analyzers.targets" />
|
2021-03-05 01:08:38 +01:00
|
|
|
|
|
2019-05-28 00:18:29 +02:00
|
|
|
|
</Project>
|