-
Notifications
You must be signed in to change notification settings - Fork 234
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
.NET Core support #240
.NET Core support #240
Conversation
72663df
to
e6ed141
Compare
so far, the integration tests are running without major flaws. 👍 |
When preparing scripts and project.json for nuget packaging and publishing, I bumped into https://github.com/dotnet/cli/issues/3040. |
Part of the appveyor build matrix is failing due to a bug in Cassandra on Windows, otherwise it looks good. |
Currently all tests are running smoothly, I copy some numbers: .NET Framework 4.5:
.Net Core 1.0:
There are fewer test that run against .NET Core because Moq doesn't support it yet. The integration tests run against different Cassandra versions on appveyor. |
Looking good @jorgebay . I am working on jenkins side. So far, the only issue that I am facing its regarding the nunit3 report (which is not compatible). More details at the PR I will create later. |
👍 LGTM |
quick question, with these merge this driver will support .net core? or still on beta? |
@afoliaco The driver will support .NET Core 1.0 and .NET Framework 4.5 in version 3.1 of the driver. We will first release a beta 3.1 version of the driver and then a general availability of 3.1 (aka RTM). |
- lz4net to 1.0.10 - Update NUnit to 3.2 - Remove test dependencies ssh and commandline
Appveyor: use build matrix for ci_type and target runtime Travis: Only build .NET Core target on travis Test: use exception derived type Test: Removed unused variable
Adapt tests from master
Created pack.bat script to workaround dotnet/cli#3040. Removed msbuild based packaging scripts
Make Cassandra project compatible with corefx. Include dotnet solution. Target ".netstandard1.5" Use dotnet-test-nunit as runner. Unify test dependencies. Exclude LZ4 tests from .NET Core build. Replace TaskHelper.Continue() calls with await. Include dotnet cli builds to travis and appveyor. Created pack.bat script to workaround dotnet/cli#3040. Removed msbuild based packaging scripts. Update dependencies: - lz4net to 1.0.10 - Update NUnit to 3.4 - Remove test dependencies ssh and commandline
Merged! |
lz4net has experimental support for .NET core now |
Nice! Thanks @MiloszKrajewski , we will give it a try. |
Great news! My team waiting anxiously for this.
… On 10 Mar 2017, at 6:54 pm, Jorge Bay Gondra ***@***.***> wrote:
Nice! Thanks @MiloszKrajewski , we will give it a try.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.
|
This is a work in progress, available for early review and testing.
Supports building and running tests using both .NET Framework toolchain (msbuild) and .NET Core (dotnet cli). msbuild will still be supported until .NET Core toolchain gets a general availability release (currently in preview mode).
.NET Framework v4.0 support is dropped, making v4.5 the lower supported version.
Some limitations:
In progress / done: