Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TestProjects.props « TestUtils « Assets « tests « installer « src - github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 969dc3cc0129e50d5078ce0ea0441b56a0a6af4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<Project>
  <!--
    This file is imported by the test projects from the artifacts dir or the src/tests dir. It
    provides basic info needed for restore and build with the vanilla SDK.
  -->

  <PropertyGroup>
    <NetCoreAppCurrent>net6.0</NetCoreAppCurrent>
    <!-- Turn off end of life target framework checks as we intentionally build older .NETCoreApp configurations. -->
    <CheckEolTargetFramework>false</CheckEolTargetFramework>
    <!--
      If the test project needs an app host, use the one for the test target RID. This fixes
      win-x86 tests that assumed a win-x64 app host RID based on the runner SDK.
    -->
    <AppHostRuntimeIdentifier>$(TestTargetRid)</AppHostRuntimeIdentifier>
  </PropertyGroup>
</Project>