Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is Intellitest Available for .NET Standard Libraries?

Tags:

I'm using Visual Studio 2017 15.1 (26403.7). In some of my projects I have a menu to generate tests with IntelliTest, in other projects this menu option does not exist.

Specifically in .NET Standard Libraries (at a minimum 1.2 and 1.6) the IntelliTest option is not present.

Is IntelliTest not available for .NET Standard Libraries or do I need to install additional plugins or configure additional options?

like image 703
Kevin Avatar asked May 12 '17 14:05

Kevin


People also ask

Can I use .NET standard library in .NET Core?

NET Core supports the . NET Standard Library, which allows your library to be called by any . NET platform that supports that version of the . NET Standard Library.

What is Visual Studio IntelliTest?

Applies to: Visual Studio Visual Studio for Mac Visual Studio Code. IntelliTest enables you to find bugs early, and reduces test maintenance costs. Using an automated and transparent testing approach, IntelliTest can generate a candidate suite of tests for your . NET code.

Can we use net standard library in .NET framework?

This compatibility mode allows .NET Standard projects to reference .NET Framework libraries as if they were compiled for .NET Standard. Referencing .NET Framework libraries doesn't work for all projects, such as libraries that use Windows Presentation Foundation (WPF) APIs.

What is the difference between .NET Standard and .NET Framework class library?

. Net Core does not support desktop application development and it rather focuses on the web, windows mobile, and windows store. . Net Framework is used for the development of both desktop and web applications as well as it supports windows forms and WPF applications.


1 Answers

It is not supported on .NET Standard. Presently, it is supported only for .NET Framework.

like image 135
pvlakshm Avatar answered Sep 25 '22 11:09

pvlakshm