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 64
64
65
65
- name : dotnet build
66
66
working-directory : ./
67
- run : dotnet build /bl CommunityToolkit.Tooling.sln
67
+ run : dotnet build /bl CommunityToolkit.Tooling.sln -p:Configuration=Release
68
68
69
69
# Run tests
70
70
- name : Install Testspace Module
73
73
domain : ${{ github.repository_owner }}
74
74
75
75
- 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
77
77
78
78
- name : Create test reports
79
79
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
+
1
5
using Microsoft . CodeAnalysis ;
2
6
using Microsoft . CodeAnalysis . Text ;
3
7
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
+
1
5
using Microsoft . CodeAnalysis ;
2
6
using Microsoft . VisualStudio . TestTools . UnitTesting ;
3
7
using System . Collections . Immutable ;
Original file line number Diff line number Diff line change @@ -19,7 +19,9 @@ public ToolkitSampleButtonCommand(Action callback)
19
19
}
20
20
21
21
/// <inheritdoc />
22
+ #pragma warning disable CS0067
22
23
public event EventHandler ? CanExecuteChanged ;
24
+ #pragma warning restore CS0067
23
25
24
26
/// <inheritdoc />
25
27
public bool CanExecute ( object parameter )
You can’t perform that action at this time.
0 commit comments