Skip to content
This repository was archived by the owner on May 1, 2024. It is now read-only.

Commit 3ee6ea5

Browse files
[azdo] fix signing tasks (#16)
It appears that the .yaml template I use for signing expects at least a `SignList.xml` now: Get-Content : Cannot find path 'C:\A\1\_temp\artifact-signing\unsigned\nuget-unsigned\SignList.xml' because it does not exist. This repo is unique because there are not actually any `.dll` files to sign. The NuGet package is only `.targets` files. For now, I've added a `SignList.xml` with no items. If I ever add a `.dll` file one day, I'll have an example to follow.
1 parent 7d73ae0 commit 3ee6ea5

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<Project>
2+
<!--
3+
NOTE: if this package ever has .dll files:
4+
<ItemGroup>
5+
<FirstParty Include="Xamarin.Legacy.Sdk.dll" />
6+
</ItemGroup>
7+
-->
8+
</Project>

src/Xamarin.Legacy.Sdk/Xamarin.Legacy.Sdk.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
<ItemGroup>
1919
<None Include="../../LICENSE" Pack="true" PackagePath="/" />
2020
<None Update="@(None)" Pack="true" PackagePath="/" />
21+
<None Update="SignList.xml" Pack="false" CopyToOutputDirectory="PreserveNewest" />
2122
</ItemGroup>
2223
<Target Name="_ClearNuGetCache" BeforeTargets="Build">
2324
<RemoveDir Directories="$(MSBuildThisFileDirectory)../../packages/xamarin.legacy.sdk/" />

0 commit comments

Comments
 (0)