Skip to content

Commit 6f27374

Browse files
committed
Add error.vmap
1 parent ade15c1 commit 6f27374

3 files changed

Lines changed: 5 additions & 11 deletions

File tree

Tests/Resources/error.vmap

467 KB
Binary file not shown.

Tests/Tests.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,10 @@ protected static string OutPath
4646
protected static string[] GetDmxFiles()
4747
{
4848
var path = Path.Combine(TestContext.CurrentContext.TestDirectory, "Resources");
49-
return Directory.GetFiles(path, "*.dmx");
49+
return Enumerable.Concat(
50+
Directory.GetFiles(path, "*.dmx"),
51+
Directory.GetFiles(path, "*.vmap")
52+
).ToArray();
5053
}
5154

5255
protected static void Cleanup()

Tests/Tests.csproj

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,7 @@
88
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
99
</PropertyGroup>
1010
<ItemGroup>
11-
<None Update="Resources\binary4.dmx">
12-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
13-
</None>
14-
<None Update="Resources\overboss_run.dmx">
15-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
16-
</None>
17-
<None Update="Resources\taunt05.dmx">
18-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
19-
</None>
20-
<None Update="Resources\taunt05_b5.dmx">
11+
<None Include="Resources\**">
2112
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
2213
</None>
2314
</ItemGroup>

0 commit comments

Comments
 (0)