Skip to content
This repository was archived by the owner on Feb 12, 2023. It is now read-only.

Commit bf8f160

Browse files
committed
Fix .targets reference to LinkPdbToGitRemote
1 parent 0a08eb6 commit bf8f160

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/GitLinkTask/GitLink.targets

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33

4-
<UsingTask TaskName="GitLink" AssemblyFile="$(MSBuildThisFileDirectory)GitLinkTask.dll" />
4+
<UsingTask TaskName="LinkPdbToGitRemote" AssemblyFile="$(MSBuildThisFileDirectory)GitLinkTask.dll" />
55

66
<Target Name="LinkSymbolsToRemoteGitRepo"
77
AfterTargets="Compile"
88
Condition=" '$(GitLinkEnabled)' == 'true' ">
9-
<GitLink Condition=" Exists('$(IntermediateOutputPath)$(TargetName).pdb') "
9+
<LinkPdbToGitRemote Condition=" Exists('$(IntermediateOutputPath)$(TargetName).pdb') "
1010
PdbFile="$(IntermediateOutputPath)$(TargetName).pdb"
1111
Method="$(GitLinkMethod)"
1212
SkipVerify="$(GitLinkSkipVerify)"

0 commit comments

Comments
 (0)