import dotnet6.0-6.0.108-1.el8
This commit is contained in:
parent
fa7f8761c9
commit
05dfdbead1
@ -1 +1 @@
|
|||||||
f2c1dc7dad1af4b9f6f48b507cad4042446af0a0 SOURCES/dotnet-v6.0.102-SDK.tar.gz
|
fa3960a7a58e87c1c7faf53772479e2f2025ccb2 SOURCES/dotnet-v6.0.108-SDK.tar.gz
|
||||||
|
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
|||||||
SOURCES/dotnet-v6.0.102-SDK.tar.gz
|
SOURCES/dotnet-v6.0.108-SDK.tar.gz
|
||||||
|
@ -65,7 +65,7 @@ def scan_file(file):
|
|||||||
|
|
||||||
def is_elf(file):
|
def is_elf(file):
|
||||||
result = subprocess.run(['file', file], stdout=subprocess.PIPE, encoding='utf-8', check=True)
|
result = subprocess.run(['file', file], stdout=subprocess.PIPE, encoding='utf-8', check=True)
|
||||||
return re.search('ELF 64-bit LSB (?:executable|shared object)', result.stdout)
|
return re.search(r'ELF 64-bit [LM]SB (?:pie )?(?:executable|shared object)', result.stdout)
|
||||||
|
|
||||||
def scan_file_if_sensible(file):
|
def scan_file_if_sensible(file):
|
||||||
if is_elf(file):
|
if is_elf(file):
|
||||||
|
29
SOURCES/runtime-66594-s390x-debuginfo.patch
Normal file
29
SOURCES/runtime-66594-s390x-debuginfo.patch
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
diff --git a/src/mono/mono.proj b/src/mono/mono.proj
|
||||||
|
index fb98ffc1896..d6a0c9a8ec2 100644
|
||||||
|
--- a/src/mono/mono.proj
|
||||||
|
+++ b/src/mono/mono.proj
|
||||||
|
@@ -519,17 +519,17 @@
|
||||||
|
<!-- if all else fails in finding a valid objcopy, fall back to no-prefix from $PATH (used for x64 on CentOS) -->
|
||||||
|
<_Objcopy Condition="'$(_ObjcopyFound)' != '0'">objcopy</_Objcopy>
|
||||||
|
</PropertyGroup>
|
||||||
|
- <ItemGroup>
|
||||||
|
+ <ItemGroup Condition="'$(KeepNativeSymbols)' != 'true'">
|
||||||
|
<FilesToStrip Include="$(_MonoRuntimeFilePath)" />
|
||||||
|
<FilesToStrip Include="$([System.IO.Directory]::GetParent($(_MonoRuntimeFilePath)))\libmono-component-*$(SharedLibExt)" />
|
||||||
|
<FilesToStrip Include="$([System.IO.Directory]::GetParent($(_MonoRuntimeFilePath)))\Mono*framework\**\Mono*" Exclude="$([System.IO.Directory]::GetParent($(_MonoRuntimeFilePath)))\Mono*framework\**\*.dwarf" />
|
||||||
|
</ItemGroup>
|
||||||
|
- <Message Condition="'$(BuildMonoAOTCrossCompilerOnly)' != 'true' and ($([MSBuild]::IsOSPlatform('OSX')) or $([MSBuild]::IsOSPlatform('Linux')))" Text="Stripping debug symbols from %(FilesToStrip.Identity)" Importance="High"/>
|
||||||
|
- <Exec Condition="!$([System.String]::Copy(%(FilesToStrip.Identity)).EndsWith('.a')) and '$(BuildMonoAOTCrossCompilerOnly)' != 'true' and ('$(TargetsOSX)' == 'true' or '$(TargetsMacCatalyst)' == 'true' or '$(TargetsiOS)' == 'true' or '$(TargetstvOS)' == 'true')" Command="dsymutil --flat --minimize %(FilesToStrip.Identity)" IgnoreStandardErrorWarningFormat="true" WorkingDirectory="$(MonoObjDir)"/>
|
||||||
|
- <Exec Condition="!$([System.String]::Copy(%(FilesToStrip.Identity)).EndsWith('.a')) and '$(BuildMonoAOTCrossCompilerOnly)' != 'true' and ('$(TargetsOSX)' == 'true' or '$(TargetsMacCatalyst)' == 'true' or '$(TargetsiOS)' == 'true' or '$(TargetstvOS)' == 'true')" Command="strip -no_code_signature_warning -S %(FilesToStrip.Identity)" IgnoreStandardErrorWarningFormat="true" WorkingDirectory="$(MonoObjDir)"/>
|
||||||
|
- <Exec Condition="!$([System.String]::Copy(%(FilesToStrip.Identity)).EndsWith('.a')) and '$(BuildMonoAOTCrossCompilerOnly)' != 'true' and ('$(TargetsLinux)' == 'true' or '$(TargetsAndroid)' == 'true')" Command="$(_Objcopy) --only-keep-debug %(FilesToStrip.Identity) %(FilesToStrip.Identity).dbg" IgnoreStandardErrorWarningFormat="true" WorkingDirectory="$(MonoObjDir)"/>
|
||||||
|
- <Exec Condition="!$([System.String]::Copy(%(FilesToStrip.Identity)).EndsWith('.a')) and '$(BuildMonoAOTCrossCompilerOnly)' != 'true' and ('$(TargetsLinux)' == 'true' or '$(TargetsAndroid)' == 'true')" Command="$(_Objcopy) --strip-unneeded %(FilesToStrip.Identity)" IgnoreStandardErrorWarningFormat="true" WorkingDirectory="$(MonoObjDir)"/>
|
||||||
|
- <Exec Condition="!$([System.String]::Copy(%(FilesToStrip.Identity)).EndsWith('.a')) and '$(BuildMonoAOTCrossCompilerOnly)' != 'true' and ('$(TargetsLinux)' == 'true' or '$(TargetsAndroid)' == 'true')" Command="$(_Objcopy) --add-gnu-debuglink=%(FilesToStrip.Identity).dbg %(FilesToStrip.Identity)" IgnoreStandardErrorWarningFormat="true" WorkingDirectory="$(MonoObjDir)"/>
|
||||||
|
+ <Message Condition="'@(FilesToStrip)' != '' and '$(BuildMonoAOTCrossCompilerOnly)' != 'true' and ($([MSBuild]::IsOSPlatform('OSX')) or $([MSBuild]::IsOSPlatform('Linux')))" Text="Stripping debug symbols from %(FilesToStrip.Identity)" Importance="High"/>
|
||||||
|
+ <Exec Condition="'@(FilesToStrip)' != '' and !$([System.String]::Copy(%(FilesToStrip.Identity)).EndsWith('.a')) and '$(BuildMonoAOTCrossCompilerOnly)' != 'true' and ('$(TargetsOSX)' == 'true' or '$(TargetsMacCatalyst)' == 'true' or '$(TargetsiOS)' == 'true' or '$(TargetstvOS)' == 'true')" Command="dsymutil --flat --minimize %(FilesToStrip.Identity)" IgnoreStandardErrorWarningFormat="true" WorkingDirectory="$(MonoObjDir)"/>
|
||||||
|
+ <Exec Condition="'@(FilesToStrip)' != '' and !$([System.String]::Copy(%(FilesToStrip.Identity)).EndsWith('.a')) and '$(BuildMonoAOTCrossCompilerOnly)' != 'true' and ('$(TargetsOSX)' == 'true' or '$(TargetsMacCatalyst)' == 'true' or '$(TargetsiOS)' == 'true' or '$(TargetstvOS)' == 'true')" Command="strip -no_code_signature_warning -S %(FilesToStrip.Identity)" IgnoreStandardErrorWarningFormat="true" WorkingDirectory="$(MonoObjDir)"/>
|
||||||
|
+ <Exec Condition="'@(FilesToStrip)' != '' and !$([System.String]::Copy(%(FilesToStrip.Identity)).EndsWith('.a')) and '$(BuildMonoAOTCrossCompilerOnly)' != 'true' and ('$(TargetsLinux)' == 'true' or '$(TargetsAndroid)' == 'true')" Command="$(_Objcopy) --only-keep-debug %(FilesToStrip.Identity) %(FilesToStrip.Identity).dbg" IgnoreStandardErrorWarningFormat="true" WorkingDirectory="$(MonoObjDir)"/>
|
||||||
|
+ <Exec Condition="'@(FilesToStrip)' != '' and !$([System.String]::Copy(%(FilesToStrip.Identity)).EndsWith('.a')) and '$(BuildMonoAOTCrossCompilerOnly)' != 'true' and ('$(TargetsLinux)' == 'true' or '$(TargetsAndroid)' == 'true')" Command="$(_Objcopy) --strip-unneeded %(FilesToStrip.Identity)" IgnoreStandardErrorWarningFormat="true" WorkingDirectory="$(MonoObjDir)"/>
|
||||||
|
+ <Exec Condition="'@(FilesToStrip)' != '' and !$([System.String]::Copy(%(FilesToStrip.Identity)).EndsWith('.a')) and '$(BuildMonoAOTCrossCompilerOnly)' != 'true' and ('$(TargetsLinux)' == 'true' or '$(TargetsAndroid)' == 'true')" Command="$(_Objcopy) --add-gnu-debuglink=%(FilesToStrip.Identity).dbg %(FilesToStrip.Identity)" IgnoreStandardErrorWarningFormat="true" WorkingDirectory="$(MonoObjDir)"/>
|
||||||
|
</Target>
|
||||||
|
|
||||||
|
<!-- Build AOT cross compiler (if available) -->
|
@ -20,10 +20,11 @@
|
|||||||
# until that's done, disable LTO. This has to happen before setting the flags below.
|
# until that's done, disable LTO. This has to happen before setting the flags below.
|
||||||
%define _lto_cflags %{nil}
|
%define _lto_cflags %{nil}
|
||||||
|
|
||||||
%global host_version 6.0.2
|
%global host_version 6.0.8
|
||||||
%global runtime_version 6.0.2
|
%global runtime_version 6.0.8
|
||||||
%global aspnetcore_runtime_version %{runtime_version}
|
%global aspnetcore_runtime_version %{runtime_version}
|
||||||
%global sdk_version 6.0.102
|
%global sdk_version 6.0.108
|
||||||
|
%global sdk_feature_band_version %(echo %{sdk_version} | sed -e 's|[[:digit:]][[:digit:]]$|00|')
|
||||||
%global templates_version %{runtime_version}
|
%global templates_version %{runtime_version}
|
||||||
#%%global templates_version %%(echo %%{runtime_version} | awk 'BEGIN { FS="."; OFS="." } {print $1, $2, $3+1 }')
|
#%%global templates_version %%(echo %%{runtime_version} | awk 'BEGIN { FS="."; OFS="." } {print $1, $2, $3+1 }')
|
||||||
|
|
||||||
@ -59,7 +60,7 @@
|
|||||||
|
|
||||||
Name: dotnet6.0
|
Name: dotnet6.0
|
||||||
Version: %{sdk_rpm_version}
|
Version: %{sdk_rpm_version}
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: .NET Runtime and SDK
|
Summary: .NET Runtime and SDK
|
||||||
License: MIT and ASL 2.0 and BSD and LGPLv2+ and CC-BY and CC0 and MS-PL and EPL-1.0 and GPL+ and GPLv2 and ISC and OFL and zlib
|
License: MIT and ASL 2.0 and BSD and LGPLv2+ and CC-BY and CC0 and MS-PL and EPL-1.0 and GPL+ and GPLv2 and ISC and OFL and zlib
|
||||||
URL: https://github.com/dotnet/
|
URL: https://github.com/dotnet/
|
||||||
@ -86,6 +87,8 @@ Source11: dotnet.sh.in
|
|||||||
Patch100: runtime-arm64-lld-fix.patch
|
Patch100: runtime-arm64-lld-fix.patch
|
||||||
# Mono still has a dependency on (now unbuildable) ILStrip which was removed from CoreCLR: https://github.com/dotnet/runtime/pull/60315
|
# Mono still has a dependency on (now unbuildable) ILStrip which was removed from CoreCLR: https://github.com/dotnet/runtime/pull/60315
|
||||||
Patch101: runtime-mono-remove-ilstrip.patch
|
Patch101: runtime-mono-remove-ilstrip.patch
|
||||||
|
# https://github.com/dotnet/runtime/pull/66594
|
||||||
|
Patch102: runtime-66594-s390x-debuginfo.patch
|
||||||
|
|
||||||
# Disable apphost, needed for s390x
|
# Disable apphost, needed for s390x
|
||||||
Patch500: fsharp-no-apphost.patch
|
Patch500: fsharp-no-apphost.patch
|
||||||
@ -229,8 +232,10 @@ Requires: dotnet-hostfxr-6.0%{?_isa} >= %{host_rpm_version}-%{release}
|
|||||||
# libicu is dlopen()ed
|
# libicu is dlopen()ed
|
||||||
Requires: libicu%{?_isa}
|
Requires: libicu%{?_isa}
|
||||||
|
|
||||||
|
# See src/runtime/src/libraries/Native/AnyOS/brotli-version.txt
|
||||||
|
Provides: bundled(libbrotli) = 1.0.9
|
||||||
%if %{use_bundled_libunwind}
|
%if %{use_bundled_libunwind}
|
||||||
# See runtime.*/src/coreclr/pal/src/libunwind/libunwind-version.txt
|
# See runtime/src/coreclr/pal/src/libunwind/libunwind-version.txt
|
||||||
Provides: bundled(libunwind) = 1.5.rc1.28.g9165d2a1
|
Provides: bundled(libunwind) = 1.5.rc1.28.g9165d2a1
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
@ -389,31 +394,32 @@ ln -s %{_libdir}/dotnet/reference-packages/Private.SourceBuild.ReferencePackages
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
# Fix bad hardcoded path in build
|
# Fix bad hardcoded path in build
|
||||||
sed -i 's|/usr/share/dotnet|%{_libdir}/dotnet|' src/runtime.*/src/native/corehost/hostmisc/pal.unix.cpp
|
sed -i 's|/usr/share/dotnet|%{_libdir}/dotnet|' src/runtime/src/native/corehost/hostmisc/pal.unix.cpp
|
||||||
|
|
||||||
pushd src/runtime.*
|
pushd src/runtime
|
||||||
%patch100 -p1
|
%patch100 -p1
|
||||||
%patch101 -p1
|
%patch101 -p1
|
||||||
|
%patch102 -p1
|
||||||
popd
|
popd
|
||||||
|
|
||||||
pushd src/fsharp.*
|
pushd src/fsharp
|
||||||
%patch500 -p1
|
%patch500 -p1
|
||||||
popd
|
popd
|
||||||
|
|
||||||
pushd src/arcade.*
|
pushd src/arcade
|
||||||
%patch700 -p1
|
%patch700 -p1
|
||||||
popd
|
popd
|
||||||
|
|
||||||
pushd src/roslyn.*
|
pushd src/roslyn
|
||||||
%patch800 -p3
|
%patch800 -p3
|
||||||
%patch801 -p1
|
%patch801 -p1
|
||||||
popd
|
popd
|
||||||
|
|
||||||
pushd src/roslyn-analyzers.*
|
pushd src/roslyn-analyzers
|
||||||
%patch900 -p1
|
%patch900 -p1
|
||||||
popd
|
popd
|
||||||
|
|
||||||
pushd src/msbuild.*
|
pushd src/msbuild
|
||||||
|
|
||||||
# These are mono-specific fixes. Mono is only used on s390x. Restrict
|
# These are mono-specific fixes. Mono is only used on s390x. Restrict
|
||||||
# patch to s390x to avoid potential risk in other architectures.
|
# patch to s390x to avoid potential risk in other architectures.
|
||||||
@ -424,18 +430,18 @@ pushd src/msbuild.*
|
|||||||
|
|
||||||
popd
|
popd
|
||||||
|
|
||||||
pushd src/sdk.*
|
pushd src/sdk
|
||||||
%patch1500 -p1
|
%patch1500 -p1
|
||||||
%patch1501 -p1
|
%patch1501 -p1
|
||||||
popd
|
popd
|
||||||
|
|
||||||
pushd src/installer.*
|
pushd src/installer
|
||||||
%patch1600 -p1
|
%patch1600 -p1
|
||||||
popd
|
popd
|
||||||
|
|
||||||
|
|
||||||
%if ! %{use_bundled_libunwind}
|
%if ! %{use_bundled_libunwind}
|
||||||
sed -i -E 's|( /p:BuildDebPackage=false)|\1 --cmakeargs -DCLR_CMAKE_USE_SYSTEM_LIBUNWIND=TRUE|' src/runtime.*/eng/SourceBuild.props
|
sed -i -E 's|( /p:BuildDebPackage=false)|\1 --cmakeargs -DCLR_CMAKE_USE_SYSTEM_LIBUNWIND=TRUE|' src/runtime/eng/SourceBuild.props
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%build
|
%build
|
||||||
@ -460,24 +466,28 @@ export CXXFLAGS="%{dotnet_cflags}"
|
|||||||
export LDFLAGS="%{dotnet_ldflags}"
|
export LDFLAGS="%{dotnet_ldflags}"
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
# -fstack-clash-protection breaks CoreCLR
|
||||||
|
CFLAGS=$(echo $CFLAGS | sed -e 's/-fstack-clash-protection//' )
|
||||||
|
CXXFLAGS=$(echo $CXXFLAGS | sed -e 's/-fstack-clash-protection//' )
|
||||||
|
|
||||||
%ifarch aarch64
|
%ifarch aarch64
|
||||||
# -mbranch-protection=standard breaks unwinding in CoreCLR through libunwind
|
# -mbranch-protection=standard breaks unwinding in CoreCLR through libunwind
|
||||||
CFLAGS=$(echo $CFLAGS | sed -e 's/-mbranch-protection=standard //')
|
CFLAGS=$(echo $CFLAGS | sed -e 's/-mbranch-protection=standard //')
|
||||||
CXXFLAGS=$(echo $CXXFLAGS | sed -e 's/-mbranch-protection=standard //')
|
CXXFLAGS=$(echo $CXXFLAGS | sed -e 's/-mbranch-protection=standard //')
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
# -fstack-clash-protection breaks CoreCLR
|
%ifarch s390x
|
||||||
CFLAGS=$(echo $CFLAGS | sed -e 's/-fstack-clash-protection//' )
|
# -march=z13 -mtune=z14 makes clang crash while compiling .NET
|
||||||
CXXFLAGS=$(echo $CXXFLAGS | sed -e 's/-fstack-clash-protection//' )
|
CFLAGS=$(echo $CFLAGS | sed -e 's/ -march=z13//')
|
||||||
|
CFLAGS=$(echo $CFLAGS | sed -e 's/ -mtune=z14//')
|
||||||
|
CXXFLAGS=$(echo $CXXFLAGS | sed -e 's/ -march=z13//')
|
||||||
|
CXXFLAGS=$(echo $CXXFLAGS | sed -e 's/ -mtune=z14//')
|
||||||
|
%endif
|
||||||
|
|
||||||
export EXTRA_CFLAGS="$CFLAGS"
|
export EXTRA_CFLAGS="$CFLAGS"
|
||||||
export EXTRA_CXXFLAGS="$CXXFLAGS"
|
export EXTRA_CXXFLAGS="$CXXFLAGS"
|
||||||
export EXTRA_LDFLAGS="$LDFLAGS"
|
export EXTRA_LDFLAGS="$LDFLAGS"
|
||||||
|
|
||||||
unset CFLAGS
|
|
||||||
unset CXXFLAGS
|
|
||||||
unset LDFLAGS
|
|
||||||
|
|
||||||
VERBOSE=1 ./build.sh \
|
VERBOSE=1 ./build.sh \
|
||||||
%if %{without bootstrap}
|
%if %{without bootstrap}
|
||||||
--with-sdk previously-built-dotnet \
|
--with-sdk previously-built-dotnet \
|
||||||
@ -529,7 +539,7 @@ install dotnet.sh %{buildroot}%{_sysconfdir}/profile.d/
|
|||||||
|
|
||||||
install -dm 0755 %{buildroot}/%{_datadir}/bash-completion/completions
|
install -dm 0755 %{buildroot}/%{_datadir}/bash-completion/completions
|
||||||
# dynamic completion needs the file to be named the same as the base command
|
# dynamic completion needs the file to be named the same as the base command
|
||||||
install src/sdk.*/scripts/register-completions.bash %{buildroot}/%{_datadir}/bash-completion/completions/dotnet
|
install src/sdk/scripts/register-completions.bash %{buildroot}/%{_datadir}/bash-completion/completions/dotnet
|
||||||
|
|
||||||
# TODO: the zsh completion script needs to be ported to use #compdef
|
# TODO: the zsh completion script needs to be ported to use #compdef
|
||||||
#install -dm 755 %%{buildroot}/%%{_datadir}/zsh/site-functions
|
#install -dm 755 %%{buildroot}/%%{_datadir}/zsh/site-functions
|
||||||
@ -551,17 +561,20 @@ install -dm 0755 %{buildroot}%{_libdir}/dotnet/source-built-artifacts
|
|||||||
install -m 0644 artifacts/%{runtime_arch}/Release/Private.SourceBuilt.Artifacts.*.tar.gz %{buildroot}/%{_libdir}/dotnet/source-built-artifacts/
|
install -m 0644 artifacts/%{runtime_arch}/Release/Private.SourceBuilt.Artifacts.*.tar.gz %{buildroot}/%{_libdir}/dotnet/source-built-artifacts/
|
||||||
|
|
||||||
|
|
||||||
|
# Quick and dirty check for https://github.com/dotnet/source-build/issues/2731
|
||||||
|
test -f %{buildroot}%{_libdir}/dotnet/sdk/%{sdk_version}/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props
|
||||||
|
|
||||||
# Check debug symbols in all elf objects. This is not in %%check
|
# Check debug symbols in all elf objects. This is not in %%check
|
||||||
# because native binaries are stripped by rpm-build after %%install.
|
# because native binaries are stripped by rpm-build after %%install.
|
||||||
# So we need to do this check earlier.
|
# So we need to do this check earlier.
|
||||||
# FIXME
|
echo "Testing build results for debug symbols..."
|
||||||
#echo "Testing build results for debug symbols..."
|
%{SOURCE10} -v %{buildroot}%{_libdir}/dotnet/
|
||||||
#%%{SOURCE10} -v %%{buildroot}%%{_libdir}/dotnet/
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%{buildroot}%{_libdir}/dotnet/dotnet --info
|
%{buildroot}%{_libdir}/dotnet/dotnet --info
|
||||||
|
%{buildroot}%{_libdir}/dotnet/dotnet --version
|
||||||
|
|
||||||
|
|
||||||
%files -n dotnet
|
%files -n dotnet
|
||||||
@ -604,8 +617,7 @@ install -m 0644 artifacts/%{runtime_arch}/Release/Private.SourceBuilt.Artifacts.
|
|||||||
%dir %{_libdir}/dotnet/sdk
|
%dir %{_libdir}/dotnet/sdk
|
||||||
%{_libdir}/dotnet/sdk/%{sdk_version}
|
%{_libdir}/dotnet/sdk/%{sdk_version}
|
||||||
%dir %{_libdir}/dotnet/sdk-manifests
|
%dir %{_libdir}/dotnet/sdk-manifests
|
||||||
# FIXME hardcoded version?
|
%{_libdir}/dotnet/sdk-manifests/%{sdk_feature_band_version}
|
||||||
%{_libdir}/dotnet/sdk-manifests/6.0.100
|
|
||||||
%{_libdir}/dotnet/metadata
|
%{_libdir}/dotnet/metadata
|
||||||
%dir %{_libdir}/dotnet/packs
|
%dir %{_libdir}/dotnet/packs
|
||||||
|
|
||||||
@ -615,6 +627,26 @@ install -m 0644 artifacts/%{runtime_arch}/Release/Private.SourceBuilt.Artifacts.
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Aug 09 2022 Omair Majid <omajid@redhat.com> - 6.0.108-1
|
||||||
|
- Update to .NET SDK 6.0.108 and Runtime 6.0.8
|
||||||
|
- Resolves: RHBZ#2112408
|
||||||
|
|
||||||
|
* Thu Jul 21 2022 Omair Majid <omajid@redhat.com> - 6.0.107-2
|
||||||
|
- Update to .NET SDK 6.0.107 and Runtime 6.0.7
|
||||||
|
- Resolves: RHBZ#2103268
|
||||||
|
|
||||||
|
* Thu Jun 23 2022 Omair Majid <omajid@redhat.com> - 6.0.106-1
|
||||||
|
- Update to .NET SDK 6.0.106 and Runtime 6.0.6
|
||||||
|
- Resolves: RHBZ#2093430
|
||||||
|
|
||||||
|
* Mon May 16 2022 Omair Majid <omajid@redhat.com> - 6.0.105-1
|
||||||
|
- Update to .NET SDK 6.0.105 and Runtime 6.0.5
|
||||||
|
- Resolves: RHBZ#2082265
|
||||||
|
|
||||||
|
* Mon Apr 25 2022 Omair Majid <omajid@redhat.com> - 6.0.104-3
|
||||||
|
- Update to .NET SDK 6.0.104 and Runtime 6.0.4
|
||||||
|
- Resolves: RHBZ#2072006
|
||||||
|
|
||||||
* Thu Feb 17 2022 Omair Majid <omajid@redhat.com> - 6.0.102-1
|
* Thu Feb 17 2022 Omair Majid <omajid@redhat.com> - 6.0.102-1
|
||||||
- Update to .NET SDK 6.0.102 and Runtime 6.0.2
|
- Update to .NET SDK 6.0.102 and Runtime 6.0.2
|
||||||
- Resolves: RHBZ#2030390
|
- Resolves: RHBZ#2030390
|
||||||
|
Loading…
Reference in New Issue
Block a user