We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de34781 commit 676cb89Copy full SHA for 676cb89
4 files changed
Apps/Extract/Extract.csproj
@@ -11,5 +11,7 @@
11
12
<ItemGroup>
13
<None Include="$(SolutionDir)ClientData\**" CopyToOutputDirectory="PreserveNewest" LinkBase="ClientData\" />
14
+ <None Include="$(SolutionDir)ItemsReplace.xml" CopyToOutputDirectory="PreserveNewest" />
15
+ <None Include="$(SolutionDir)ItemsIgnore.xml" CopyToOutputDirectory="PreserveNewest" />
16
</ItemGroup>
17
</Project>
Apps/Extract/Program.cs
@@ -165,8 +165,8 @@ static void Main(string[] args)
165
}
166
167
168
- LoadXML("ignore.xml");
169
- LoadXML("replace.xml");
+ LoadXML("itemsIgnore.xml");
+ LoadXML("itemsReplace.xml");
170
171
Console.WriteLine($"Converting {filenames.Count} recordings...");
172
foreach (var filename in filenames)
0 commit comments