-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Add new System.Net.Http.Json project/namespace #42889
Changes from 1 commit
fe82f34
43143ca
13ab13b
799aa67
af7770a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
<Project DefaultTargets="Build"> | ||
<PropertyGroup> | ||
<BuildConfigurations> | ||
<PackageConfigurations> | ||
netstandard; | ||
net461; | ||
</PackageConfigurations> | ||
<BuildConfigurations> | ||
$(PackageConfigurations); | ||
netfx; | ||
</BuildConfigurations> | ||
</PropertyGroup> | ||
</Project> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<BuildConfigurations> | ||
<PackageConfigurations> | ||
netstandard; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. should we also have a net461 configuration? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We could add a net461 config, but that would still mean we will need the facades here, since we depend on SYstem.Text.Json which will pull them in. I was planning on adding net461 config here with my configuration changes wave comming next so that we have one PR doing it for every package that needs it. If you still think I should add it here now, I can do that too. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Go ahead and do it now. I think the timing of the next wave will land before we stabalize this, so I'd prefer to have this done WRT coding and just need to pick up package dependency updates when we ship those. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. (assuming this is a small task, if anything gets complicated we can postpone this until after the first preview) |
||
net461; | ||
</PackageConfigurations> | ||
<BuildConfigurations> | ||
$(PackageConfigurations); | ||
netfx; | ||
</BuildConfigurations> | ||
</PropertyGroup> | ||
</Project> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should just omit the projectreference to ref.