forked from OPCFoundation/UA-.NETStandard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
targets.props
20 lines (20 loc) · 847 Bytes
/
targets.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Project>
<Choose>
<When Condition="'$(VisualStudioVersion)' == '16.0'">
<PropertyGroup>
<AppTargetFramework>netcoreapp3.1</AppTargetFramework>
<TestsTargetFrameworks>net462;netcoreapp2.1;netcoreapp3.1</TestsTargetFrameworks>
<LibTargetFrameworks>net462;netstandard2.0;netstandard2.1</LibTargetFrameworks>
<LibxTargetFrameworks>net462;netcoreapp2.0;netstandard2.1</LibxTargetFrameworks>
</PropertyGroup>
</When>
<Otherwise>
<PropertyGroup>
<AppTargetFramework>netcoreapp2.1</AppTargetFramework>
<TestsTargetFrameworks>netcoreapp2.1</TestsTargetFrameworks>
<LibTargetFrameworks>net462;netstandard2.0</LibTargetFrameworks>
<LibxTargetFrameworks>net462;netcoreapp2.0</LibxTargetFrameworks>
</PropertyGroup>
</Otherwise>
</Choose>
</Project>