Content.Client.csproj 1.5 KB

12345678910111213141516171819202122232425262728293031
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <!-- Work around https://github.com/dotnet/project-system/issues/4314 -->
  4. <TargetFramework>$(TargetFramework)</TargetFramework>
  5. <LangVersion>12</LangVersion>
  6. <IsPackable>false</IsPackable>
  7. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  8. <OutputPath>..\bin\Content.Client\</OutputPath>
  9. <OutputType Condition="'$(FullRelease)' != 'True'">Exe</OutputType>
  10. <WarningsAsErrors>nullable</WarningsAsErrors>
  11. <Nullable>enable</Nullable>
  12. <Configurations>Debug;Release;Tools;DebugOpt</Configurations>
  13. <Platforms>AnyCPU</Platforms>
  14. </PropertyGroup>
  15. <ItemGroup>
  16. <PackageReference Include="Nett" />
  17. <PackageReference Include="JetBrains.Annotations" PrivateAssets="All" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <ProjectReference Include="..\RobustToolbox\Lidgren.Network\Lidgren.Network.csproj" />
  21. <ProjectReference Include="..\RobustToolbox\Robust.Shared.Maths\Robust.Shared.Maths.csproj" />
  22. <ProjectReference Include="..\RobustToolbox\Robust.Shared\Robust.Shared.csproj" />
  23. <ProjectReference Include="..\RobustToolbox\Robust.Client\Robust.Client.csproj" />
  24. <ProjectReference Include="..\Content.Shared\Content.Shared.csproj" />
  25. </ItemGroup>
  26. <ItemGroup>
  27. <Folder Include="Civ14\" />
  28. </ItemGroup>
  29. <Import Project="..\RobustToolbox\MSBuild\Robust.Properties.targets" />
  30. <Import Project="..\RobustToolbox\MSBuild\XamlIL.targets" />
  31. </Project>