summaryrefslogtreecommitdiff
path: root/tests/dir.sdkbuild.props
blob: 29bdfe0ec07500716bf72b6e0be65490684f7681 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<Project>
  <Import Project="dir.common.props" />

  <!-- This file contains build properties that apply only to
       SDK-style test projects. Properties that are shared between SDK
       and buildtools projects should go in dir.common.props. -->

  <PropertyGroup>
    <TargetFramework>netcoreapp3.0</TargetFramework>
    <RuntimeFrameworkVersion>$(MicrosoftNETCoreAppVersion)</RuntimeFrameworkVersion>
    <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
    <EnableDefaultItems>false</EnableDefaultItems>
    <Platform>AnyCPU</Platform>
   
    <!-- Force the CLI to allow us to target higher netcoreapp than it may know about -->
    <NETCoreAppMaximumVersion>99.0</NETCoreAppMaximumVersion>
  </PropertyGroup>

</Project>