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

Commit 0d78900

Browse files
committed
Add FreeBSD references to System.IO.Compression.ZipFile assembly.
1 parent f1d6d81 commit 0d78900

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

src/System.IO.Compression.ZipFile/System.IO.Compression.ZipFile.sln

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "System.IO.Compression.ZipFi
99
EndProject
1010
Global
1111
GlobalSection(SolutionConfigurationPlatforms) = preSolution
12+
FreeBSD_Debug|Any CPU = FreeBSD_Debug|Any CPU
13+
FreeBSD_Release|Any CPU = FreeBSD_Release|Any CPU
1214
Linux_Debug|Any CPU = Linux_Debug|Any CPU
1315
Linux_Release|Any CPU = Linux_Release|Any CPU
1416
OSX_Debug|Any CPU = OSX_Debug|Any CPU
@@ -17,6 +19,10 @@ Global
1719
Windows_Release|Any CPU = Windows_Release|Any CPU
1820
EndGlobalSection
1921
GlobalSection(ProjectConfigurationPlatforms) = postSolution
22+
{A8CF61F0-56EA-4B5F-9375-0723DF4250C0}.FreeBSD_Debug|Any CPU.ActiveCfg = Release|Any CPU
23+
{A8CF61F0-56EA-4B5F-9375-0723DF4250C0}.FreeBSD_Debug|Any CPU.Build.0 = Release|Any CPU
24+
{A8CF61F0-56EA-4B5F-9375-0723DF4250C0}.FreeBSD_Release|Any CPU.ActiveCfg = Release|Any CPU
25+
{A8CF61F0-56EA-4B5F-9375-0723DF4250C0}.FreeBSD_Release|Any CPU.Build.0 = Release|Any CPU
2026
{A8CF61F0-56EA-4B5F-9375-0723DF4250C0}.Linux_Debug|Any CPU.ActiveCfg = Release|Any CPU
2127
{A8CF61F0-56EA-4B5F-9375-0723DF4250C0}.Linux_Debug|Any CPU.Build.0 = Release|Any CPU
2228
{A8CF61F0-56EA-4B5F-9375-0723DF4250C0}.Linux_Release|Any CPU.ActiveCfg = Release|Any CPU
@@ -29,6 +35,10 @@ Global
2935
{A8CF61F0-56EA-4B5F-9375-0723DF4250C0}.Windows_Debug|Any CPU.Build.0 = Release|Any CPU
3036
{A8CF61F0-56EA-4B5F-9375-0723DF4250C0}.Windows_Release|Any CPU.ActiveCfg = Release|Any CPU
3137
{A8CF61F0-56EA-4B5F-9375-0723DF4250C0}.Windows_Release|Any CPU.Build.0 = Release|Any CPU
38+
{ED453083-A80F-480C-AD25-5B8618E8A303}.FreeBSD_Debug|Any CPU.ActiveCfg = Debug|Any CPU
39+
{ED453083-A80F-480C-AD25-5B8618E8A303}.FreeBSD_Debug|Any CPU.Build.0 = Debug|Any CPU
40+
{ED453083-A80F-480C-AD25-5B8618E8A303}.FreeBSD_Release|Any CPU.ActiveCfg = Release|Any CPU
41+
{ED453083-A80F-480C-AD25-5B8618E8A303}.FreeBSD_Release|Any CPU.Build.0 = Release|Any CPU
3242
{ED453083-A80F-480C-AD25-5B8618E8A303}.Linux_Debug|Any CPU.ActiveCfg = Debug|Any CPU
3343
{ED453083-A80F-480C-AD25-5B8618E8A303}.Linux_Debug|Any CPU.Build.0 = Debug|Any CPU
3444
{ED453083-A80F-480C-AD25-5B8618E8A303}.Linux_Release|Any CPU.ActiveCfg = Release|Any CPU

src/System.IO.Compression.ZipFile/src/System.IO.Compression.ZipFile.csproj

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
1111
</PropertyGroup>
1212
<!-- Default configurations to help VS understand the options -->
13+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'FreeBSD_Debug|AnyCPU'" />
14+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'FreeBSD_Release|AnyCPU'" />
1315
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Linux_Debug|AnyCPU'" />
1416
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Linux_Release|AnyCPU'" />
1517
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'OSX_Debug|AnyCPU'" />
@@ -35,6 +37,12 @@
3537
<Link>Common\System\IO\PathInternal.Unix.cs</Link>
3638
</Compile>
3739
</ItemGroup>
40+
<!-- FreeBSD -->
41+
<ItemGroup Condition="'$(TargetsFreeBSD)' == 'true'">
42+
<Compile Include="$(CommonPath)\System\IO\PathInternal.CaseSensitive.cs">
43+
<Link>Common\System\IO\PathInternal.CaseSensitive.cs</Link>
44+
</Compile>
45+
</ItemGroup>
3846
<!-- Linux -->
3947
<ItemGroup Condition="'$(TargetsLinux)' == 'true'">
4048
<Compile Include="$(CommonPath)\System\IO\PathInternal.CaseSensitive.cs">

0 commit comments

Comments
 (0)