Skip to content

Commit

Permalink
Ensure readme is encoded in UTF-8
Browse files Browse the repository at this point in the history
  • Loading branch information
kzu committed Sep 2, 2024
1 parent e37b8c3 commit 99b1d76
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/dotnet-retest/dotnet-retest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@
</ItemGroup>

<Target Name="RenderHelp" AfterTargets="Build" Condition="$(DesignTimeBuild) != 'true'">
<WriteLinesToFile Lines="```shell" Overwrite="true" File="help.md" />
<Exec Command="dotnet run --no-build -- --help &gt;&gt; help.md"
<WriteLinesToFile Lines="```shell" Overwrite="true" Encoding="UTF-8" File="help.md" />
<Exec Command="dotnet run --no-build -- --help &gt;&gt; help.md" StdOutEncoding="UTF-8"
EnvironmentVariables="NO_COLOR=true" />
<WriteLinesToFile Lines="```" Overwrite="false" File="help.md" />
<WriteLinesToFile Lines="```" Overwrite="false" Encoding="UTF-8" File="help.md" />
</Target>

</Project>
2 changes: 1 addition & 1 deletion src/dotnet-retest/help.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
```shell
```shell
USAGE:
dotnet retest [OPTIONS] [-- [dotnet test options]]

Expand Down
2 changes: 1 addition & 1 deletion src/dotnet-retest/readme.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<!-- include ../../readme.md#content -->
<!-- include ../../readme.md#content -->
<!-- include https://github.com/devlooped/sponsors/raw/main/footer.md -->
<!-- exclude -->

0 comments on commit 99b1d76

Please sign in to comment.