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

Add FreeBSD to System.Private.Uri #2032

Merged
merged 1 commit into from
Jun 13, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions src/System.Private.Uri/src/System.Private.Uri.CoreCLR.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
</PropertyGroup>

<!-- Default configurations to help VS understand the configurations -->
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'FreeBSD_Debug|AnyCPU' " />
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'FreeBSD_Release|AnyCPU' " />
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Linux_Debug|AnyCPU' " />
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Linux_Release|AnyCPU' " />
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'OSX_Debug|AnyCPU' " />
Expand Down Expand Up @@ -138,6 +140,15 @@
</Compile>
</ItemGroup>

<!-- FreeBSD -->
<ItemGroup Condition="'$(TargetsFreeBSD)' == 'true'">
<Compile Include="$(CommonPath)\Interop\FreeBSD\Interop.Errors.cs">
<Link>Common\Interop\FreeBSD\Interop.Errors.cs</Link>
</Compile>
<Compile Include="$(CommonPath)\Interop\FreeBSD\libc\Interop.OpenFlags.cs">
<Link>Common\Interop\FreeBSD\Interop.OpenFlags.cs</Link>
</Compile>
</ItemGroup>
<!-- Linux -->
<ItemGroup Condition="'$(TargetsLinux)' == 'true'">
<Compile Include="$(CommonPath)\Interop\Linux\Interop.Errors.cs">
Expand Down