Skip to content
This repository has been archived by the owner on Jan 3, 2020. It is now read-only.

Add missing node.dll to headed app and fix minor issue in test script #30

Merged
merged 1 commit into from
Aug 11, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Headed/nodeuwpui/nodeuwpui.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,9 @@
<AppxManifest Include="Package.appxmanifest">
<SubType>Designer</SubType>
</AppxManifest>
<None Include="$(NODE_DIR)\$(Configuration)\node.dll">
<DeploymentContent>true</DeploymentContent>
</None>
<None Include="nodeuwpui_TemporaryKey.pfx" />
</ItemGroup>
<ItemGroup>
Expand Down
3 changes: 2 additions & 1 deletion Test/run.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -133,12 +133,13 @@ if([string]::IsNullOrEmpty($appl)) {
}

$appxFolderPath = $app.TrimEnd('\')
$appxFolderPath += '\'
$testSrcPath = $test
$appLauncherPath = $appl

# Install appx certificate to TrustedPeople
$cerFileName = Get-Childitem -path $appxFolderPath -filter *.cer
$certPath = $appxFolderPath + '\' + $cerFileName
$certPath = $appxFolderPath + $cerFileName
Import-Certificate -FilePath $certPath -CertStoreLocation cert:\LocalMachine\TrustedPeople


Expand Down