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>
|
2019-12-17 16:09:10 +01:00
|
|
|
|
<LangVersion>8</LangVersion>
|
2019-05-28 00:18:29 +02:00
|
|
|
|
<IsPackable>false</IsPackable>
|
2019-08-02 02:07:27 +02:00
|
|
|
|
<Platforms>x64</Platforms>
|
2019-05-28 00:18:29 +02:00
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
|
<OutputPath>../bin/Content.Shared</OutputPath>
|
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>
|
|
|
|
|
|
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
|
2019-08-27 22:39:32 +02:00
|
|
|
|
<PackageReference Include="YamlDotNet" Version="6.1.2" />
|
2018-09-13 20:09:53 +02:00
|
|
|
|
</ItemGroup>
|
2017-08-04 14:24:01 +02:00
|
|
|
|
<ItemGroup>
|
2019-08-22 18:44:35 +02:00
|
|
|
|
<ProjectReference Include="..\RobustToolbox\Lidgren.Network\Lidgren.Network.csproj">
|
|
|
|
|
|
<Private>false</Private>
|
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
|
<ProjectReference Include="..\RobustToolbox\Robust.Shared.Maths\Robust.Shared.Maths.csproj">
|
|
|
|
|
|
<Private>false</Private>
|
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
|
<ProjectReference Include="..\RobustToolbox\Robust.Shared\Robust.Shared.csproj">
|
|
|
|
|
|
<Private>false</Private>
|
|
|
|
|
|
</ProjectReference>
|
2019-03-30 00:31:45 -06:00
|
|
|
|
</ItemGroup>
|
2019-06-07 16:15:20 +05:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Folder Include="GameObjects\Components\Trigger\" />
|
2020-01-18 23:09:14 +01:00
|
|
|
|
<EmbeddedResource Include="Text\Names\*.txt" />
|
2019-06-07 16:15:20 +05:00
|
|
|
|
</ItemGroup>
|
2019-05-28 00:18:29 +02:00
|
|
|
|
</Project>
|