This is an automated email from the ASF dual-hosted git repository.
rskraba pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/avro.git
The following commit(s) were added to refs/heads/master by this push:
new 6f0692f96 Add NET 7 SDK to Dockerfile (#2193)
6f0692f96 is described below
commit 6f0692f965a8d2b3f935ec3453ddf162617b84bc
Author: Zoltan Csizmadia <[email protected]>
AuthorDate: Thu Apr 20 11:12:19 2023 -0500
Add NET 7 SDK to Dockerfile (#2193)
* Add NET 7 SDK to Dockerfile
* Update code analyzer package
---------
Co-authored-by: Zoltan Csizmadia <[email protected]>
---
lang/csharp/versions.props | 2 +-
share/docker/Dockerfile | 5 +++--
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/lang/csharp/versions.props b/lang/csharp/versions.props
index 203e69722..4acdaa9d7 100644
--- a/lang/csharp/versions.props
+++ b/lang/csharp/versions.props
@@ -63,7 +63,7 @@
<MicrosoftCodeAnalysisVersion>4.3.1</MicrosoftCodeAnalysisVersion>
<MicrosoftCodeAnalysisCSharpVersion>4.3.1</MicrosoftCodeAnalysisCSharpVersion>
<MicrosoftCodeAnalysisCSharpCodeStyleVersion>4.3.1</MicrosoftCodeAnalysisCSharpCodeStyleVersion>
-
<MicrosoftCodeAnalysisNetAnalyzersVersion>7.0.0-preview*</MicrosoftCodeAnalysisNetAnalyzersVersion>
+
<MicrosoftCodeAnalysisNetAnalyzersVersion>7.0.1</MicrosoftCodeAnalysisNetAnalyzersVersion>
<MicrosoftNETTestSdkVersion>17.4.0</MicrosoftNETTestSdkVersion>
<NUnitVersion>3.13.3</NUnitVersion>
<NUnitConsoleRunnerVersion>3.15.2</NUnitConsoleRunnerVersion>
diff --git a/share/docker/Dockerfile b/share/docker/Dockerfile
index 691c1e40a..7d916035f 100644
--- a/share/docker/Dockerfile
+++ b/share/docker/Dockerfile
@@ -195,8 +195,9 @@ RUN curl --proto '=https' --tlsv1.2 -sSf
https://sh.rustup.rs | sh -s -- -y --de
RUN cd /opt ; \
wget https://dot.net/v1/dotnet-install.sh ; \
bash ./dotnet-install.sh --channel "3.1" --install-dir "/opt/dotnet" ; \
- bash ./dotnet-install.sh --channel "5.0" --install-dir "/opt/dotnet" ; \
- bash ./dotnet-install.sh --channel "6.0" --install-dir "/opt/dotnet" ;
+ bash ./dotnet-install.sh --channel "5.0" --install-dir "/opt/dotnet" ; \
+ bash ./dotnet-install.sh --channel "6.0" --install-dir "/opt/dotnet" ; \
+ bash ./dotnet-install.sh --channel "7.0" --install-dir "/opt/dotnet" ;
ENV PATH $PATH:/opt/dotnet