Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 5271593

Browse files
committed
Add FreeBSD to System.Private.Uri
Add FreeBSD to the System.Private.Uri.CoreCLR.csproj file. This commit depends on the Interop bits from PR#2031.
1 parent a764229 commit 5271593

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/System.Private.Uri/src/System.Private.Uri.CoreCLR.csproj

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
</PropertyGroup>
1515

1616
<!-- Default configurations to help VS understand the configurations -->
17+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'FreeBSD_Debug|AnyCPU' " />
18+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'FreeBSD_Release|AnyCPU' " />
1719
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Linux_Debug|AnyCPU' " />
1820
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Linux_Release|AnyCPU' " />
1921
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'OSX_Debug|AnyCPU' " />
@@ -138,6 +140,15 @@
138140
</Compile>
139141
</ItemGroup>
140142

143+
<!-- FreeBSD -->
144+
<ItemGroup Condition="'$(TargetsFreeBSD)' == 'true'">
145+
<Compile Include="$(CommonPath)\Interop\FreeBSD\Interop.Errors.cs">
146+
<Link>Common\Interop\FreeBSD\Interop.Errors.cs</Link>
147+
</Compile>
148+
<Compile Include="$(CommonPath)\Interop\FreeBSD\libc\Interop.OpenFlags.cs">
149+
<Link>Common\Interop\FreeBSD\Interop.OpenFlags.cs</Link>
150+
</Compile>
151+
</ItemGroup>
141152
<!-- Linux -->
142153
<ItemGroup Condition="'$(TargetsLinux)' == 'true'">
143154
<Compile Include="$(CommonPath)\Interop\Linux\Interop.Errors.cs">

0 commit comments

Comments
 (0)