Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | updated hint path to updated library in csproj files | Alex Polcyn | 2016-08-02 |
| | |||
* | changed ix-async dependencies to System.Interactive.Async version 3.0.0 | Alexander Polcyn | 2016-08-02 |
| | |||
* | fix conditional compilation for netcoreapp1.0 projects | Jan Tattermusch | 2016-07-31 |
| | |||
* | regenerate | Jan Tattermusch | 2016-07-30 |
| | |||
* | Overhaul how the native extension is found, loaded and used | Jon Skeet | 2016-07-15 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The goal of this is to fix #7230. The changes here are: - The layout in the nuget package; the files are now in `/runtimes/{os}/native/{library}` - The filename of each library, which now includes the architecture, e.g `grpc_csharp_ext.x64.dll` - The targets file used to copy those files in msbuild-based projects; note that we now don't build up a folder structure. - The way the functions are found Before this change, on Linux and OSX we used to find library symbols manually, and use DllImport on Windows. With this change, the name of the library file changes based on architecture, so `DllImport` doesn't work. Instead, we have to use `GetProcAddress` to fetch the function. This is further convoluted by the convention on Windows-x86 to prefix the function name with `_` and suffix it based on the stack size of the arguments. We can't easily tell the argument size here, so we just try 0, 4, 8...128. (128 bytes should be enough for anyone.) This is inefficient, but it's a one-time hit with a known number of functions, and doesn't seem to have any significant impact. The benefit of this in code is we don't need the DllImports any more, and we don't need to conditionally use `FindSymbol` - we just use it for everything, so things are rather more uniform and tidy. The further benefit of this is that the library name is no longer tied to a particular filename format - so if someone wanted to have a directory with the libraries for every version in, with the version in the filename, we'd handle that just fine. (At least once Testing: - Windows: - Console app under msbuild, dotnet cli and DNX - ASP.NET Classic under msbuild - ASP.NET Core (still running under net451) - Ubuntu 16.04 - Console app under dotnet cli, run with dotnet run and mono - OSX: - Console app under dotnet cli, run with dotnet run and mono Under dotnet cli, a dependency on `Microsoft.NETCore.Platforms` is required in order to force the libraries to be copied. This change does *not* further enable .NET Core. It attempts to keep the existing experimental .NET Core project files in line with the msbuild files, but I expect further work to be required for .NET Core, which has a different build/publication model. | ||
* | regenerate | Jan Tattermusch | 2016-06-29 |
| | |||
* | regenerate files | Jan Tattermusch | 2016-06-27 |
| | |||
* | remove occurences of NewClient factory method | Jan Tattermusch | 2016-06-22 |
| | |||
* | regenerate project.json files | Jan Tattermusch | 2016-06-21 |
| | |||
* | improve project.json files | Jan Tattermusch | 2016-06-20 |
| | |||
* | add debian.8-x64 to the list of runtimes | Jan Tattermusch | 2016-06-17 |
| | |||
* | address review comments | Jan Tattermusch | 2016-06-17 |
| | |||
* | migrate everything to netstandard1.5 | Jan Tattermusch | 2016-06-16 |
| | |||
* | update project.json | Jan Tattermusch | 2016-06-15 |
| | |||
* | update .xproj files | Jan Tattermusch | 2016-06-15 |
| | |||
* | prevent interfering of project.json files with .csproj files in VS2015 | Jan Tattermusch | 2016-06-15 |
| | |||
* | add support for CoreCLR | Jan Tattermusch | 2016-06-14 |
| | |||
* | Merge remote-tracking branch 'upstream/release-0_14' into HEAD | Jan Tattermusch | 2016-05-18 |
|\ | |||
| * | Update Grpc.sln to Google.Protobuf.3.0.0-beta3 | Jan Tattermusch | 2016-05-16 |
| | | |||
* | | add more examples and improve existing ones | Jan Tattermusch | 2016-05-10 |
|/ | |||
* | work around nunit issue #1406 | Jan Tattermusch | 2016-04-11 |
| | |||
* | make NUnitMain fail on failure | Jan Tattermusch | 2016-04-11 |
| | |||
* | use NUnitLite to run nunit tests | Jan Tattermusch | 2016-04-11 |
| | |||
* | add NUnitMain to test projects | Jan Tattermusch | 2016-04-11 |
| | |||
* | migrate Grpc.Examples.Tests to NUnit3 | Jan Tattermusch | 2016-04-11 |
| | |||
* | update nuget dependencies to nunit3 | Jan Tattermusch | 2016-04-11 |
| | |||
* | update C# dependencies | Jan Tattermusch | 2016-01-25 |
| | |||
* | include assembly signing key in the repo | Jan Tattermusch | 2016-01-21 |
| | |||
* | upgrade Grpc.sln to newest Google.Protobuf nuget | Jan Tattermusch | 2016-01-20 |
| | |||
* | introduce the new split-type credentials api | Jan Tattermusch | 2015-10-06 |
| | |||
* | error spec compliance and marshalling tests | Jan Tattermusch | 2015-08-27 |
| | |||
* | switch C# projects to Google.Protobuf 3.0.0-alpha4 package | Jan Tattermusch | 2015-08-27 |
| | |||
* | upgrade third_party/protobufs to 3.0.0-beta-1 | Jan Tattermusch | 2015-08-27 |
| | |||
* | Merge remote-tracking branch 'upstream/master' into csharp_upgrade_to_proto3 | Jan Tattermusch | 2015-08-26 |
|\ | | | | | | | | | Conflicts: src/csharp/Grpc.IntegrationTesting/InteropClient.cs | ||
| * | get rid of explicit GrpcEnvironment.Shutdown() | Jan Tattermusch | 2015-08-20 |
| | | |||
* | | Merge remote-tracking branch 'upstream/master' into csharp_upgrade_to_proto3 | Jan Tattermusch | 2015-08-13 |
|\| | | | | | | | | | | | | | | | | | | | Conflicts: src/csharp/Grpc.Core/VersionInfo.cs src/csharp/Grpc.Examples.Tests/MathClientServerTests.cs src/csharp/Grpc.IntegrationTesting/Grpc.IntegrationTesting.csproj src/csharp/Grpc.IntegrationTesting/InteropClient.cs src/csharp/Grpc.IntegrationTesting/packages.config src/csharp/build_packages.bat | ||
* | | upgrade to latest protobufs | Jan Tattermusch | 2015-08-13 |
| | | |||
| * | rename async extension methods for clarity | Jan Tattermusch | 2015-08-10 |
| | | |||
* | | switched to protobuf from 20150808 | Jan Tattermusch | 2015-08-08 |
| | | |||
* | | migrated code to proto3 | Jan Tattermusch | 2015-08-08 |
| | | |||
* | | upgraded NuGet package | Jan Tattermusch | 2015-08-08 |
| | | |||
| * | polishing tests | Jan Tattermusch | 2015-08-07 |
|/ | |||
* | changed the way ports are added to the server | Jan Tattermusch | 2015-08-04 |
| | |||
* | changed way service definitions are added to the server | Jan Tattermusch | 2015-08-04 |
| | |||
* | Add ReleaseSigned configuration for Grpc.sln | Jan Tattermusch | 2015-07-27 |
| | |||
* | only use lowercase metadata keys in headers | Jan Tattermusch | 2015-07-27 |
| | |||
* | introducing async tests | Jan Tattermusch | 2015-07-24 |
| | |||
* | make insecure channel and server explicit | Jan Tattermusch | 2015-07-24 |
| | |||
* | add MathService.Fib test with deadline | Jan Tattermusch | 2015-07-23 |
| | |||
* | implemented cancellation support for MathService.Fib | Jan Tattermusch | 2015-07-23 |
| |