8 lines
391 B
XML
8 lines
391 B
XML
<Project>
|
|
<Target Name="_RunNanoTests" DependsOnTargets="Restore" Condition="'$(RUN_TESTS_ON_NANO)' == 'true'">
|
|
<MSBuild Targets="VSTest"
|
|
Projects="$(MSBuildThisFileDirectory)..\test\MusicStore.E2ETests\MusicStore.E2ETests.csproj"
|
|
Properties="Configuration=$(Configuration);VSTestLogger=trx;VSTestTestCaseFilter=E2ETests=NanoServer" />
|
|
</Target>
|
|
</Project>
|