Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 17 additions & 8 deletions docs/Coding-Guidelines/GettingStarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,14 +74,23 @@ Troubleshoot build problems by enabling binary logging (e.g. `msbuild...-bl`) an

### Common Build Errors

PROBLEM 001: Expired Test Certificate
SYMPTOMS:
VS ErrorList:
MSB3073 The command "signtool.exe sign ..." exited with code 1...\MakeMsix.targets...
Build Output:
Build Output: EXEC : SignTool error : No certificates were found that met all the given criteria.
...\MakeMsix.targets...error MSB3073: The command "signtool.exe sign ..." exited with code 1.
SOLUTION: Run DevCheck.cmd (from an admin prompt). This detects the expired certificate and prompts to create a new one.
#### Problem 001: Expired Test Certificate

##### Symptoms

###### VS ErrorList:

```MSB3073 The command "signtool.exe sign ..." exited with code 1...\MakeMsix.targets...```

###### Build Output:

```
Build Output: EXEC : SignTool error : No certificates were found that met all the given criteria.
...\MakeMsix.targets...error MSB3073: The command "signtool.exe sign ..." exited with code 1.
```
##### Solution

Run `DevCheck.cmd` (from an admin prompt). This detects the expired certificate and prompts to create a new one.

## Testing Tips

Expand Down
Loading