Skip to content

Commit

Permalink
Adding transport package for extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
ericstj committed Mar 24, 2020
1 parent 1c09961 commit 5882eb4
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<Project DefaultTargets="Build">
<Import Project="$([MSBuild]::GetPathOfFileAbove(Directory.Build.props))" />

<ItemGroup Condition="'$(BuildingAnOfficialBuildLeg)' != 'true' Or '$(BuildAllConfigurations)' == 'true'">
<Project Include="Microsoft.Extensions.Internal.Transport.pkgproj" />
</ItemGroup>

<Import Project="$([MSBuild]::GetPathOfFileAbove(dir.traversal.targets))" />
</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<Project DefaultTargets="Build">
<Import Project="$([MSBuild]::GetPathOfFileAbove(Directory.Build.props))" />
<PropertyGroup>
<SkipPackageFileCheck>true</SkipPackageFileCheck>
<SkipValidatePackage>true</SkipValidatePackage>
<HarvestStablePackage>false</HarvestStablePackage>
</PropertyGroup>
<ItemGroup>
<File Include="$(ASPNETCoreAppPackageRefPath)\*.*" TargetPath="lib\$(NetCoreAppCurrent)" />
<File Include="$(ASPNETCoreAppPackageRuntimePath)\*.*" TargetPath="ref\$(NetCoreAppCurrent)" />
</ItemGroup>
<Import Project="$([MSBuild]::GetPathOfFileAbove(Directory.Build.targets))" />
</Project>
5 changes: 5 additions & 0 deletions src/libraries/pkg/descriptions.json
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,11 @@
"Description": "Provides additional DataAnnotations specific functionality related to Options.",
"CommonTypes": []
},
{
"Name": "Microsoft.Extensions.Internal.Transport",
"Description": "Internal transport package to provide aspnetcore with the assemblies that make up the Microsoft.ASPNetCore.App shared framework.",
"CommonTypes": []
},
{
"Name": "Microsoft.Extensions.Primitives",
"Description": "Primitives shared by framework extensions. Commonly used types include:",
Expand Down

0 comments on commit 5882eb4

Please sign in to comment.