Description
In .net core, the dependencies are resolved from deps.json. The adapter must be referenced from a test project such that the MSTest.TestAdapter.dll is located by the test platform.
Currently, the nuget package ships with props files which copy the test adapter to output directories. It is not supported in .net core (see #6). What is the way forward?
- Ship different nuget package for each runtime
- Ship single nuget package, let the adapter be resolved from the corresponding runtime directory e.g.
netcoreapp1.0 for .net core.
Thoughts?
Description
In .net core, the dependencies are resolved from deps.json. The adapter must be referenced from a test project such that the
MSTest.TestAdapter.dllis located by the test platform.Currently, the nuget package ships with
propsfiles which copy the test adapter to output directories. It is not supported in .net core (see #6). What is the way forward?netcoreapp1.0for .net core.Thoughts?