Skip to content

Commit 348f9a7

Browse files
authored
Use .snk file in StrongNameSignInfo example (#15260)
1 parent efdc52b commit 348f9a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Documentation/CorePackages/Signing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,11 +101,11 @@ The [default configuration](../../src/Microsoft.DotNet.Arcade.Sdk/tools/Sign.pro
101101

102102
#### 2. Use a different certificate for an specific Public Key Token
103103

104-
If you repo have signable files that have a different Public Key Token than the one preconfigured in the SDK (i.e., `31bf3856ad364e35`) you might add an entry to `StrongNameSignInfo` to specify the certificate name that should be used for those files. To do that, place an entry like the one show below in your `eng\Signing.props` file.
104+
If your repo has signable files that have a different Public Key Token than the one preconfigured in the SDK (i.e., `31bf3856ad364e35`) you might add an entry to `StrongNameSignInfo` to specify the certificate name that should be used for those files. To do that, place an entry like the one show below in your `eng\Signing.props` file.
105105

106106
```xml
107107
<ItemGroup>
108-
<StrongNameSignInfo Include="StrongName1" PublicKeyToken="4321abcda1b2c3d4" CertificateName="DifferentCertName" />
108+
<StrongNameSignInfo Include="(MSBuildThisFileDirectory)..\StrongName1.snk" PublicKeyToken="4321abcda1b2c3d4" CertificateName="DifferentCertName" />
109109
</ItemGroup>
110110
```
111111

0 commit comments

Comments
 (0)