Content.Replay.csproj 1.3 KB

1234567891011121314151617181920212223242526
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>$(TargetFramework)</TargetFramework>
  4. <LangVersion>12</LangVersion>
  5. <IsPackable>false</IsPackable>
  6. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  7. <OutputPath>..\bin\Content.Replay\</OutputPath>
  8. <OutputType Condition="'$(FullRelease)' != 'True'">Exe</OutputType>
  9. <WarningsAsErrors>nullable</WarningsAsErrors>
  10. <Nullable>enable</Nullable>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <PackageReference Include="Nett" />
  14. <PackageReference Include="JetBrains.Annotations" PrivateAssets="All" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <ProjectReference Include="..\RobustToolbox\Lidgren.Network\Lidgren.Network.csproj" />
  18. <ProjectReference Include="..\RobustToolbox\Robust.Shared.Maths\Robust.Shared.Maths.csproj" />
  19. <ProjectReference Include="..\RobustToolbox\Robust.Shared\Robust.Shared.csproj" />
  20. <ProjectReference Include="..\RobustToolbox\Robust.Client\Robust.Client.csproj" />
  21. <ProjectReference Include="..\Content.Shared\Content.Shared.csproj" />
  22. <ProjectReference Include="..\Content.Client\Content.Client.csproj" />
  23. </ItemGroup>
  24. <Import Project="..\RobustToolbox\MSBuild\XamlIL.targets" />
  25. <Import Project="..\RobustToolbox\MSBuild\Robust.Properties.targets" />
  26. </Project>