Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
/ corefx Public archive

Commit

Permalink
fix build break on FreeBSD (#25557)
Browse files Browse the repository at this point in the history
  • Loading branch information
wfurt authored and stephentoub committed Nov 28, 2017
1 parent c8d62ac commit 07e10f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/System.Data.Odbc/src/Configurations.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<BuildConfigurations>
netcoreapp2.0-FreeBSD;
netcoreapp2.0-Linux;
netcoreapp2.0-OSX;
netcoreapp2.0-Windows_NT;
Expand Down
2 changes: 1 addition & 1 deletion src/System.Data.Odbc/src/System.Data.Odbc.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
<Link>Common\Interop\Interop.Odbc.cs</Link>
</Compile>
</ItemGroup>
<ItemGroup Condition="'$(TargetsLinux)' == 'true'">
<ItemGroup Condition="'$(TargetsLinux)' == 'true' OR '$(TargetsFreeBSD)' == 'true'">
<Compile Include="$(CommonPath)\Interop\Linux\Interop.Libraries.cs">
<Link>Common\Interop\Linux\Interop.Libraries.cs</Link>
</Compile>
Expand Down

0 comments on commit 07e10f3

Please sign in to comment.