Having to manually add it is rough--especially if you want to use the current Configuraiton (Debug or Release).
using Xunit.Harness;
#if DEBUG
[assembly: RequireExtension(@"..\..\..\..\..\VS.Data.Sqlite\bin\Debug\VisualStudio.Data.Sqlite.vsix")]
#else
[assembly: RequireExtension(@"..\..\..\..\..\VS.Data.Sqlite\bin\Release\VisualStudio.Data.Sqlite.vsix")]
#endif
...doing it in MSBuild is a bit better but still not great.
<ItemGroup>
<AssemblyAttribute Include="Xunit.Harness.RequireExtension">
<_Parameter1>..\..\..\..\..\VS.Data.Sqlite\bin\$(Configuration)\VisualStudio.Data.Sqlite.vsix</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
Having to manually add it is rough--especially if you want to use the current Configuraiton (Debug or Release).
...doing it in MSBuild is a bit better but still not great.