File tree Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -147,6 +147,13 @@ jobs:
147
147
TEST_PROJECT_DIRECTORY : components/CiTestExp
148
148
149
149
steps :
150
+ - name : Configure Pagefile
151
+
152
+ with :
153
+ minimum-size : 32GB
154
+ maximum-size : 32GB
155
+ disk-root : " C:"
156
+
150
157
- name : Install .NET SDK v${{ env.DOTNET_VERSION }}
151
158
uses : actions/setup-dotnet@v3
152
159
with :
Original file line number Diff line number Diff line change 4
4
<ItemGroup Condition =" '$(IsUno)' == 'true'" >
5
5
<PackageReference Include =" Uno.UI" Version =" 4.6.18" />
6
6
</ItemGroup >
7
-
7
+
8
8
<PropertyGroup Condition =" '$(IsUno)' == 'true'" >
9
9
<UnoUIUseRoslynSourceGenerators >true</UnoUIUseRoslynSourceGenerators >
10
10
</PropertyGroup >
20
20
<ItemGroup Condition =" '$(IsWpfHead)' == 'true'" >
21
21
<PackageReference Include =" Uno.UI.Skia.Wpf" Version =" 4.6.18" />
22
22
</ItemGroup >
23
+
23
24
<PropertyGroup Condition =" '$(IsWpfHead)' == 'true'" >
24
25
<!-- Ignorable issue from SkiaSharp package, see: https://github.com/CommunityToolkit/Labs-Windows/pull/119#issuecomment-1125373091 -->
25
26
<NoWarn >$(NoWarn);NU1701</NoWarn >
26
27
</PropertyGroup >
27
28
29
+ <PropertyGroup >
30
+ <!--
31
+ Uno uses IDisposable internally, but exposes it publicly.
32
+ See https://github.com/CommunityToolkit/Labs-Windows/pull/275#issuecomment-1331113635
33
+ -->
34
+ <NoWarn >$(NoWarn);CA1063;CA1001;</NoWarn >
35
+ </PropertyGroup >
36
+
28
37
<ItemGroup Condition =" '$(IsWasmHead)' == 'true'" >
29
38
<PackageReference Include =" Uno.UI.WebAssembly" Version =" 4.6.18" />
30
39
</ItemGroup >
You can’t perform that action at this time.
0 commit comments