Fix the path to SignedPackageFile items and include the VSIX .dll in code signing
This commit is contained in:
parent
ecbaf35d2f
commit
e4ebae107c
|
|
@ -43,6 +43,7 @@
|
||||||
</ArtifactInfo>
|
</ArtifactInfo>
|
||||||
|
|
||||||
<FilesToSign Include="$(VSIXOutputPath)" Certificate="Vsix" />
|
<FilesToSign Include="$(VSIXOutputPath)" Certificate="Vsix" />
|
||||||
|
<FilesToSign Include="$(RepositoryRoot)tooling/Microsoft.VisualStudio.RazorExtension/bin/$(Configuration)/Microsoft.VisualStudio.RazorExtension.dll" Certificate="Microsoft" />
|
||||||
<FilesToExcludeFromSigning Include="$(VSIXManifestOutputPath)" />
|
<FilesToExcludeFromSigning Include="$(VSIXManifestOutputPath)" />
|
||||||
<FilesToExcludeFromSigning Include="$(VSIXSymbolsOutputPath)" />
|
<FilesToExcludeFromSigning Include="$(VSIXSymbolsOutputPath)" />
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -30,18 +30,16 @@
|
||||||
|
|
||||||
<ItemGroup Condition="'$(TargetFramework)'==''">
|
<ItemGroup Condition="'$(TargetFramework)'==''">
|
||||||
<!-- Binaries produced in this project -->
|
<!-- Binaries produced in this project -->
|
||||||
<SignedPackageFile Include="tools/rzc.dll" Certificate="$(AssemblySigningCertName)" />
|
<SignedPackageFile Include="$(MSBuildProjectDirectory)\$(OutputPath)\tools/rzc.dll" Certificate="$(AssemblySigningCertName)" />
|
||||||
<SignedPackageFile Include="tools/Microsoft.AspNetCore.Razor.Language.dll" Certificate="$(AssemblySigningCertName)" />
|
|
||||||
<SignedPackageFile Include="tools/Microsoft.CodeAnalysis.Razor.dll" Certificate="$(AssemblySigningCertName)" />
|
|
||||||
|
|
||||||
<!-- Third-party assemblies -->
|
<!-- Third-party assemblies -->
|
||||||
<SignedPackageFile Include="tools/Newtonsoft.Json.dll" Certificate="3PartyDual" />
|
<SignedPackageFile Include="$(MSBuildProjectDirectory)\$(OutputPath)\tools/Newtonsoft.Json.dll" Certificate="3PartyDual" />
|
||||||
|
|
||||||
<!-- Binaries that should be signed by corefx/roslyn -->
|
<!-- Binaries that should be signed by corefx/roslyn -->
|
||||||
<ExcludePackageFileFromSigning Include="tools/Microsoft.CodeAnalysis.CSharp.dll" />
|
<ExcludePackageFileFromSigning Include="$(MSBuildProjectDirectory)\$(OutputPath)\tools/Microsoft.CodeAnalysis.CSharp.dll" />
|
||||||
<ExcludePackageFileFromSigning Include="tools/Microsoft.CodeAnalysis.dll" />
|
<ExcludePackageFileFromSigning Include="$(MSBuildProjectDirectory)\$(OutputPath)\tools/Microsoft.CodeAnalysis.dll" />
|
||||||
<ExcludePackageFileFromSigning Include="tools/runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll" />
|
<ExcludePackageFileFromSigning Include="$(MSBuildProjectDirectory)\$(OutputPath)\tools/runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll" />
|
||||||
<ExcludePackageFileFromSigning Include="tools/runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll" />
|
<ExcludePackageFileFromSigning Include="$(MSBuildProjectDirectory)\$(OutputPath)\tools/runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<Target Name="PopulateNuspec" BeforeTargets="GenerateNuspec">
|
<Target Name="PopulateNuspec" BeforeTargets="GenerateNuspec">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue