diff options
| author | levlam <levlam@telegram.org> | 2024-12-05 15:49:54 +0300 |
|---|---|---|
| committer | levlam <levlam@telegram.org> | 2024-12-05 15:49:54 +0300 |
| commit | c85b20a41a9d2d18abf340bed98daa3079641643 (patch) | |
| tree | a4fd7ed771b53adad990956222b3a51ecac4c1c3 /example/uwp | |
| parent | 21e68136d5a22b23e12471c3b9168046693bc478 (diff) | |
Don't alter build directory names in UWP example.
Diffstat (limited to 'example/uwp')
| -rw-r--r-- | example/uwp/build.ps1 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/example/uwp/build.ps1 b/example/uwp/build.ps1 index 4bc4eaee5..2c53e4086 100644 --- a/example/uwp/build.ps1 +++ b/example/uwp/build.ps1 @@ -54,7 +54,7 @@ function config { ForEach ($arch in $arch_list) { echo "Config Arch = [$arch]" - New-Item -ItemType Directory -Force -Path $arch.ToLower() + New-Item -ItemType Directory -Force -Path $arch cd $arch echo "${td_root}" $fixed_arch = $arch @@ -133,8 +133,8 @@ function export-nupkg { New-Item -ItemType Directory -Force -Path nupkg/lib/uap10.0 ForEach ($config in $config_list) { - cp ${fixed_arch}/${config}/* -include "SSLEAY*","LIBEAY*","libcrypto*","libssl*","zlib*","Telegram.Td.pdb","Telegram.Td.pri","Telegram.Td.dll" nupkg/runtimes/win10-${fixed_arch}/native - cp ${fixed_arch}/${config}/* -include "Telegram.Td.winmd","Telegram.Td.xml" nupkg/lib/uap10.0 + cp ${arch}/${config}/* -include "SSLEAY*","LIBEAY*","libcrypto*","libssl*","zlib*","Telegram.Td.pdb","Telegram.Td.pri","Telegram.Td.dll" nupkg/runtimes/win10-${fixed_arch}/native + cp ${arch}/${config}/* -include "Telegram.Td.winmd","Telegram.Td.xml" nupkg/lib/uap10.0 } } |
