Net Core Versions Questions

I am new to .Net core. I can not find the version list for the Net Core SDK. I read that there are three: 1.0.0, 1.1.0 (current) and 2.0.0 (future)

I followed the official documentation on how to work with the network core in Visual Studio 2015 and make it work, but still I can not understand the version.

In the library that I developed using the network core, he says the version is “1.0.0-preview2-003131” Is it 1.0.0? 1.0.1? Is this officially released or just a preview?

In addition, I have a unit test project using Net Framework 4.6.2. to check my dll. Is this normal if I want to test classes developed in Net Core? Is it correct?

Finally, I developed an ASP Net Core MVC web application that uses my clean core dll, it uses "netcoreapp1.0". As expected, they work great together. But how can I find out about compatibility between my net core dll and various versions of the network chassis?

Thank you in advance

+5
source share
2 answers

Comparison and Compatibility

In addition, I have a unit test project using Net Framework 4.6.2. to check my dll. Is this normal if I want to test classes developed in Net Core? Is it correct?

IMO is confident that its fine is up to the unit test of those classes that use this structure. Would I do it like this? No. I would test my unit tests within the same framework.

But how can I find out about compatibility between my net core dll and various versions of network frames?

See above GUIDE

+3
source

You can find all dotted clean kernels here .

'1.0.0-preview2-003131' is really a preview version, the latest version is 1.0.4.

I do not know if you can test a network project with a point network using a test project that launches 4.6.2, but there is a core core library for testing called xUnit.

You can link to 4.6 libraries inside the donet kernel, you can find out more here .

+1
source

Source: https://habr.com/ru/post/1265512/


All Articles