File tree Expand file tree Collapse file tree 20 files changed +55
-54
lines changed Expand file tree Collapse file tree 20 files changed +55
-54
lines changed Original file line number Diff line number Diff line change @@ -245,9 +245,7 @@ public static class ToolkitDocumentRegistry
245
245
{{
246
246
public static System.Collections.Generic.IEnumerable<{ typeof ( ToolkitFrontMatter ) . FullName } > Execute()
247
247
{{
248
- {
249
- string . Join ( "\n " , sampleMetadata . Select ( FrontMatterToRegistryCall ) . ToArray ( ) )
250
- }
248
+ { string . Join ( "\n " , sampleMetadata . Select ( FrontMatterToRegistryCall ) . ToArray ( ) ) }
251
249
}}
252
250
}}" ;
253
251
}
Original file line number Diff line number Diff line change 1
1
<Project >
2
2
<PropertyGroup >
3
- <DefineConstants Condition =" '(HasWinUI)' == 'true'" >$(DefineConstants);WINUI$(WinUIMajorVersion);</DefineConstants >
3
+ <DefineConstants Condition =" '$ (HasWinUI)' == 'true'" >$(DefineConstants);WINUI$(WinUIMajorVersion);</DefineConstants >
4
4
5
5
<DefineConstants Condition =" '$(IsUno)' == 'true'" >$(DefineConstants);HAS_UNO;</DefineConstants >
6
6
<DefineConstants Condition =" '$(IsUwp)' == 'true'" >$(DefineConstants);WINDOWS_UWP;NETFX_CORE;</DefineConstants >
Original file line number Diff line number Diff line change 19
19
<!-- Add platform package dependencies -->
20
20
<Import Project =" $(ToolingDirectory)\MultiTarget\PackageReferences\Netstandard.props" Condition =" $(IsNetstandard) == 'true'" />
21
21
<Import Project =" $(ToolingDirectory)\MultiTarget\PackageReferences\Uno.props" Condition =" $(IsUno) == 'true'" />
22
- <Import Project =" $(ToolingDirectory)\MultiTarget\PackageReferences\Windows.props" Condition =" $(HasWinUI) == 'true' AND $(IsUno) != 'true'" />
22
+ <Import Project =" $(ToolingDirectory)\MultiTarget\PackageReferences\Uwp.props" Condition =" $(IsUwp) == 'true'" />
23
+ <Import Project =" $(ToolingDirectory)\MultiTarget\PackageReferences\WinAppSdk.props" Condition =" $(IsWinAppSdk) == 'true'" />
23
24
24
25
<!-- Configure WinUI -->
25
26
<Import Project =" $(ToolingDirectory)\MultiTarget\WinUI.AutoIncludeXamlPages.props" Condition =" $(HasWinUI) == 'true'" />
Original file line number Diff line number Diff line change
1
+ <Project >
2
+ <ItemGroup >
3
+ <PackageReference Include =" Microsoft.UI.Xaml" Version =" 2.7.0" />
4
+ <PackageReference Include =" System.Collections.Immutable" Version =" 5.0.0" />
5
+ </ItemGroup >
6
+ </Project >
Original file line number Diff line number Diff line change
1
+ <Project >
2
+ <ItemGroup >
3
+ <PackageReference Include =" Microsoft.WindowsAppSDK" Version =" 1.3.230331000" />
4
+ <PackageReference Include =" Microsoft.Windows.SDK.BuildTools" Version =" 10.0.22621.756" />
5
+ </ItemGroup >
6
+ </Project >
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2
2
<Project ToolsVersion =" 15.0" DefaultTargets =" Build" xmlns =" http://schemas.microsoft.com/developer/msbuild/2003" >
3
3
<Import Project =" $([MSBuild]::GetPathOfFileAbove(directory.build.props))" Condition =" Exists('$([MSBuild]::GetPathOfFileAbove(directory.build.props))')" />
4
4
5
- <Import Project =" $(ToolingDirectory)\MultiTarget\EnabledTargetFrameworks.props" />
6
5
<PropertyGroup >
7
6
<IsDeployableHead >true</IsDeployableHead >
8
7
<IsUno >false</IsUno >
22
21
<IsGtkLib >false</IsGtkLib >
23
22
</PropertyGroup >
24
23
24
+ <Import Project =" $(ToolingDirectory)\MultiTarget\EnabledTargetFrameworks.props" />
25
25
<Import Project =" $(ToolingDirectory)\MultiTarget\ProjectIdentifiers.props" />
26
26
<Import Project =" $(ToolingDirectory)\MultiTarget\DefinedConstants.props" />
27
+
27
28
<Import Project =" $(ToolingDirectory)\ProjectHeads\Tests.Head.Uwp.props" />
28
29
<Import Project =" $(ToolingDirectory)\ProjectHeads\AllComponents\Tests.Head.AllComponents.props" />
29
30
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
- <Import Project =" $(ToolingDirectory)\MultiTarget\EnabledTargetFrameworks.props" />
4
3
<PropertyGroup >
5
4
<IsDeployableHead >true</IsDeployableHead >
6
5
<IsUno >false</IsUno >
20
19
<IsGtkLib >false</IsGtkLib >
21
20
</PropertyGroup >
22
21
22
+ <Import Project =" $(ToolingDirectory)\MultiTarget\EnabledTargetFrameworks.props" />
23
23
<Import Project =" $(ToolingDirectory)\MultiTarget\ProjectIdentifiers.props" />
24
24
<Import Project =" $(ToolingDirectory)\MultiTarget\DefinedConstants.props" />
25
+
25
26
<Import Project =" $(ToolingDirectory)\ProjectHeads\Tests.Head.WinAppSdk.props" />
26
27
<Import Project =" $(ToolingDirectory)\ProjectHeads\AllComponents\Tests.Head.AllComponents.props" />
27
28
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
- <Project ToolsVersion =" 15.0" DefaultTargets =" Build" xmlns =" http://schemas.microsoft.com/developer/msbuild/2003" >
2
+ <Project ToolsVersion =" 15.0" DefaultTargets =" Build"
3
+ xmlns =" http://schemas.microsoft.com/developer/msbuild/2003" >
3
4
<Import Project =" $([MSBuild]::GetPathOfFileAbove(directory.build.props))" Condition =" Exists('$([MSBuild]::GetPathOfFileAbove(directory.build.props))')" />
4
-
5
- <Import Project =" $(ToolingDirectory)\MultiTarget\EnabledTargetFrameworks.props" />
6
-
5
+
7
6
<PropertyGroup >
7
+ <IsAllExperimentHead >true</IsAllExperimentHead >
8
8
<IsDeployableHead >true</IsDeployableHead >
9
+ <IsUwp >true</IsUwp >
10
+ <IsWinAppSdk >false</IsWinAppSdk >
9
11
<IsUno >false</IsUno >
10
12
<IsWasm >false</IsWasm >
11
13
<IsWasmHead >false</IsWasmHead >
12
14
<IsWasmLib >false</IsWasmLib >
13
15
<IsDroid >false</IsDroid >
14
16
<IsMacOS >false</IsMacOS >
15
17
<IsiOS >false</IsiOS >
16
- <IsUwp >true</IsUwp >
17
- <IsWinAppSdk >false</IsWinAppSdk >
18
18
<IsWpf >false</IsWpf >
19
19
<IsWpfHead >false</IsWpfHead >
20
20
<IsWpfLib >false</IsWpfLib >
21
21
<IsGtk >false</IsGtk >
22
22
<IsGtkHead >false</IsGtkHead >
23
23
<IsGtkLib >false</IsGtkLib >
24
+ <HasWinUI >true</HasWinUI >
24
25
</PropertyGroup >
25
26
26
- <Import Project =" $(ToolingDirectory)\MultiTarget\ProjectIdentifiers .props" />
27
+ <Import Project =" $(ToolingDirectory)\MultiTarget\EnabledTargetFrameworks .props" />
27
28
<Import Project =" $(ToolingDirectory)\MultiTarget\DefinedConstants.props" />
28
29
<Import Project =" $(ToolingDirectory)\ProjectHeads\App.Head.Uwp.props" />
29
30
<Import Project =" $(ToolingDirectory)\MultiTarget\Generated\*.props" />
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk.Web" TreatAsLocalProperty =" TargetFramework" >
2
2
3
- <Import Project =" $(ToolingDirectory)\MultiTarget\EnabledTargetFrameworks.props" />
4
3
<PropertyGroup >
4
+ <IsAllExperimentHead >true</IsAllExperimentHead >
5
5
<IsDeployableHead >true</IsDeployableHead >
6
6
<IsUno >true</IsUno >
7
7
<IsWasm >true</IsWasm >
20
20
<IsGtkLib >false</IsGtkLib >
21
21
</PropertyGroup >
22
22
23
- <Import Project =" $(ToolingDirectory)\MultiTarget\ProjectIdentifiers .props" />
23
+ <Import Project =" $(ToolingDirectory)\MultiTarget\EnabledTargetFrameworks .props" />
24
24
<Import Project =" $(ToolingDirectory)\MultiTarget\DefinedConstants.props" />
25
25
<Import Project =" $(ToolingDirectory)\MultiTarget\Generated\*.props" />
26
26
<Import Project =" $(ToolingDirectory)\ProjectHeads\App.Head.Wasm.props" />
You can’t perform that action at this time.
0 commit comments