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

Commit

Permalink
Removing ref from package and adding netfx configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
joperezr committed Mar 25, 2020
1 parent 13ab13b commit d04e772
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 5 deletions.
9 changes: 6 additions & 3 deletions src/System.Net.Http.Json/pkg/System.Net.Http.Json.pkgproj
@@ -1,10 +1,13 @@
<Project DefaultTargets="Build">
<Import Project="$([MSBuild]::GetPathOfFileAbove(Directory.Build.props))" />
<ItemGroup>
<ProjectReference Include="..\ref\System.Net.Http.Json.csproj">
<SupportedFramework>net461;netcoreapp2.0;uap10.0.16299;$(AllXamarinFrameworks)</SupportedFramework>
<ProjectReference Include="..\ref\System.Net.Http.Json.csproj" />
<ProjectReference Include="..\src\System.Net.Http.Json.csproj">
<SupportedFramework>net461;netcoreapp2.0;uap10.0.16299;$(AllXamarinFrameworks)</SupportedFramework>
</ProjectReference>
<ProjectReference Include="..\src\System.Net.Http.Json.csproj" />
</ItemGroup>
<PropertyGroup>
<ExcludeReferenceAssets>true</ExcludeReferenceAssets>
</PropertyGroup>
<Import Project="$([MSBuild]::GetPathOfFileAbove(Directory.Build.targets))" />
</Project>
1 change: 1 addition & 0 deletions src/System.Net.Http.Json/ref/Configurations.props
Expand Up @@ -2,6 +2,7 @@
<PropertyGroup>
<BuildConfigurations>
netstandard;
net461;
</BuildConfigurations>
</PropertyGroup>
</Project>
7 changes: 6 additions & 1 deletion src/System.Net.Http.Json/ref/System.Net.Http.Json.csproj
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Configurations>netstandard-Debug;netstandard-Release</Configurations>
<Configurations>netstandard-Debug;netstandard-Release;net461-Debug;net461-Release</Configurations>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
Expand All @@ -9,4 +9,9 @@
<ItemGroup>
<ProjectReference Include="..\..\System.Text.Json\ref\System.Text.Json.csproj" />
</ItemGroup>
<ItemGroup Condition="'$(TargetGroup)' == 'net461'">
<Reference Include="mscorlib" />
<Reference Include="System" />
<Reference Include="System.Net.Http" />
</ItemGroup>
</Project>
1 change: 1 addition & 0 deletions src/System.Net.Http.Json/src/Configurations.props
Expand Up @@ -2,6 +2,7 @@
<PropertyGroup>
<BuildConfigurations>
netstandard;
net461;
</BuildConfigurations>
</PropertyGroup>
</Project>
7 changes: 6 additions & 1 deletion src/System.Net.Http.Json/src/System.Net.Http.Json.csproj
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Configurations>netstandard-Debug;netstandard-Release</Configurations>
<Configurations>netstandard-Debug;netstandard-Release;net461-Debug;net461-Release</Configurations>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
Expand All @@ -19,4 +19,9 @@
<Reference Include="System.Text.Json" />
<Reference Include="System.Threading.Tasks.Extensions" />
</ItemGroup>
<ItemGroup Condition="'$(TargetGroup)' == 'net461'">
<Reference Include="mscorlib" />
<Reference Include="System" />
<Reference Include="System.Net.Http" />
</ItemGroup>
</Project>

0 comments on commit d04e772

Please sign in to comment.