1. 14 Jun, 2017 2 commits
  2. 12 Jun, 2017 2 commits
  3. 07 Jun, 2017 3 commits
  4. 06 Jun, 2017 8 commits
  5. 05 Jun, 2017 2 commits
  6. 03 Jun, 2017 2 commits
  7. 02 Jun, 2017 1 commit
  8. 01 Jun, 2017 4 commits
  9. 31 May, 2017 1 commit
  10. 30 May, 2017 6 commits
  11. 29 May, 2017 3 commits
  12. 26 May, 2017 1 commit
  13. 25 May, 2017 1 commit
  14. 24 May, 2017 2 commits
    • Jon Skeet's avatar
      0b07d7eb
    • Jon Skeet's avatar
      Convert C# projects to MSBuild (csproj) format · f26e8c2a
      Jon Skeet authored
      This has one important packaging change: the netstandard version now
      depends (implicitly) on netstandard1.6.1 rather than on individual
      packages. This is the preferred style of dependency, and shouldn't
      affect any users - see http://stackoverflow.com/questions/42946951
      for details.
      
      The tests are still NUnit, but NUnit doesn't support "dotnet test"
      yet; the test project is now an executable using NUnitLite. (When
      NUnit supports dotnet test, we can adapt to it.)
      
      Note that the project will now only work in Visual Studio 2017 (and
      Visual Studio Code, and from the command line with the .NET Core
      1.0.0 SDK); Visual Studio 2015 does *not* support this project file
      format.
      f26e8c2a
  15. 23 May, 2017 2 commits
    • brian-peloton's avatar
      Removing undefined behavior and compiler warnings (#1315) · 40da1ed5
      brian-peloton authored
      * Comment out unused arguments.
      
      These last few are all that's needed to compile with -Wunused-arguments.
      
      * Fix missing struct field initializer.
      
      With this fix, everything compiles with -Wmissing-field-initializers.
      
      * Add support for disabling unaligned memory accesses on x86 too.
      
      ubsan doesn't like these because they are technically undefined
      behavior, so -DGOOGLE_PROTOBUF_DONT_USE_UNALIGNED will disable them easily.
      
      * Avoid undefined integer overflow.
      
      ubsan catches all of these.
      40da1ed5
    • Feng Xiao's avatar
      Merge pull request #3126 from mbrukman/fix-readme-formatting · ba987a7e
      Feng Xiao authored
      Fix Markdown formatting in README.
      ba987a7e