Skip to content

Commit fbf9929

Browse files
committed
No longer loading old signing targets.
1 parent 0b6cae8 commit fbf9929

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

build/sign.proj

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="14.0" DefaultTargets="All" InitialTargets="CheckSigningPaths" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Project ToolsVersion="14.0" DefaultTargets="All" InitialTargets="CheckCISignRepo" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<Root>$(MSBuildThisFileDirectory)..\</Root>
55
<Configuration Condition="'$(Configuration)' == ''">Release</Configuration>
@@ -8,15 +8,12 @@
88
<PowerShell>C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe</PowerShell>
99
</PropertyGroup>
1010

11-
<Target Name="CheckSigningPaths">
12-
<Error Text="SigningToolsPath is not assigned a file path!" Condition="'$(SigningToolsPath)' == ''" />
13-
<Error Text="The SigningToolsPath directory does not exist!" Condition="!Exists($(SigningToolsPath))" />
14-
<Error Text="CISignRepoPath is not assigned a file path!" Condition="'$(CISignRepoPath)' == ''" />
15-
<Error Text="The CISignRepoPath directory does not exist!" Condition="!Exists($(CISignRepoPath))" />
11+
<Target Name="CheckCISignRepo">
12+
<Error Text="CISignRepo is not assigned a file path!" Condition="'$(CISignRepo)' == ''" />
13+
<Error Text="The CISignRepo directory does not exist!" Condition="!Exists($(CISignRepo))" />
1614
</Target>
1715

18-
<Import Project="$(SigningToolsPath)\Microsoft.WindowsAzure.Build.OnPremise.msbuild" />
19-
<UsingTask TaskName="ESRPSignTask" AssemblyFile="$(CISignRepoPath)\tools\sdkbuildtools\tasks\MS.Az.Sdk.OnPremise.Build.Tasks.dll" />
16+
<UsingTask TaskName="ESRPSignTask" AssemblyFile="$(CISignRepo)\tools\sdkbuildtools\tasks\MS.Az.Sdk.OnPremise.Build.Tasks.dll" />
2017

2118
<Target Name="net452">
2219
<Message Importance="high" Text="Sign: net452 started" />

0 commit comments

Comments
 (0)