mirror of
https://github.com/quamotion/dotnet-packaging.git
synced 2026-02-04 05:35:40 +00:00
Add dependencies for net5.0, net6.0
This commit is contained in:
@@ -50,6 +50,7 @@
|
||||
https://github.com/dotnet/core-setup/blob/release/2.1/src/pkg/packaging/rpm/
|
||||
https://github.com/dotnet/core-setup/blob/release/2.2/src/pkg/packaging/rpm/
|
||||
https://github.com/dotnet/core-setup/blob/master/src/pkg/packaging/rpm/
|
||||
https://github.com/dotnet/runtime/tree/v6.0.0/src/installer/pkg/sfx/installers/dotnet-runtime-deps
|
||||
|
||||
The syntax for "boolean dependencies" is described here (available starting
|
||||
with rpm 3.14):
|
||||
@@ -79,6 +80,14 @@
|
||||
<RpmDotNetDependency Include="dotnet-runtime-3.1" Version="" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup Condition="'@(RpmDotNetDependency)' == '' AND '$(RuntimeIdentifier)' == '' AND '$(TargetFramework)' == 'net5.0'">
|
||||
<RpmDotNetDependency Include="dotnet-runtime-5.0" Version="" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup Condition="'@(RpmDotNetDependency)' == '' AND '$(RuntimeIdentifier)' == '' AND '$(TargetFramework)' == 'net6.0'">
|
||||
<RpmDotNetDependency Include="dotnet-runtime-6.0" Version="" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup Condition="'@(RpmDotNetDependency)' == '' AND '$(RuntimeIdentifier)' != ''">
|
||||
<RpmDotNetDependency Include="openssl-libs" Version="" />
|
||||
<RpmDotNetDependency Include="libicu" Version="" />
|
||||
@@ -149,6 +158,14 @@
|
||||
<DebDotNetDependencies Include="dotnet-runtime-3.1"/>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup Condition="'@(DebDotNetDependencies)' == '' AND '$(RuntimeIdentifier)' == '' AND '$(TargetFramework)' == 'net5.0'">
|
||||
<DebDotNetDependencies Include="dotnet-runtime-5.0"/>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup Condition="'@(DebDotNetDependencies)' == '' AND '$(RuntimeIdentifier)' == '' AND '$(TargetFramework)' == 'net6.0'">
|
||||
<DebDotNetDependencies Include="dotnet-runtime-6.0"/>
|
||||
</ItemGroup>
|
||||
|
||||
<!-- Dependency list for netcore3.1, updated to support Ubuntu 20.10/21.04 -->
|
||||
<ItemGroup Condition="'@(DebDotNetDependencies)' == '' AND '$(RuntimeIdentifier)' != ''">
|
||||
<DebDotNetDependencies Include="libc6"/>
|
||||
|
||||
Reference in New Issue
Block a user