File tree Expand file tree Collapse file tree 4 files changed +12
-2
lines changed
Expand file tree Collapse file tree 4 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 6464
6565 - name : dotnet build
6666 working-directory : ./
67- run : dotnet build /bl CommunityToolkit.Tooling.sln
67+ run : dotnet build /bl CommunityToolkit.Tooling.sln -p:Configuration=Release
6868
6969 # Run tests
7070 - name : Install Testspace Module
7373 domain : ${{ github.repository_owner }}
7474
7575 - name : Run tests against Source Generators
76- run : dotnet test --logger "trx;LogFileName=sourceGeneratorTestResults.trx"
76+ run : dotnet test --logger "trx;LogFileName=sourceGeneratorTestResults.trx" -p:Configuration=Release
7777
7878 - name : Create test reports
7979 run : |
Original file line number Diff line number Diff line change 1+ // Licensed to the .NET Foundation under one or more agreements.
2+ // The .NET Foundation licenses this file to you under the MIT license.
3+ // See the LICENSE file in the project root for more information.
4+
15using Microsoft . CodeAnalysis ;
26using Microsoft . CodeAnalysis . Text ;
37
Original file line number Diff line number Diff line change 1+ // Licensed to the .NET Foundation under one or more agreements.
2+ // The .NET Foundation licenses this file to you under the MIT license.
3+ // See the LICENSE file in the project root for more information.
4+
15using Microsoft . CodeAnalysis ;
26using Microsoft . VisualStudio . TestTools . UnitTesting ;
37using System . Collections . Immutable ;
Original file line number Diff line number Diff line change @@ -19,7 +19,9 @@ public ToolkitSampleButtonCommand(Action callback)
1919 }
2020
2121 /// <inheritdoc />
22+ #pragma warning disable CS0067
2223 public event EventHandler ? CanExecuteChanged ;
24+ #pragma warning restore CS0067
2325
2426 /// <inheritdoc />
2527 public bool CanExecute ( object parameter )
You can’t perform that action at this time.
0 commit comments