mirror of
https://github.com/VSadov/Satori.git
synced 2025-06-09 09:34:49 +09:00
Allow incremental servicing of packages and more packaging infra cleanup (#46447)
* More packaging cleanup * Add incremental package servicing throughout the repo * Update dependencies to 6.0.0-beta.20630.3
This commit is contained in:
parent
73b824d38e
commit
752c927cf2
30 changed files with 79 additions and 143 deletions
|
@ -1,4 +1,4 @@
|
|||
<Project InitialTargets="ErrorForMissingPackageDescription">
|
||||
<Project InitialTargets="ErrorForMissingPackageDescription;_OverridePackDependsOn">
|
||||
<PropertyGroup>
|
||||
<!--
|
||||
For non-SDK projects that import this file and then import Microsoft.Common.targets,
|
||||
|
@ -53,4 +53,13 @@
|
|||
Condition="'$(IsPackable)' == 'true' and '$(PackageDescription)' == ''">
|
||||
<Error Text="Required property 'PackageDescription' is missing for $(MSBuildProjectName)." />
|
||||
</Target>
|
||||
|
||||
<!-- <GeneratePackage /> controls if a package should be created by clearing out <PackDependsOn />. -->
|
||||
<Target Name="_OverridePackDependsOn"
|
||||
Condition="'$(IsPackable)' == 'true' and
|
||||
'$(GeneratePackage)' != 'true'">
|
||||
<PropertyGroup>
|
||||
<PackDependsOn />
|
||||
</PropertyGroup>
|
||||
</Target>
|
||||
</Project>
|
Loading…
Add table
Add a link
Reference in a new issue