From fb560680e91fce57c9c0de84636de2a5af438179 Mon Sep 17 00:00:00 2001 From: Deanna Garcia Date: Mon, 17 Oct 2022 16:50:28 -0700 Subject: [PATCH] Csharp fixes --- csharp/build_release.sh | 6 +----- csharp/src/Google.Protobuf/Google.Protobuf.csproj | 1 + 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/csharp/build_release.sh b/csharp/build_release.sh index f9fff223cb2c..1c3a9de0027e 100755 --- a/csharp/build_release.sh +++ b/csharp/build_release.sh @@ -6,9 +6,5 @@ cd $(dirname $(readlink $BASH_SOURCE)) set DOTNET_SKIP_FIRST_TIME_EXPERIENCE=true set DOTNET_CLI_TELEMETRY_OPTOUT=true -# Work around https://github.com/dotnet/core/issues/5881 -dotnet nuget locals all --clear - # Builds Google.Protobuf NuGet packages -dotnet restore src/Google.Protobuf.sln -dotnet pack -c Release src/Google.Protobuf.sln -p:ContinuousIntegrationBuild=true +dotnet pack --no-restore -c Release src/Google.Protobuf.sln -p:ContinuousIntegrationBuild=true diff --git a/csharp/src/Google.Protobuf/Google.Protobuf.csproj b/csharp/src/Google.Protobuf/Google.Protobuf.csproj index 016218c2a63f..c9f8b8dad87b 100644 --- a/csharp/src/Google.Protobuf/Google.Protobuf.csproj +++ b/csharp/src/Google.Protobuf/Google.Protobuf.csproj @@ -1,4 +1,5 @@ + C# runtime library for Protocol Buffers - Google's data interchange format.