mirror of
https://github.com/VSadov/Satori.git
synced 2025-06-09 09:34:49 +09:00
Inline package descriptions and remove descriptions.json files across the repo (#46306)
* Support runtime package descriptions * Update arcade Packaging pkg * Inline pkg descriptions for coreclr * Inline pkg descriptions for mono * Inline pkg descriptions for installer * Inline pkg descriptions for libraries
This commit is contained in:
parent
86515788aa
commit
ceaa8ae8f7
133 changed files with 776 additions and 2613 deletions
|
@ -21,4 +21,16 @@
|
|||
-->
|
||||
<NETCoreAppMaximumVersion>$(MajorVersion).$(MinorVersion)</NETCoreAppMaximumVersion>
|
||||
</PropertyGroup>
|
||||
|
||||
<!-- Packaging -->
|
||||
<PropertyGroup>
|
||||
<PackageDescription Condition="'$(PackageDescription)' == '' and '$(Description)' != ''">$(Description)</PackageDescription>
|
||||
<RuntimePackageDisclaimer>Internal implementation package not meant for direct consumption. Please do not reference directly.</RuntimePackageDisclaimer>
|
||||
<UseRuntimePackageDisclaimer Condition="'$(UseRuntimePackageDisclaimer)' == '' and
|
||||
($(MSBuildProjectName.StartsWith('runtime.native')) or '$(PackageTargetRuntime)' != '')">true</UseRuntimePackageDisclaimer>
|
||||
<PackageDescription Condition="'$(PackageDescription)' != '' and '$(UseRuntimePackageDisclaimer)' == 'true'">$(RuntimePackageDisclaimer) %0A$(PackageDescription)</PackageDescription>
|
||||
<PackageDescription Condition="'$(PackageDescription)' == '' and '$(UseRuntimePackageDisclaimer)' == 'true'">$(RuntimePackageDisclaimer)</PackageDescription>
|
||||
<!-- Keep in sync as required by the Packaging SDK in Arcade. -->
|
||||
<Description>$(PackageDescription)</Description>
|
||||
</PropertyGroup>
|
||||
</Project>
|
Loading…
Add table
Add a link
Reference in a new issue