mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-25 16:25:37 +00:00
Corrected mdb copy behavior.
This commit is contained in:
parent
76566b840e
commit
20667c4788
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.
|
// Move the libraries and the config files.
|
||||||
FindFiles(SourcePath, "*.dll", dll_matches);
|
FindFiles(SourcePath, "*.dll", dll_matches);
|
||||||
FindFiles(SourcePath, "OpenTK.pdb", 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)
|
foreach (string m in dll_matches)
|
||||||
{
|
{
|
||||||
File.Delete(Path.Combine(LibPath, Path.GetFileName(m)));
|
File.Delete(Path.Combine(LibPath, Path.GetFileName(m)));
|
||||||
|
@ -278,7 +278,7 @@ namespace OpenTK.Build
|
||||||
// Then the examples.
|
// Then the examples.
|
||||||
FindFiles(Path.Combine(SourcePath, "Examples"), "*.exe", example_matches);
|
FindFiles(Path.Combine(SourcePath, "Examples"), "*.exe", example_matches);
|
||||||
FindFiles(SourcePath, "Examples.pdb", 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)
|
foreach (string m in example_matches)
|
||||||
{
|
{
|
||||||
File.Delete(Path.Combine(ExamplePath, Path.GetFileName(m)));
|
File.Delete(Path.Combine(ExamplePath, Path.GetFileName(m)));
|
||||||
|
|
Loading…
Reference in a new issue