Corrected mdb copy behavior.

This commit is contained in:
the_fiddler 2008-01-26 14:26:25 +00:00
parent 199ae0f760
commit 92576504e5
2 changed files with 2 additions and 2 deletions

Binary file not shown.

View file

@ -257,7 +257,7 @@ namespace OpenTK.Build
// Move the libraries and the config files.
FindFiles(SourcePath, "*.dll", dll_matches);
FindFiles(SourcePath, "OpenTK.pdb", dll_matches);
FindFiles(SourcePath, "OpenTK.mdb", dll_matches);
FindFiles(SourcePath, "OpenTK.dll.mdb", dll_matches);
foreach (string m in dll_matches)
{
File.Delete(Path.Combine(LibPath, Path.GetFileName(m)));
@ -278,7 +278,7 @@ namespace OpenTK.Build
// Then the examples.
FindFiles(Path.Combine(SourcePath, "Examples"), "*.exe", example_matches);
FindFiles(SourcePath, "Examples.pdb", example_matches);
FindFiles(SourcePath, "Examples.mdb", example_matches);
FindFiles(SourcePath, "Examples.exe.mdb", example_matches);
foreach (string m in example_matches)
{
File.Delete(Path.Combine(ExamplePath, Path.GetFileName(m)));