Skip to content

Commit

Permalink
Merge pull request #8 from jasoth/master
Browse files Browse the repository at this point in the history
Allow scripts to be run from a network location
  • Loading branch information
NileshGhodekar committed Feb 18, 2016
2 parents 0a2a89b + 6eb45ec commit 51263ca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Scripts/Register.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ $VerbosePreference = "Continue"
$ProgressPreference = "SilentlyContinue"

$walAssemblyName = "MicrosoftServices.IdentityManagement.WorkflowActivityLibrary"
$walAssemblyPath = Join-Path $PWD -ChildPath "$walAssemblyName.dll"
$walUIAssemblyPath = Join-Path $PWD -ChildPath "$walAssemblyName.UI.dll"
$gacUtilExePath = Join-Path $PWD -ChildPath "gacutil.exe"
$snExePath = Join-Path $PWD -ChildPath "sn.exe"
$walAssemblyPath = Join-Path $PWD.ProviderPath -ChildPath "$walAssemblyName.dll"
$walUIAssemblyPath = Join-Path $PWD.ProviderPath -ChildPath "$walAssemblyName.UI.dll"
$gacUtilExePath = Join-Path $PWD.ProviderPath -ChildPath "gacutil.exe"
$snExePath = Join-Path $PWD.ProviderPath -ChildPath "sn.exe"

function TestIsAssemblyLoaded
{
Expand Down
Binary file modified src/Scripts/UpdateWorkflowXoml.ps1
Binary file not shown.

0 comments on commit 51263ca

Please sign in to comment.