[msbuild] Show an error if an app tries to link with a static library when building for Hot Restart. #12051
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Autoformat code | |
on: pull_request | |
# This action only need a single permission in order to autoformat the code. | |
permissions: | |
contents: read | |
jobs: | |
autoformat-code: | |
name: Autoformat code | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Autoformat' | |
uses: rolfbjarne/[email protected] | |
with: | |
script: ./tools/autoformat.sh | |
git_user_email: '[email protected]' | |
git_user_name: 'GitHub Actions Autoformatter' |