mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
* Update test.runsettings target framework to net8.0 * Update start_server.bat for net8 * tests: prefer existing config
28 lines
946 B
XML
28 lines
946 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RunSettings>
|
|
<!-- Configurations that affect the Test Framework -->
|
|
<RunConfiguration>
|
|
<MaxCpuCount>1</MaxCpuCount>
|
|
<!-- Path relative to solution directory -->
|
|
<ResultsDirectory>.\TestResults</ResultsDirectory>
|
|
|
|
<!-- [x86] | x64
|
|
- You can also change it from menu Test, Test Settings, Default Processor Architecture -->
|
|
<TargetPlatform>x64</TargetPlatform>
|
|
|
|
<!-- Framework35 | [Framework40] | Framework45 -->
|
|
<TargetFrameworkVersion>net8.0</TargetFrameworkVersion>
|
|
|
|
</RunConfiguration>
|
|
|
|
<!-- Adapter Specific sections -->
|
|
|
|
<!-- MSTest adapter -->
|
|
<MSTest>
|
|
<MapInconclusiveToFailed>True</MapInconclusiveToFailed>
|
|
<CaptureTraceOutput>false</CaptureTraceOutput>
|
|
<DeleteDeploymentDirectoryAfterTestRunIsComplete>False</DeleteDeploymentDirectoryAfterTestRunIsComplete>
|
|
<DeploymentEnabled>False</DeploymentEnabled>
|
|
</MSTest>
|
|
|
|
</RunSettings>
|