forked from mono/xwt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
21 lines (15 loc) · 901 Bytes
/
Directory.Build.props
File metadata and controls
21 lines (15 loc) · 901 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Project>
<PropertyGroup>
<InMonoDevelopTree>False</InMonoDevelopTree>
<Net6>False</Net6>
<InMonoDevelopTree Condition="Exists('$(MSBuildThisFileDirectory)..\..\msbuild\MonoDevelop.AfterCommon.props')">True</InMonoDevelopTree>
<Net6 Condition="Exists('$(MSBuildThisFileDirectory)..\..\msbuild\Net6.props')">True</Net6>
<DotNetFrameworkTarget>net472</DotNetFrameworkTarget>
<DotNetCoreTarget>netstandard2.0</DotNetCoreTarget>
<MacTargetFramework Condition="!$(Net6)">$(DotNetFrameworkTarget)</MacTargetFramework>
<MacTargetFramework Condition="$(Net6)">net6.0-macos</MacTargetFramework>
<TargetFramework Condition="!$(Net6)">$(DotNetFrameworkTarget)</TargetFramework>
<TargetFramework Condition="$(Net6)">$(DotNetCoreTarget)</TargetFramework>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>
</Project>