-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
29 lines (25 loc) · 1.14 KB
/
Directory.Build.props
File metadata and controls
29 lines (25 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<Project>
<PropertyGroup>
<Authors>Jimmy Bogard</Authors>
<LangVersion>latest</LangVersion>
<NoWarn>$(NoWarn);CS1701;CS1702;CS1591</NoWarn>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Features>strict</Features>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<PropertyGroup>
<IsMac>$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::get_OSX())))</IsMac>
<IsWindows>$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::get_Windows())))</IsWindows>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'net471' Or '$(TargetFramework)' == 'netstandard2.0'">
<DefineConstants>$(DefineConstants);FULL_OR_STANDARD</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Using Include="System.Reflection"/>
<Using Include="System.Diagnostics"/>
<Using Include="System.ComponentModel"/>
<Using Include="System.Linq.Expressions"/>
<Using Include="AutoMapper.QueryableExtensions" />
<Using Include="AutoMapper.Internal" />
</ItemGroup>
</Project>