
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 commands autocomplete in torch GUI chat in torch GUI now has entered history (like console, use up/down arrows) abstraction of instance manager session name now correctly displaying in torchSessionManager messages TorchSession now has loaded world property (as torch now has more control about world load process) now only dedicated config locks after session start
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> |