Skip to content

Commit c4830fc

Browse files
committed
Fix path to jwk.ps1 alongside the SponsorLink.targets
1 parent 3b943f5 commit c4830fc

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/SponsorLink/SponsorLink.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
</Target>
136136

137137
<Target Name="DownloadDevloopedJwk" BeforeTargets="GetAssemblyAttributes" Inputs="$(MSBuildProjectFullPath)" Outputs="$(MSBuildProjectDirectory)\$(BaseIntermediateOutputPath)devlooped.jwk">
138-
<Exec Command='pwsh -nop -f "$(MSBuildThisFileDirectory)jwk.ps1"' ConsoleToMSBuild="true" EchoOff="true">
138+
<Exec Command="pwsh -nop -f $(MSBuildThisFileDirectory)jwk.ps1" ConsoleToMSBuild="true" EchoOff="true">
139139
<Output TaskParameter="ConsoleOutput" PropertyName="RawJwk"/>
140140
<Output TaskParameter="ExitCode" PropertyName="MSBuildLastExitCode" />
141141
</Exec>

src/SponsorLink/SponsorLink/SponsorLink.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
</ItemGroup>
4747

4848
<Target Name="DownloadDevloopedJwk" BeforeTargets="GetAssemblyAttributes" Inputs="$(MSBuildProjectFullPath)" Outputs="$(MSBuildProjectDirectory)\$(BaseIntermediateOutputPath)devlooped.jwk">
49-
<Exec Command='pwsh -nop -f "$(MSBuildThisFileDirectory)jwk.ps1"' ConsoleToMSBuild="true" EchoOff="true">
49+
<Exec Command="pwsh -nop -f $(MSBuildThisFileDirectory)..\jwk.ps1" ConsoleToMSBuild="true" EchoOff="true">
5050
<Output TaskParameter="ConsoleOutput" PropertyName="DevloopedJwk"/>
5151
<Output TaskParameter="ExitCode" PropertyName="MSBuildLastExitCode" />
5252
</Exec>

0 commit comments

Comments
 (0)