Skip to content

Commit

Permalink
chore: Adjust warnings, reduce logging
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromelaban committed Nov 20, 2024
1 parent 47cf53c commit 0119b3e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
uses: microsoft/setup-msbuild@v1.1

- name: Windows-only Build
run: msbuild -r src\Uno.UI.RuntimeTests.Engine-win-only-build.slnf
run: msbuild -r -v:m src\Uno.UI.RuntimeTests.Engine-win-only-build.slnf

- name: Build
run: |
Expand Down
3 changes: 2 additions & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
<PropertyGroup>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NoWarn>$(NoWarn);CS1998</NoWarn><!--Lacks await in async-->
<NoWarn>$(NoWarn);CS1998</NoWarn> <!-- Lacks await in async -->
<NoWarn>$(NoWarn);NU1903</NoWarn> <!-- System.Private.Uri is transitively updated by the runtime -->
</PropertyGroup>

<PropertyGroup Condition="'$(TF_BUILD)' == 'true' or '$(GITHUB_ACTIONS)'=='true'">
Expand Down

0 comments on commit 0119b3e

Please sign in to comment.