File tree Expand file tree Collapse file tree 7 files changed +41
-3
lines changed
MultiTarget/PackageReferences Expand file tree Collapse file tree 7 files changed +41
-3
lines changed Original file line number Diff line number Diff line change 95
95
PROJECT_DIRECTORY : tooling/ProjectTemplate
96
96
97
97
steps :
98
+ - name : Configure Pagefile
99
+
100
+ with :
101
+ minimum-size : 32GB
102
+ maximum-size : 32GB
103
+ disk-root : " C:"
104
+
98
105
- name : Install .NET SDK v${{ env.DOTNET_VERSION }}
99
106
uses : actions/setup-dotnet@v3
100
107
with :
@@ -140,6 +147,13 @@ jobs:
140
147
TEST_PROJECT_DIRECTORY : components/CiTestExp
141
148
142
149
steps :
150
+ - name : Configure Pagefile
151
+
152
+ with :
153
+ minimum-size : 32GB
154
+ maximum-size : 32GB
155
+ disk-root : " C:"
156
+
143
157
- name : Install .NET SDK v${{ env.DOTNET_VERSION }}
144
158
uses : actions/setup-dotnet@v3
145
159
with :
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ if ($IncludeHeads -ne 'uwp')
70
70
if ($UseDiagnostics.IsPresent )
71
71
{
72
72
$sdkoptions = " -d"
73
- $diagnostics = ' -bl:slngen.binlog --consolelogger:"ShowEventId;Summary;Verbosity=Detailed" --filelogger:"LogFile=slngen.log;Append;Verbosity=Diagnostic;Encoding=UTF-8" '
73
+ $diagnostics = ' -bl:slngen.binlog --consolelogger:"ShowEventId;Summary;Verbosity=Detailed" '
74
74
}
75
75
else
76
76
{
Original file line number Diff line number Diff line change 26
26
<NoWarn >$(NoWarn);NU1701</NoWarn >
27
27
</PropertyGroup >
28
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
+
29
37
<ItemGroup Condition =" '$(IsWasmHead)' == 'true'" >
30
38
<PackageReference Include =" Uno.UI.WebAssembly" Version =" 4.6.18" />
31
39
</ItemGroup >
Original file line number Diff line number Diff line change 49
49
50
50
<Capabilities >
51
51
<Capability Name =" internetClient" />
52
+ <DeviceCapability Name =" webcam" />
52
53
</Capabilities >
53
54
</Package >
Original file line number Diff line number Diff line change 22
22
</PropertyGroup >
23
23
24
24
<PropertyGroup Condition =" '$(Configuration)' == 'Release'" >
25
- <UseDotNetNativeToolchain >true</UseDotNetNativeToolchain >
25
+ <!-- Don't overwrite if already defined. Needed for disabling .NET Native in test projects. -->
26
+ <UseDotNetNativeToolchain Condition =" '$(UseDotNetNativeToolchain)' == ''" >true</UseDotNetNativeToolchain >
27
+
28
+ <!--
29
+ Workarounds for ILT0005: Out of memory.
30
+ -->
31
+ <IlcParameters >/ExtraNutcArguments:"/d2threads1"</IlcParameters >
32
+ <SingleThreadNUTC >true</SingleThreadNUTC >
33
+ <Use64BitCompiler >true</Use64BitCompiler >
34
+ <OutOfProcPDB >true</OutOfProcPDB >
26
35
</PropertyGroup >
27
36
28
37
<PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'Debug|x86'" >
29
38
<DebugSymbols >true</DebugSymbols >
30
39
<OutputPath >bin\x86\Debug\</OutputPath >
31
- <DefineConstants >$(DefineConstants);DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants >
40
+ <DefineConstants >$(DefineConstants);DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants >
32
41
<DebugType >full</DebugType >
33
42
<PlatformTarget >x86</PlatformTarget >
34
43
<UseVSHostingProcess >false</UseVSHostingProcess >
121
130
<PackageReference Include =" Microsoft.NETCore.UniversalWindowsPlatform" >
122
131
<Version >6.2.12</Version >
123
132
</PackageReference >
133
+ <PackageReference Include =" PolySharp" Version =" 1.13.1" >
134
+ <PrivateAssets >all</PrivateAssets >
135
+ <IncludeAssets >runtime; build; native; contentfiles; analyzers</IncludeAssets >
136
+ </PackageReference >
124
137
</ItemGroup >
125
138
126
139
<PropertyGroup Condition =" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' < '14.0' " >
Original file line number Diff line number Diff line change 45
45
46
46
<Capabilities >
47
47
<Capability Name =" internetClient" />
48
+ <DeviceCapability Name =" webcam" />
48
49
</Capabilities >
49
50
</Package >
Original file line number Diff line number Diff line change 8
8
<!-- Workaround as discussed https://github.com/unoplatform/uno/discussions/5007 for https://developercommunity.visualstudio.com/t/HasSharedItems-is-explicitly-set-to-em/10016046 -->
9
9
<PropertyGroup >
10
10
<SynthesizeLinkMetadata >true</SynthesizeLinkMetadata >
11
+ <UseDotNetNativeToolchain >false</UseDotNetNativeToolchain >
11
12
</PropertyGroup >
12
13
13
14
<Choose >
You can’t perform that action at this time.
0 commit comments