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>
|
2021-11-09 15:05:07 +01:00
|
|
|
|
<LangVersion>10</LangVersion>
|
2019-05-28 00:18:29 +02:00
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
2020-06-08 23:36:12 +02:00
|
|
|
|
<Configurations>Release;Debug</Configurations>
|
|
|
|
|
|
<Platforms>AnyCPU</Platforms>
|
2020-12-09 23:28:24 +11:00
|
|
|
|
<WarningsAsErrors>nullable</WarningsAsErrors>
|
2021-03-15 21:55:49 +01:00
|
|
|
|
<Nullable>enable</Nullable>
|
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>
|
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>
|
2021-11-28 14:56:53 +01:00
|
|
|
|
<ProjectReference Include="..\Content.Shared.Database\Content.Shared.Database.csproj" />
|
2019-08-22 18:44:35 +02:00
|
|
|
|
<ProjectReference Include="..\RobustToolbox\Lidgren.Network\Lidgren.Network.csproj">
|
2020-02-15 02:33:52 +01:00
|
|
|
|
<Private>false</Private>
|
2019-08-22 18:44:35 +02:00
|
|
|
|
</ProjectReference>
|
|
|
|
|
|
<ProjectReference Include="..\RobustToolbox\Robust.Shared.Maths\Robust.Shared.Maths.csproj">
|
2020-02-15 02:33:52 +01:00
|
|
|
|
<Private>false</Private>
|
2019-08-22 18:44:35 +02:00
|
|
|
|
</ProjectReference>
|
|
|
|
|
|
<ProjectReference Include="..\RobustToolbox\Robust.Shared\Robust.Shared.csproj">
|
2020-02-15 02:33:52 +01:00
|
|
|
|
<Private>false</Private>
|
2019-08-22 18:44:35 +02:00
|
|
|
|
</ProjectReference>
|
2019-03-30 00:31:45 -06:00
|
|
|
|
</ItemGroup>
|
2019-06-07 16:15:20 +05:00
|
|
|
|
<ItemGroup>
|
2020-01-18 23:09:14 +01:00
|
|
|
|
<EmbeddedResource Include="Text\Names\*.txt" />
|
2019-06-07 16:15:20 +05:00
|
|
|
|
</ItemGroup>
|
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>
|