Skip to content

Commit f461bd2

Browse files
committed
Add ResolveSharedSourcePackageInfo to ComputeGraph target
1 parent 1ced459 commit f461bd2

File tree

5 files changed

+3
-7
lines changed

5 files changed

+3
-7
lines changed

build/artifacts.props

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,9 +197,7 @@
197197
<PackageArtifact Include="Microsoft.Web.Xdt.Extensions" Category="shipoob" />
198198
<PackageArtifact Include="RazorPageGenerator" Category="noship" />
199199

200-
<PackageArtifact Include="Microsoft.AspNetCore.Diagnostics.Sources" Category="noship"/>
201200
<PackageArtifact Include="Microsoft.AspNetCore.Hosting.WebHostBuilderFactory.Sources" Category="noship"/>
202-
<PackageArtifact Include="Microsoft.AspNetCore.HttpSys.Sources" Category="noship"/>
203201
<PackageArtifact Include="Microsoft.Extensions.Buffers.Testing.Sources" Category="noship"/>
204202
</ItemGroup>
205203

build/external-dependencies.props

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,6 @@
8989
<ExtensionsDependency Include="Microsoft.Extensions.WebEncoders" Version="$(MicrosoftExtensionsWebEncodersPackageVersion)" AllMetapackage="true" AppMetapackage="true" />
9090

9191
<!-- These dependencies are temporary while we refactor package refs into project refs. -->
92-
<ExtensionsDependency Include="Microsoft.Extensions.Buffers.Testing.Sources" Version="$(MicrosoftExtensionsBuffersTestingSourcesPackageVersion)" />
93-
<ExtensionsDependency Include="Microsoft.AspNetCore.Hosting.WebHostBuilderFactory.Sources" Version="$(MicrosoftAspNetCoreHostingWebHostBuilderFactorySourcesPackageVersion)" />
9492
<ExtensionsDependency Include="Microsoft.AspNetCore.Server.IntegrationTesting" Version="$(MicrosoftAspNetCoreServerIntegrationTestingPackageVersion)" />
9593
</ItemGroup>
9694

build/repo.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@
256256
<WriteLinesToFile File="$(RepositoryRoot)artifacts\packages.csv" Lines="PackageId,Version;@(ArtifactInfo->WithMetadataValue('ArtifactType', 'NuGetPackage')->'%(PackageId),%(Version)')" Overwrite="true" />
257257
</Target>
258258

259-
<Target Name="ComputeGraph" DependsOnTargets="GetProjectArtifactInfo;ResolveRepoInfo;GeneratePropsFiles">
259+
<Target Name="ComputeGraph" DependsOnTargets="ResolveSharedSourcesPackageInfo;GetProjectArtifactInfo;ResolveRepoInfo;GeneratePropsFiles">
260260
<RepoTasks.CheckRepoGraph Condition=" ! $([MSBuild]::IsOSUnixLike())"
261261
Solutions="@(Solution)"
262262
Artifacts="@(ArtifactInfo);@(ShippedArtifactInfo)"

src/Shared/Diagnostics/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory)..\, Directory.Build.props))\Directory.Build.props" />
33

44
<PropertyGroup>
5-
<PackageId>Microsoft.AspNetCore.Diagnostics.Sources</PackageId>
5+
<IsPackable>false</IsPackable>
66
</PropertyGroup>
77
</Project>

src/Shared/HttpSys/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory)..\, Directory.Build.props))\Directory.Build.props" />
33

44
<PropertyGroup>
5-
<PackageId>Microsoft.AspNetCore.HttpSys.Sources</PackageId>
5+
<IsPackable>false</IsPackable>
66
</PropertyGroup>
77
</Project>

0 commit comments

Comments
 (0)