aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/src
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2018-08-01 16:04:32 +0200
committerGravatar Jan Tattermusch <jtattermusch@google.com>2018-08-02 08:14:34 +0200
commit911d7779bcf4b986f31e4d465b6d977275459b70 (patch)
tree5e242ce6d529c7a603c6e75d5b8533e278cdfdd5 /templates/src
parent6574f5def4285094681e0ea41998b6efc64a2df2 (diff)
remove Grpc.Auth from unitypackage for now
Diffstat (limited to 'templates/src')
-rwxr-xr-xtemplates/src/csharp/build_unitypackage.bat.template7
1 files changed, 2 insertions, 5 deletions
diff --git a/templates/src/csharp/build_unitypackage.bat.template b/templates/src/csharp/build_unitypackage.bat.template
index 6b5983c13b..2f95161a20 100755
--- a/templates/src/csharp/build_unitypackage.bat.template
+++ b/templates/src/csharp/build_unitypackage.bat.template
@@ -37,14 +37,11 @@
xcopy /Y /I nativelibs\csharp_ext_windows_x64\grpc_csharp_ext.dll ..\..\cmake\build\x64\Release${"\\"}
%%DOTNET% build --configuration Release Grpc.Core || goto :error
- %%DOTNET% build --configuration Release Grpc.Auth || goto :error
@rem build HealthCheck to get hold of Google.Protobuf.dll assembly
%%DOTNET% build --configuration Release Grpc.HealthCheck || goto :error
- @rem copy assemblies to the unity package skeleton
- copy /Y Grpc.Auth\bin\Release\net45\Grpc.Auth.dll unitypackage\unitypackage_skeleton\Plugins\Grpc.Auth\lib\net45\Grpc.Auth.dll || goto :error
- copy /Y Grpc.Auth\bin\Release\net45\Grpc.Auth.pdb unitypackage\unitypackage_skeleton\Plugins\Grpc.Auth\lib\net45\Grpc.Auth.pdb || goto :error
- copy /Y Grpc.Auth\bin\Release\net45\Grpc.Auth.xml unitypackage\unitypackage_skeleton\Plugins\Grpc.Auth\lib\net45\Grpc.Auth.xml || goto :error
+ @rem copy Grpc assemblies to the unity package skeleton
+ @rem TODO(jtattermusch): Add Grpc.Auth assembly and its dependencies
copy /Y Grpc.Core\bin\Release\net45\Grpc.Core.dll unitypackage\unitypackage_skeleton\Plugins\Grpc.Core\lib\net45\Grpc.Core.dll || goto :error
copy /Y Grpc.Core\bin\Release\net45\Grpc.Core.pdb unitypackage\unitypackage_skeleton\Plugins\Grpc.Core\lib\net45\Grpc.Core.dll || goto :error
copy /Y Grpc.Core\bin\Release\net45\Grpc.Core.xml unitypackage\unitypackage_skeleton\Plugins\Grpc.Core\lib\net45\Grpc.Core.dll || goto :error