
fixed most of issues with world creating/loading fixed log window lags fixed some compiler warnings fixed empty log files creating fixed logging performance added better logging of load process
39 lines
1.8 KiB
XML
39 lines
1.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net6-windows</TargetFramework>
|
|
<NoWarn>1591,0649</NoWarn>
|
|
<AssemblyTitle>Torch Server Tests</AssemblyTitle>
|
|
<Product>Torch</Product>
|
|
<Copyright>Copyright © Torch API 2017</Copyright>
|
|
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
<OutputPath>$(SolutionDir)\bin-test\$(Platform)\$(Configuration)\</OutputPath>
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
<Configurations>Debug;Release</Configurations>
|
|
<Platforms>AnyCPU</Platforms>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="$(Configuration) == 'Release'">
|
|
<DocumentationFile>$(SolutionDir)\bin-test\$(Platform)\$(Configuration)\Torch.Server.Tests.xml</DocumentationFile>
|
|
</PropertyGroup>
|
|
<!-- <Import Project="$(SolutionDir)\TransformOnBuild.targets" /> -->
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
|
|
<PackageReference Include="NLog" Version="5.0.0-rc2" />
|
|
<PackageReference Include="xunit" Version="2.4.1" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Reference Include="VRage.Game, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
|
<HintPath>..\GameBinaries\VRage.Game.dll</HintPath>
|
|
<SpecificVersion>False</SpecificVersion>
|
|
</Reference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="..\Versioning\AssemblyVersion.cs" Link="Properties\AssemblyVersion.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Torch.API\Torch.API.csproj" />
|
|
<ProjectReference Include="..\Torch.Server\Torch.Server.csproj" />
|
|
<ProjectReference Include="..\Torch.Tests\Torch.Tests.csproj" />
|
|
<ProjectReference Include="..\Torch\Torch.csproj" />
|
|
</ItemGroup>
|
|
</Project> |