mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-24 02:35:36 +00:00
Corrected mdb copy behavior.
This commit is contained in:
parent
199ae0f760
commit
92576504e5
BIN
Build/Build.exe
BIN
Build/Build.exe
Binary file not shown.
|
@ -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)));
|
||||
|
|
Loading…
Reference in a new issue