aboutsummaryrefslogtreecommitdiff
path: root/csharp/src/packages/repositories.config
Commit message (Collapse)AuthorAgeFilesLines
* Convert C# projects to MSBuild (csproj) formatJon Skeet2017-05-241-4/+0
| | | | | | | | | | | | | | | | | 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.
* First pass at the big rename from ProtocolBuffers to Google.Protobuf.Jon Skeet2015-07-171-2/+1
| | | | We'll see what I've missed when CI fails...
* Change to using xUnit for all unit tests, and fetch that via NuGet.Jon Skeet2015-04-301-0/+5
This includes fetching the VS unit test runner package, so that tests can be run from Visual Studio's Test Explorer.