We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35c89dd commit f2cbc6aCopy full SHA for f2cbc6a
src/Xamarin.Android.Tools.AndroidSdk/Xamarin.Android.Tools.AndroidSdk.csproj
@@ -38,11 +38,16 @@
38
<PackageReference Include="XliffTasks" Version="1.0.0-beta.20420.1" PrivateAssets="all" />
39
</ItemGroup>
40
41
- <ItemGroup>
42
- <FilesToSign Include="$(OutDir)\$(AssemblyName).dll">
43
- <Authenticode>Microsoft400</Authenticode>
44
- </FilesToSign>
45
- </ItemGroup>
+ <Target Name="GetFilesToSign" BeforeTargets="SignFiles">
+ <ItemGroup>
+ <FilesToSign Include="$(OutDir)\$(AssemblyName).dll">
+ <Authenticode>Microsoft400</Authenticode>
+ </FilesToSign>
46
+ <FilesToSign Include="$(OutDir)\**\$(AssemblyName).resources.dll">
47
48
49
+ </ItemGroup>
50
+ </Target>
51
52
<ItemGroup>
53
<Compile Update="Properties\Resources.Designer.cs">
0 commit comments