Remove cyclic dependency on self
This commit is contained in:
parent
c77f7b7c77
commit
8d1ac47d9f
|
|
@ -46,8 +46,6 @@
|
|||
|
||||
<ItemGroup>
|
||||
<FullMetaPackagePackageReference Include="@(MetaPackagePackageReference)" />
|
||||
<FullMetaPackagePackageReference Include="Microsoft.AspNetCore" Version="$(AspNetCoreVersion)" PrivateAssets="None" />
|
||||
<FullMetaPackagePackageReference Include="Microsoft.AspNetCore.Antiforgery" Version="$(AspNetCoreVersion)" PrivateAssets="None" />
|
||||
<FullMetaPackagePackageReference Include="Microsoft.AspNetCore.Authentication" Version="$(AspNetCoreVersion)" PrivateAssets="None" />
|
||||
<FullMetaPackagePackageReference Include="Microsoft.AspNetCore.Authentication.Abstractions" Version="$(AspNetCoreVersion)" PrivateAssets="None" />
|
||||
<FullMetaPackagePackageReference Include="Microsoft.AspNetCore.Authentication.Cookies" Version="$(AspNetCoreVersion)" PrivateAssets="None" />
|
||||
|
|
@ -174,6 +172,10 @@
|
|||
<FullMetaPackagePackageReference Include="Microsoft.VisualStudio.Web.BrowserLink" Version="$(AspNetCoreVersion)" PrivateAssets="None" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<FullMetaPackageProjectReference Include="../Microsoft.AspNetCore/Microsoft.AspNetCore.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<RuntimeStorePackageReference Include="@(FullMetaPackagePackageReference)" />
|
||||
<RuntimeStorePackageReference Include="Microsoft.AspNetCore.AzureAppServices.HostingStartup" Version="$(AspNetCoreVersion)" PrivateAssets="None" />
|
||||
|
|
@ -181,4 +183,8 @@
|
|||
<RuntimeStorePackageReference Include="Microsoft.AspNetCore.ApplicationInsights.HostingStartup" Version="$(AspNetCoreVersion)" PrivateAssets="None" />
|
||||
<RuntimeStorePackageReference Include="Microsoft.Extensions.Logging.AzureAppServices" Version="$(AspNetCoreVersion)" PrivateAssets="None" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<RuntimeStoreProjectReference Include="@(FullMetaPackageProjectReference)" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
|
|
|||
|
|
@ -12,7 +12,9 @@
|
|||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="@(FullMetaPackagePackageReference)" />
|
||||
<ProjectReference Include="@(FullMetaPackageProjectReference)" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Content Include="build\**\*.xml" PackagePath="%(Identity)" />
|
||||
<Content Include="build\**\*.targets" PackagePath="%(Identity)" />
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@
|
|||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="@(RuntimeStorePackageReference)" />
|
||||
<ProjectReference Include="@(RuntimeStoreProjectReference)" />
|
||||
</ItemGroup>
|
||||
|
||||
<Target Name="CollectDeps" DependsOnTargets="Restore;RunResolvePackageDependencies">
|
||||
|
|
|
|||
Loading…
Reference in New Issue