From 2000d3ab79666299523062171c85ea3a3b36f50c Mon Sep 17 00:00:00 2001 From: anna-dingler <98650930+anna-dingler@users.noreply.github.com> Date: Tue, 17 Jan 2023 16:09:35 -0800 Subject: [PATCH] [UWP][Infra] Update nuget files for release (#6576) (#8240) * [UWP][Infra] Update nuget files for release (#6576) * Add new nuspec files * Fix nuspec * Update build copy script * Add dependency to renderer * 1.5 website schema explorer updates (#6550) * Updating schema explorer properties * adding tableCell to toc and attempting whitespace fix * indentation fix indentation fix * Removing filtered prop Removing filtered prop - it's auto generated in our build Co-authored-by: RahulAmlekar * Custom.props to 1.0.0 for Object model build * Update dependency version Co-authored-by: Rahul Amlekar Co-authored-by: RahulAmlekar Co-authored-by: Rebecca Muraira * Remove blank lines Co-authored-by: almedina-ms <35784165+almedina-ms@users.noreply.github.com> Co-authored-by: Rahul Amlekar Co-authored-by: RahulAmlekar Co-authored-by: Rebecca Muraira --- source/uwp/Build/CopySignFiles.cmd | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/source/uwp/Build/CopySignFiles.cmd b/source/uwp/Build/CopySignFiles.cmd index 2a68b57984..92fe67eef1 100644 --- a/source/uwp/Build/CopySignFiles.cmd +++ b/source/uwp/Build/CopySignFiles.cmd @@ -4,10 +4,12 @@ REM This script copies the dll and winmd files to have different names to be sig REM setting platform variables set AC=AdaptiveCards set ACUWP=AdaptiveCards.Rendering.Uwp +set ACOM=AdaptiveCards.ObjectModel.Uwp REM setting path variables set ACROOT=source\uwp\ set ACPATH=AdaptiveCardRenderer\ +set ACPATHOM=AdaptiveCardsObjectModel\ set BINPATH=Release\ if "%2" == "" goto :usage @@ -34,6 +36,21 @@ call :checkedCopy %ACROOT%x64\Release\%ACPATH%%ACUWP%.dll tosign\%ACPATH%x64\%AC call :checkedCopy %ACROOT%ARM\Release\%ACPATH%%ACUWP%.dll tosign\%ACPATH%ARM\%ACUWP%.dll call :checkedCopy %ACROOT%ARM64\Release\%ACPATH%%ACUWP%.dll tosign\%ACPATH%ARM64\%ACUWP%.dll +REM AdaptiveCards +echo %ACPATHOM% +REM AdaptiveCards ObjectModel + +mkdir tosign\%ACPATHOM%\Win32 +mkdir tosign\%ACPATHOM%\x64 +mkdir tosign\%ACPATHOM%\ARM +mkdir tosign\%ACPATHOM%\ARM64 + +call :checkedCopy %ACROOT%\Release\%ACPATHOM%%ACOM%.winmd tosign\%ACPATHOM%%ACOM%.winmd +call :checkedCopy %ACROOT%Release\%ACPATHOM%%ACOM%.dll tosign\%ACPATHOM%Win32\%ACOM%.dll +call :checkedCopy %ACROOT%x64\Release\%ACPATHOM%%ACOM%.dll tosign\%ACPATHOM%x64\%ACOM%.dll +call :checkedCopy %ACROOT%ARM\Release\%ACPATHOM%%ACOM%.dll tosign\%ACPATHOM%ARM\%ACOM%.dll +call :checkedCopy %ACROOT%ARM64\Release\%ACPATHOM%%ACOM%.dll tosign\%ACPATHOM%ARM64\%ACOM%.dll + popd goto :end @@ -47,6 +64,13 @@ call :checkedCopy signed\%ACPATH%x64\%ACUWP%.dll %ACROOT%x64\Release\%ACPATH%%AC call :checkedCopy signed\%ACPATH%ARM\%ACUWP%.dll %ACROOT%ARM\Release\%ACPATH%%ACUWP%.dll call :checkedCopy signed\%ACPATH%ARM64\%ACUWP%.dll %ACROOT%ARM64\Release\%ACPATH%%ACUWP%.dll +REM AdaptiveCardsObjectModel +call :checkedCopy signed\%ACPATHOM%%ACOM%.winmd %ACROOT%Release\%ACPATHOM%%ACOM%.winmd +call :checkedCopy signed\%ACPATHOM%Win32\%ACOM%.dll %ACROOT%Release\%ACPATHOM%%ACOM%.dll +call :checkedCopy signed\%ACPATHOM%x64\%ACOM%.dll %ACROOT%x64\Release\%ACPATHOM%%ACOM%.dll +call :checkedCopy signed\%ACPATHOM%ARM\%ACOM%.dll %ACROOT%ARM\Release\%ACPATHOM%%ACOM%.dll +call :checkedCopy signed\%ACPATHOM%ARM64\%ACOM%.dll %ACROOT%ARM64\Release\%ACPATHOM%%ACOM%.dll + popd goto :end