mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-09-12 21:57:19 -04:00
A new DtoImporterService.Tests pinned MSTest 4.2.2, copied from a project file master has since moved to 4.3.3, so the merge held nine test projects at 4.3.3 and one at 4.2.2. NuGet lifted the shared MSTest.TestFramework to 4.3.3 while the 4.2.2 metapackage kept supplying the adapter, and the adapter refuses to run against a framework of a different version: 'Zero tests ran' on every platform. ApplicationServices references DtoImporterService, so its test project already sees the importers and needs no package reference of its own. One fewer project file to keep in step is the point. Co-authored-by: rmcrackan <rmcrackan@gmail.com>
5 lines
393 B
C#
5 lines
393 B
C#
// ApplicationServices.Tests rather than a DtoImporterService.Tests of its own: this project has no test
|
|
// assembly, and ApplicationServices references it, so its tests can already see the importers. A literal
|
|
// because the dependency runs the other way, leaving nothing here to take the name from.
|
|
[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("ApplicationServices.Tests")]
|