Skip to content

Commit 1158ffb

Browse files
Fix paths for task that only runs in CI
1 parent 1bf9e05 commit 1158ffb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build/repo.targets

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<UsingTask
55
TaskName="PullRequestSubmitter.PullRequestTask"
6-
AssemblyFile="$(MSBuildThisFileDirectory)..\tools\PullRequestSubmitter\bin\Debug\netcoreapp2.0\PullRequestSubmitter.dll" />
6+
AssemblyFile="$(MSBuildThisFileDirectory)..\tools\PullRequestSubmitter\bin\Release\netcoreapp2.0\PullRequestSubmitter.dll" />
77

88
<Target Name="PushNuGetPackages">
99
<ItemGroup>
@@ -16,7 +16,7 @@
1616
<PropertyGroup>
1717
<!-- Read the ASP.NET Core package version from a .deps.json file, because
1818
the CI server doesn't otherwise have that information to supply -->
19-
<DepsFilePath>$(MSBuildThisFileDirectory)..\tools\DependencyUpdater\bin\Debug\netstandard2.0\DependencyUpdater.deps.json</DepsFilePath>
19+
<DepsFilePath>$(MSBuildThisFileDirectory)..\tools\DependencyUpdater\bin\Release\netstandard2.0\DependencyUpdater.deps.json</DepsFilePath>
2020
<DepsFileContent>$([System.IO.File]::ReadAllText('$(DepsFilePath)'))</DepsFileContent>
2121
<AspNetCoreRuntimePackageVersion>$([System.Text.RegularExpressions.Regex]::Match($(DepsFileContent), `\s+"Microsoft.AspNetCore": "([^"]+)"`).Groups[1].Value)</AspNetCoreRuntimePackageVersion>
2222
</PropertyGroup>

0 commit comments

Comments
 (0)