Ran migration script for issue 343

This commit is contained in:
Arlo Godfrey 2023-01-04 17:04:55 -06:00
Родитель 4dc86797c5
Коммит 09878b0de2
76 изменённых файлов: 368 добавлений и 265 удалений

8
common/Head.Uno.props Normal file
Просмотреть файл

@ -0,0 +1,8 @@
<Project>
<!--
Import Uno dependencies for all deployable Uno-based Labs project heads.
This import must be inside THIS file to allow swapping between Uno.UI and Uno.WinUI via pwsh.
Changes to this file are suppressed by git when switching to avoid changing the default for all users.
-->
<Import Project="$(RepositoryDirectory)\common\Head.Uno.UI.Dependencies.props" />
</Project>

Просмотреть файл

@ -1,6 +1,6 @@
<Project>
<Import Project="$(RepositoryDirectory)common\Labs.Uwp.Base.props" />
<Import Project="$(RepositoryDirectory)common\Labs.Head.Uwp.Dependencies.props" />
<Import Project="$(RepositoryDirectory)common\Uwp.Base.props" />
<Import Project="$(RepositoryDirectory)common\Head.Uwp.Dependencies.props" />
<ItemGroup>
<PackageReference Include="System.Collections.Immutable" Version="5.0.0" />

Просмотреть файл

Просмотреть файл

@ -2,7 +2,7 @@
<!-- Common properties needed for a labs project (WinAppSdk) -->
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<Import Project="$(RepositoryDirectory)common\Labs.Head.WinAppSdk.Dependencies.props" />
<Import Project="$(RepositoryDirectory)common\Head.WinAppSdk.Dependencies.props" />
<PropertyGroup>
<OutputType>WinExe</OutputType>

Просмотреть файл

Просмотреть файл

@ -0,0 +1,40 @@
<Project>
<PropertyGroup>
<IsWasmHead Condition="'$(IsWasmHead)' == '' AND '$(TargetFramework)' == '$(WasmHeadTargetFramework)'">true</IsWasmHead>
<IsWpfHead Condition="'$(IsWpfHead)' == '' AND '$(TargetFramework)' == '$(WpfHeadTargetFramework)'">true</IsWpfHead>
<IsGtkHead Condition="'$(IsGtkHead)' == '' AND '$(TargetFramework)' == '$(LinuxHeadTargetFramework)'">true</IsGtkHead>
<IsWasmLib Condition="'$(IsWasmLib)' == '' AND '$(TargetFramework)' == '$(WasmLibTargetFramework)'">true</IsWasmLib>
<IsWpfLib Condition="'$(IsWpfLib)' == '' AND '$(TargetFramework)' == '$(WpfLibTargetFramework)'">true</IsWpfLib>
<IsGtkLib Condition="'$(IsGtkLib)' == '' AND '$(TargetFramework)' == '$(LinuxLibTargetFramework)'">true</IsGtkLib>
<IsWasm Condition="'$(IsWasm)' == '' AND ('$(IsWasmHead)' == 'true' or '$(IsWasmLib)' == 'true')">true</IsWasm>
<IsWpf Condition="'$(IsWpf)' == '' AND ('$(IsWpfHead)' == 'true' or '$(IsWpfLib)' == 'true')">true</IsWpf>
<IsGtk Condition="'$(IsGtk)' == '' AND ('$(IsGtkHead)' == 'true' or '$(IsGtkLib)' == 'true')">true</IsGtk>
<IsDroid Condition="'$(IsDroid)' == '' AND '$(TargetFramework)' == '$(AndroidLibTargetFramework)'">true</IsDroid>
<IsMacOS Condition="'$(IsMacOS)' == '' AND '$(TargetFramework)' == '$(MacOSLibTargetFramework)'">true</IsMacOS>
<IsiOS Condition="'$(IsiOS)' == '' AND '$(TargetFramework)' == '$(iOSLibTargetFramework)'">true</IsiOS>
<IsUwp Condition="'$(IsUwp)' == '' AND '$(TargetFramework)' == '$(UwpTargetFramework)'">true</IsUwp>
<IsWinAppSdk Condition="'$(IsWinAppSdk)' == '' AND '$(TargetFramework)' == '$(WinAppSdkTargetFramework)'">true</IsWinAppSdk>
<IsUno Condition="'$(IsWasm)' == 'true' OR '$(IsWpf)' == 'true' OR '$(IsGtk)' == 'true' OR '$(IsDroid)' == 'true' OR '$(IsMacOS)' == 'true' OR '$(IsiOS)' == 'true'">true</IsUno>
<!-- THIS AREA MODIFIED BY SCRIPTS -->
<PackageIdVariant>Uwp</PackageIdVariant>
<WinUIMajorVersion>2</WinUIMajorVersion>
<DefineConstants Condition="'$(IsUno)' == 'true'">$(DefineConstants);WINUI2;</DefineConstants>
<!-- END SCRIPT AREA -->
<DefineConstants Condition="'$(IsUno)' == 'true'">$(DefineConstants);HAS_UNO;</DefineConstants>
<DefineConstants Condition="'$(IsUwp)' == 'true'">$(DefineConstants);WINDOWS_UWP;NETFX_CORE;</DefineConstants>
<DefineConstants Condition="'$(IsWinAppSdk)' == 'true'">$(DefineConstants);WINDOWS_WINAPPSDK;</DefineConstants>
<DefineConstants Condition="'$(IsWasm)' == 'true'">$(DefineConstants);__WASM__;HAS_UNO_WASM;</DefineConstants>
<DefineConstants Condition="'$(IsDroid)' == 'true'">$(DefineConstants);__ANDROID__;</DefineConstants>
<DefineConstants Condition="'$(IsiOS)' == 'true'">$(DefineConstants);__IOS__;</DefineConstants>
<DefineConstants Condition="'$(IsMacOS)' == 'true'">$(DefineConstants);__MACOS__;</DefineConstants>
<DefineConstants Condition="'$(IsWpf)' == 'true'">$(DefineConstants);HAS_UNO_SKIA;__SKIA__;WINDOWS_WPF;</DefineConstants>
<DefineConstants Condition="'$(IsGtk)' == 'true'">$(DefineConstants);HAS_UNO_SKIA;__SKIA__;__GTK__;</DefineConstants>
</PropertyGroup>
</Project>

Просмотреть файл

@ -3,7 +3,7 @@ Param (
[ValidateSet('all', 'wasm', 'uwp', 'winappsdk', 'wpf', 'gtk', 'macos', 'ios', 'droid')]
[string[]]$targets = @('uwp', 'winappsdk', 'wasm'),
[Parameter(HelpMessage = "Disables suppressing changes to the Labs.TargetFrameworks.props file in git, allowing changes to be committed.")]
[Parameter(HelpMessage = "Disables suppressing changes to the TargetFrameworks.props file in git, allowing changes to be committed.")]
[switch]$allowGitChanges = $false
)
@ -12,11 +12,11 @@ Param (
if ($allowGitChanges.IsPresent) {
Write-Warning "Changes to the default TargetFrameworks in Labs can now be committed. Run this command again without the -allowGitChanges flag to disable committing further changes.";
git update-index --no-assume-unchanged $PSScriptRoot/../Labs.TargetFrameworks.props
git update-index --no-assume-unchanged $PSScriptRoot/../TargetFrameworks.props
}
else {
Write-Output "Changes to the default TargetFrameworks in Labs are now suppressed. To switch branches, run git reset --hard with a clean working tree.";
git update-index --assume-unchanged $PSScriptRoot/../Labs.TargetFrameworks.props
git update-index --assume-unchanged $PSScriptRoot/../TargetFrameworks.props
}
$UwpTfm = "UwpTargetFramework";
@ -28,7 +28,7 @@ $macOSTfm = "MacOSLibTargetFramework";
$iOSTfm = "iOSLibTargetFramework";
$DroidTfm = "AndroidLibTargetFramework";
$fileContents = Get-Content -Path $PSScriptRoot/../Labs.TargetFrameworks.All.props
$fileContents = Get-Content -Path $PSScriptRoot/../TargetFrameworks.All.props
$allTargetFrameworks = @(
$WasmTfm,
@ -85,4 +85,4 @@ $targetFrameworksToRemoveRegexPartial = $targetFrameworksToRemove -join "|";
$newFileContents = $fileContents -replace "<(?:$targetFrameworksToRemoveRegexPartial)>.+?>", '';
Set-Content -Force -Path $PSScriptRoot/../Labs.TargetFrameworks.props -Value $newFileContents;
Set-Content -Force -Path $PSScriptRoot/../TargetFrameworks.props -Value $newFileContents;

Просмотреть файл

@ -47,9 +47,9 @@ function ApplyWinUISwap([string] $filePath) {
Write-Output "Switching to WinUI $winUIMajorVersion";
ApplyWinUISwap $PSScriptRoot/../Labs.Head.Uno.props
ApplyWinUISwap $PSScriptRoot/../Labs.Uno.props
ApplyWinUISwap $PSScriptRoot/../Labs.ProjectIdentifiers.props
ApplyWinUISwap $PSScriptRoot/../Head.Uno.props
ApplyWinUISwap $PSScriptRoot/../Uno.props
ApplyWinUISwap $PSScriptRoot/../ProjectIdentifiers.props
if ($allowGitChanges.IsPresent) {
Write-Warning "Changes to the default Uno package settings in Labs can now be committed.`r`nRun this command again without -allowGitChanges to disable committing further changes.";
@ -58,4 +58,4 @@ else {
Write-Output "Changes to the default Uno package settings in Labs are now suppressed.`r`nTo switch branches, run `"git reset --hard`" with a clean working tree.";
}
Write-Output "Done, switched to WinUI $winUIMajorVersion"
Write-Output "Done, switched to WinUI $winUIMajorVersion"

Просмотреть файл

@ -0,0 +1,22 @@
<Project>
<PropertyGroup>
<UwpTargetFramework>uap10.0.17763</UwpTargetFramework>
<WinAppSdkTargetFramework>net6.0-windows10.0.19041.0</WinAppSdkTargetFramework>
<WasmHeadTargetFramework>net5.0</WasmHeadTargetFramework>
<LinuxHeadTargetFramework>net5.0</LinuxHeadTargetFramework>
<WpfHeadTargetFramework>netcoreapp3.1</WpfHeadTargetFramework>
<!-- Used for comparison to current TargetFramework -->
<LinuxLibTargetFramework>netstandard2.0</LinuxLibTargetFramework>
<WasmLibTargetFramework>netstandard2.0</WasmLibTargetFramework>
<WpfLibTargetFramework>netstandard2.0</WpfLibTargetFramework>
<!-- Used for defining TargetFramework under platforms that need it -->
<NetStandardCommonTargetFramework>netstandard2.0</NetStandardCommonTargetFramework>
</PropertyGroup>
</Project>

33
common/Uno.props Normal file
Просмотреть файл

@ -0,0 +1,33 @@
<Project>
<!-- This file is modified by common/Scripts/UseUnoWinUI.ps1 to switch between WinUI 2 and 3 under Uno Platform -->
<!-- All Uno-based heads and multitargeted library projects reference this file, while native (UWP/WinAppSdk) heads don't and shouldn't need to. -->
<ItemGroup Condition="'$(IsUno)' == 'true'">
<PackageReference Include="Uno.UI" Version="4.6.18" />
</ItemGroup>
<PropertyGroup Condition="'$(IsUno)' == 'true'">
<UnoUIUseRoslynSourceGenerators>true</UnoUIUseRoslynSourceGenerators>
</PropertyGroup>
<ItemGroup Condition="'$(IsWasm)' == 'true' OR '$(IsWpf)' == 'true' OR '$(IsGtk)' == 'true'">
<PackageReference Include="Uno.UI.RemoteControl" Version="4.6.18" Condition="'$(Configuration)'=='Debug'" />
</ItemGroup>
<ItemGroup Condition="'$(IsGtkHead)' == 'true'">
<PackageReference Include="Uno.UI.Skia.Gtk" Version="4.6.18" />
</ItemGroup>
<ItemGroup Condition="'$(IsWpfHead)' == 'true'">
<PackageReference Include="Uno.UI.Skia.Wpf" Version="4.6.18" />
</ItemGroup>
<PropertyGroup Condition="'$(IsWpfHead)' == 'true'">
<!-- Ignorable issue from SkiaSharp package, see: https://github.com/CommunityToolkit/Labs-Windows/pull/119#issuecomment-1125373091 -->
<NoWarn>NU1701</NoWarn>
</PropertyGroup>
<ItemGroup Condition="'$(IsWasmHead)' == 'true'">
<PackageReference Include="Uno.UI.WebAssembly" Version="4.6.18" />
</ItemGroup>
<!-- Import Uno and native dependencies for all multitargeted library projects. -->
<Import Project="$(MSBuildProjectDirectory)\Dependencies.props" Condition="'$(IsDeployableHead)' != 'true' AND Exists('$(MSBuildProjectDirectory)\Dependencies.props')" />
</Project>

Просмотреть файл

Просмотреть файл

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$([MSBuild]::GetPathOfFileAbove(directory.build.props))" Condition="Exists('$([MSBuild]::GetPathOfFileAbove(directory.build.props))')" />
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
<IsUno>true</IsUno>
@ -22,14 +22,14 @@
<IsGtkHead>false</IsGtkHead>
<IsGtkLib>false</IsGtkLib>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Uno.props" />
<!-- Labs Project Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.props" />
<Import Project="$(RepositoryDirectory)common\Labs.Head.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Head.props" />
<Import Project="$(RepositoryDirectory)common\Head.Uno.props" />
<Import Project="$(RepositoryDirectory)common\MultiTarget\Generated\*.props" />
<PropertyGroup>
@ -138,4 +138,4 @@
<Compile Remove="$(_AndroidResourceDesignerFile)" />
</ItemGroup>
</Target>
</Project>
</Project>

Просмотреть файл

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
<IsUno>true</IsUno>
@ -19,14 +19,14 @@
<IsGtkHead>true</IsGtkHead>
<IsGtkLib>false</IsGtkLib>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Uno.props" />
<!-- Labs Project Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.props" />
<Import Project="$(RepositoryDirectory)common\Labs.Head.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Head.props" />
<Import Project="$(RepositoryDirectory)common\Head.Uno.props" />
<Import Project="$(RepositoryDirectory)common\MultiTarget\Generated\*.props" />
<PropertyGroup>

Просмотреть файл

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
<IsUno>true</IsUno>
@ -20,10 +20,10 @@
<IsGtkHead>false</IsGtkHead>
<IsGtkLib>false</IsGtkLib>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Uno.props" />
<PropertyGroup>
<OutputType Condition="'$(Configuration)'=='Release'">WinExe</OutputType>

Просмотреть файл

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
<IsUno>true</IsUno>
@ -20,14 +20,14 @@
<IsGtkLib>false</IsGtkLib>
<TargetFramework>$(WpfLibTargetFramework)</TargetFramework>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Uno.props" />
<!-- Labs Project Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.props" />
<Import Project="$(RepositoryDirectory)common\Labs.Head.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Head.props" />
<Import Project="$(RepositoryDirectory)common\Head.Uno.props" />
<Import Project="$(RepositoryDirectory)common\MultiTarget\Generated\*.props" />
<ItemGroup>

Просмотреть файл

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$([MSBuild]::GetPathOfFileAbove(directory.build.props))" Condition="Exists('$([MSBuild]::GetPathOfFileAbove(directory.build.props))')" />
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
<IsUno>false</IsUno>
@ -21,11 +21,11 @@
<IsGtkHead>false</IsGtkHead>
<IsGtkLib>false</IsGtkLib>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.Uwp.props" />
<Import Project="$(RepositoryDirectory)common\Head.Uwp.props" />
<!-- Labs Project Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.props" />
<Import Project="$(RepositoryDirectory)common\Head.props" />
<Import Project="$(RepositoryDirectory)common\MultiTarget\Generated\*.props" />
<PropertyGroup>
<RootNamespace>CommunityToolkit.Labs.Uwp</RootNamespace>
@ -42,4 +42,4 @@
</ItemGroup>
<!-- Must be imported after any shared projects in non-sdk style projects -->
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
</Project>
</Project>

Просмотреть файл

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk.Web" TreatAsLocalProperty="TargetFramework">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
<IsUno>true</IsUno>
@ -19,15 +19,15 @@
<IsGtkHead>false</IsGtkHead>
<IsGtkLib>false</IsGtkLib>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.Wasm.props" />
<Import Project="$(RepositoryDirectory)common\Labs.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Head.Wasm.props" />
<Import Project="$(RepositoryDirectory)common\Uno.props" />
<!-- Labs Project Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.props" />
<Import Project="$(RepositoryDirectory)common\Labs.Head.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Head.props" />
<Import Project="$(RepositoryDirectory)common\Head.Uno.props" />
<Import Project="$(RepositoryDirectory)common\MultiTarget\Generated\*.props" />
<ItemGroup>

Просмотреть файл

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
<IsUno>false</IsUno>
@ -19,13 +19,13 @@
<IsGtkHead>false</IsGtkHead>
<IsGtkLib>false</IsGtkLib>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Runtime Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.WinAppSdk.props" />
<Import Project="$(RepositoryDirectory)common\Head.WinAppSdk.props" />
<!-- Labs Project Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.props" />
<Import Project="$(RepositoryDirectory)common\Head.props" />
<Import Project="$(RepositoryDirectory)common\MultiTarget\Generated\*.props" />
<PropertyGroup>

Просмотреть файл

@ -3,7 +3,7 @@
<Import Project="$([MSBuild]::GetPathOfFileAbove(directory.build.props))" Condition="Exists('$([MSBuild]::GetPathOfFileAbove(directory.build.props))')" />
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
<IsUno>true</IsUno>
@ -22,14 +22,14 @@
<IsGtkHead>false</IsGtkHead>
<IsGtkLib>false</IsGtkLib>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Uno.props" />
<!-- Labs Project Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.props" />
<Import Project="$(RepositoryDirectory)common\Labs.Head.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Head.props" />
<Import Project="$(RepositoryDirectory)common\Head.Uno.props" />
<Import Project="$(RepositoryDirectory)common\MultiTarget\Generated\*.props" />
<PropertyGroup>

Просмотреть файл

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$([MSBuild]::GetPathOfFileAbove(directory.build.props))" Condition="Exists('$([MSBuild]::GetPathOfFileAbove(directory.build.props))')" />
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
<IsUno>true</IsUno>
@ -22,14 +22,14 @@
<IsGtkHead>false</IsGtkHead>
<IsGtkLib>false</IsGtkLib>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Uno.props" />
<!-- Labs Project Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.props" />
<Import Project="$(RepositoryDirectory)common\Labs.Head.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Head.props" />
<Import Project="$(RepositoryDirectory)common\Head.Uno.props" />
<Import Project="$(RepositoryDirectory)common\MultiTarget\Generated\*.props" />
<PropertyGroup>
@ -164,4 +164,4 @@
<HintPath Condition="Exists('c:\Program Files\Microsoft Visual Studio\2022\Preview\Common7\IDE\Extensions\Xamarin.VisualStudio')">c:\Program Files\Microsoft Visual Studio\2022\Preview\Common7\IDE\Extensions\Xamarin.VisualStudio\Xamarin.Mac.dll</HintPath>
</Reference>
</ItemGroup>
</Project>
</Project>

Просмотреть файл

@ -2,14 +2,14 @@
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$([MSBuild]::GetPathOfFileAbove(directory.build.props))" Condition="Exists('$([MSBuild]::GetPathOfFileAbove(directory.build.props))')" />
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Uwp.Base.props" />
<Import Project="$(RepositoryDirectory)common\Uwp.Base.props" />
<!-- Labs Test Config -->
<Import Project="$(RepositoryDirectory)tests\Labs.Tests.Uwp.props" />

Просмотреть файл

@ -1,13 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.WinAppSdk.props" />
<Import Project="$(RepositoryDirectory)common\Head.WinAppSdk.props" />
<!-- Labs Test Config -->
<Import Project="$(RepositoryDirectory)tests\Labs.Tests.WinAppSdk.props" />

Просмотреть файл

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$([MSBuild]::GetPathOfFileAbove(directory.build.props))" Condition="Exists('$([MSBuild]::GetPathOfFileAbove(directory.build.props))')" />
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
<IsUno>false</IsUno>
@ -22,13 +22,13 @@
<IsGtkHead>false</IsGtkHead>
<IsGtkLib>false</IsGtkLib>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.Uwp.props" />
<Import Project="$(RepositoryDirectory)common\Head.Uwp.props" />
<!-- Labs Project Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.props" />
<Import Project="$(RepositoryDirectory)common\Head.props" />
<PropertyGroup>
<RootNamespace>CanvasLayoutExperiment.Samples</RootNamespace>
@ -55,4 +55,4 @@
</ItemGroup>
<!-- Must be imported after any shared projects in non-sdk style projects -->
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
</Project>
</Project>

Просмотреть файл

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk.Web" TreatAsLocalProperty="TargetFramework">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
<IsUno>true</IsUno>
@ -19,15 +19,15 @@
<IsGtkHead>false</IsGtkHead>
<IsGtkLib>false</IsGtkLib>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.Wasm.props" />
<Import Project="$(RepositoryDirectory)common\Labs.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Head.Wasm.props" />
<Import Project="$(RepositoryDirectory)common\Uno.props" />
<!-- Labs Project Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.props" />
<Import Project="$(RepositoryDirectory)common\Labs.Head.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Head.props" />
<Import Project="$(RepositoryDirectory)common\Head.Uno.props" />
<ItemGroup>
<EmbeddedResource Include="WasmScripts\AppManifest.js" />

Просмотреть файл

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
<IsUno>false</IsUno>
@ -19,13 +19,13 @@
<IsGtkHead>false</IsGtkHead>
<IsGtkLib>false</IsGtkLib>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.WinAppSdk.props" />
<Import Project="$(RepositoryDirectory)common\Head.WinAppSdk.props" />
<!-- Labs Project Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.props" />
<Import Project="$(RepositoryDirectory)common\Head.props" />
<PropertyGroup>
<RootNamepace>CanvasLayoutExperiment.Samples</RootNamepace>

Просмотреть файл

@ -1,10 +1,10 @@
<Project Sdk="MSBuild.Sdk.Extras/3.0.23">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Uno.props" />
<Import Project="$(RepositoryDirectory)common\MultiTarget\MultiTarget.props" />
<!-- Labs Project Config -->

Просмотреть файл

@ -1,10 +1,10 @@
<Project Sdk="MSBuild.Sdk.Extras/3.0.23">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Uno.props" />
<!-- Labs Project Config -->
<Import Project="$(RepositoryDirectory)common\MultiTarget\MultiTarget.props" />

Просмотреть файл

@ -3,14 +3,14 @@
<Import Project="$([MSBuild]::GetPathOfFileAbove(directory.build.props))" Condition="Exists('$([MSBuild]::GetPathOfFileAbove(directory.build.props))')" />
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Uwp.Base.props" />
<Import Project="$(RepositoryDirectory)common\Uwp.Base.props" />
<!-- Labs Test Config -->
<Import Project="$(RepositoryDirectory)tests\Labs.Tests.Uwp.props" />

Просмотреть файл

@ -1,13 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.WinAppSdk.props" />
<Import Project="$(RepositoryDirectory)common\Head.WinAppSdk.props" />
<!-- Labs Test Config -->
<Import Project="$(RepositoryDirectory)tests\Labs.Tests.WinAppSdk.props" />

Просмотреть файл

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$([MSBuild]::GetPathOfFileAbove(directory.build.props))" Condition="Exists('$([MSBuild]::GetPathOfFileAbove(directory.build.props))')" />
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
<IsUno>false</IsUno>
@ -22,13 +22,13 @@
<IsGtkHead>false</IsGtkHead>
<IsGtkLib>false</IsGtkLib>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.Uwp.props" />
<Import Project="$(RepositoryDirectory)common\Head.Uwp.props" />
<!-- Labs Project Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.props" />
<Import Project="$(RepositoryDirectory)common\Head.props" />
<PropertyGroup>
<RootNamespace>CanvasViewExperiment.Samples</RootNamespace>
@ -55,4 +55,4 @@
</ItemGroup>
<!-- Must be imported after any shared projects in non-sdk style projects -->
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
</Project>
</Project>

Просмотреть файл

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk.Web" TreatAsLocalProperty="TargetFramework">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
<IsUno>true</IsUno>
@ -19,15 +19,15 @@
<IsGtkHead>false</IsGtkHead>
<IsGtkLib>false</IsGtkLib>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.Wasm.props" />
<Import Project="$(RepositoryDirectory)common\Labs.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Head.Wasm.props" />
<Import Project="$(RepositoryDirectory)common\Uno.props" />
<!-- Labs Project Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.props" />
<Import Project="$(RepositoryDirectory)common\Labs.Head.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Head.props" />
<Import Project="$(RepositoryDirectory)common\Head.Uno.props" />
<ItemGroup>
<EmbeddedResource Include="WasmScripts\AppManifest.js" />

Просмотреть файл

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
<IsUno>false</IsUno>
@ -19,13 +19,13 @@
<IsGtkHead>false</IsGtkHead>
<IsGtkLib>false</IsGtkLib>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.WinAppSdk.props" />
<Import Project="$(RepositoryDirectory)common\Head.WinAppSdk.props" />
<!-- Labs Project Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.props" />
<Import Project="$(RepositoryDirectory)common\Head.props" />
<PropertyGroup>
<RootNamepace>CanvasViewExperiment.Samples</RootNamepace>

Просмотреть файл

@ -1,10 +1,10 @@
<Project Sdk="MSBuild.Sdk.Extras/3.0.23">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Uno.props" />
<Import Project="$(RepositoryDirectory)common\MultiTarget\MultiTarget.props" />
<!-- Labs Project Config -->

Просмотреть файл

@ -1,10 +1,10 @@
<Project Sdk="MSBuild.Sdk.Extras/3.0.23">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Uno.props" />
<!-- Labs Project Config -->
<Import Project="$(RepositoryDirectory)common\MultiTarget\MultiTarget.props" />

Просмотреть файл

@ -1,14 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$([MSBuild]::GetPathOfFileAbove(directory.build.props))" Condition="Exists('$([MSBuild]::GetPathOfFileAbove(directory.build.props))')" />
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Uwp.Base.props" />
<Import Project="$(RepositoryDirectory)common\Uwp.Base.props" />
<!-- Labs Test Config -->
<Import Project="$(RepositoryDirectory)tests\Labs.Tests.Uwp.props" />
<PropertyGroup>
@ -52,4 +52,4 @@
</ItemGroup>
<!-- Must be imported after any shared projects in non-sdk style projects -->
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
</Project>
</Project>

Просмотреть файл

@ -1,13 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.WinAppSdk.props" />
<Import Project="$(RepositoryDirectory)common\Head.WinAppSdk.props" />
<!-- Labs Test Config -->
<Import Project="$(RepositoryDirectory)tests\Labs.Tests.WinAppSdk.props" />

Просмотреть файл

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$([MSBuild]::GetPathOfFileAbove(directory.build.props))" Condition="Exists('$([MSBuild]::GetPathOfFileAbove(directory.build.props))')" />
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
<IsUno>false</IsUno>
@ -21,11 +21,11 @@
<IsGtkHead>false</IsGtkHead>
<IsGtkLib>false</IsGtkLib>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.Uwp.props" />
<Import Project="$(RepositoryDirectory)common\Head.Uwp.props" />
<!-- Labs Project Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.props" />
<Import Project="$(RepositoryDirectory)common\Head.props" />
<PropertyGroup>
<RootNamespace>RivePlayerExperiment.Samples</RootNamespace>
<AssemblyName>RivePlayerExperiment.Samples.Uwp</AssemblyName>
@ -51,4 +51,4 @@
</ItemGroup>
<!-- Must be imported after any shared projects in non-sdk style projects -->
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
</Project>
</Project>

Просмотреть файл

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk.Web" TreatAsLocalProperty="TargetFramework">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
<IsUno>true</IsUno>
@ -19,15 +19,15 @@
<IsGtkHead>false</IsGtkHead>
<IsGtkLib>false</IsGtkLib>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.Wasm.props" />
<Import Project="$(RepositoryDirectory)common\Labs.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Head.Wasm.props" />
<Import Project="$(RepositoryDirectory)common\Uno.props" />
<!-- Labs Project Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.props" />
<Import Project="$(RepositoryDirectory)common\Labs.Head.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Head.props" />
<Import Project="$(RepositoryDirectory)common\Head.Uno.props" />
<ItemGroup>
<EmbeddedResource Include="WasmScripts\AppManifest.js" />

Просмотреть файл

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
<IsUno>false</IsUno>
@ -19,13 +19,13 @@
<IsGtkHead>false</IsGtkHead>
<IsGtkLib>false</IsGtkLib>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.WinAppSdk.props" />
<Import Project="$(RepositoryDirectory)common\Head.WinAppSdk.props" />
<!-- Labs Project Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.props" />
<Import Project="$(RepositoryDirectory)common\Head.props" />
<PropertyGroup>
<RootNamepace>RivePlayerExperiment.Samples</RootNamepace>

Просмотреть файл

@ -1,10 +1,10 @@
<Project Sdk="MSBuild.Sdk.Extras/3.0.23">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Uno.props" />
<Import Project="$(RepositoryDirectory)common\MultiTarget\MultiTarget.props" />
<!-- Labs Project Config -->

Просмотреть файл

@ -1,10 +1,10 @@
<Project Sdk="MSBuild.Sdk.Extras/3.0.23">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Uno.props" />
<!-- Labs Project Config -->
<Import Project="$(RepositoryDirectory)common\MultiTarget\MultiTarget.props" />

Просмотреть файл

@ -3,14 +3,14 @@
<Import Project="$([MSBuild]::GetPathOfFileAbove(directory.build.props))" Condition="Exists('$([MSBuild]::GetPathOfFileAbove(directory.build.props))')" />
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Uwp.Base.props" />
<Import Project="$(RepositoryDirectory)common\Uwp.Base.props" />
<!-- Labs Test Config -->
<Import Project="$(RepositoryDirectory)tests\Labs.Tests.Uwp.props" />

Просмотреть файл

@ -1,13 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.WinAppSdk.props" />
<Import Project="$(RepositoryDirectory)common\Head.WinAppSdk.props" />
<!-- Labs Test Config -->
<Import Project="$(RepositoryDirectory)tests\Labs.Tests.WinAppSdk.props" />

Просмотреть файл

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$([MSBuild]::GetPathOfFileAbove(directory.build.props))" Condition="Exists('$([MSBuild]::GetPathOfFileAbove(directory.build.props))')" />
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
<IsUno>false</IsUno>
@ -22,13 +22,13 @@
<IsGtkHead>false</IsGtkHead>
<IsGtkLib>false</IsGtkLib>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.Uwp.props" />
<Import Project="$(RepositoryDirectory)common\Head.Uwp.props" />
<!-- Labs Project Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.props" />
<Import Project="$(RepositoryDirectory)common\Head.props" />
<PropertyGroup>
<RootNamespace>SettingsControlsExperiment.Samples</RootNamespace>
@ -55,4 +55,4 @@
</ItemGroup>
<!-- Must be imported after any shared projects in non-sdk style projects -->
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
</Project>
</Project>

Просмотреть файл

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk.Web" TreatAsLocalProperty="TargetFramework">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
<IsUno>true</IsUno>
@ -20,15 +20,15 @@
<IsGtkLib>false</IsGtkLib>
<LangVersion>10.0</LangVersion>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.Wasm.props" />
<Import Project="$(RepositoryDirectory)common\Labs.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Head.Wasm.props" />
<Import Project="$(RepositoryDirectory)common\Uno.props" />
<!-- Labs Project Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.props" />
<Import Project="$(RepositoryDirectory)common\Labs.Head.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Head.props" />
<Import Project="$(RepositoryDirectory)common\Head.Uno.props" />
<ItemGroup>
<EmbeddedResource Include="WasmScripts\AppManifest.js" />

Просмотреть файл

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
<IsUno>false</IsUno>
@ -19,13 +19,13 @@
<IsGtkHead>false</IsGtkHead>
<IsGtkLib>false</IsGtkLib>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.WinAppSdk.props" />
<Import Project="$(RepositoryDirectory)common\Head.WinAppSdk.props" />
<!-- Labs Project Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.props" />
<Import Project="$(RepositoryDirectory)common\Head.props" />
<PropertyGroup>
<RootNamepace>SettingsControlsExperiment.Samples</RootNamepace>

Просмотреть файл

@ -1,10 +1,10 @@
<Project Sdk="MSBuild.Sdk.Extras/3.0.23">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Uno.props" />
<Import Project="$(RepositoryDirectory)common\MultiTarget\MultiTarget.props" />
<!-- Labs Project Config -->

Просмотреть файл

@ -1,10 +1,10 @@
<Project Sdk="MSBuild.Sdk.Extras/3.0.23">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Uno.props" />
<!-- Labs Project Config -->
<Import Project="$(RepositoryDirectory)common\MultiTarget\MultiTarget.props" />

Просмотреть файл

@ -2,14 +2,14 @@
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$([MSBuild]::GetPathOfFileAbove(directory.build.props))" Condition="Exists('$([MSBuild]::GetPathOfFileAbove(directory.build.props))')" />
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Uwp.Base.props" />
<Import Project="$(RepositoryDirectory)common\Uwp.Base.props" />
<!-- Labs Test Config -->
<Import Project="$(RepositoryDirectory)tests\Labs.Tests.Uwp.props" />

Просмотреть файл

@ -1,13 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.WinAppSdk.props" />
<Import Project="$(RepositoryDirectory)common\Head.WinAppSdk.props" />
<!-- Labs Test Config -->
<Import Project="$(RepositoryDirectory)tests\Labs.Tests.WinAppSdk.props" />

Просмотреть файл

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$([MSBuild]::GetPathOfFileAbove(directory.build.props))" Condition="Exists('$([MSBuild]::GetPathOfFileAbove(directory.build.props))')" />
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
<IsUno>false</IsUno>
@ -22,13 +22,13 @@
<IsGtkHead>false</IsGtkHead>
<IsGtkLib>false</IsGtkLib>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.Uwp.props" />
<Import Project="$(RepositoryDirectory)common\Head.Uwp.props" />
<!-- Labs Project Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.props" />
<Import Project="$(RepositoryDirectory)common\Head.props" />
<PropertyGroup>
<RootNamespace>SizerBaseExperiment.Samples</RootNamespace>
@ -55,4 +55,4 @@
</ItemGroup>
<!-- Must be imported after any shared projects in non-sdk style projects -->
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
</Project>
</Project>

Просмотреть файл

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk.Web" TreatAsLocalProperty="TargetFramework">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
<IsUno>true</IsUno>
@ -19,15 +19,15 @@
<IsGtkHead>false</IsGtkHead>
<IsGtkLib>false</IsGtkLib>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.Wasm.props" />
<Import Project="$(RepositoryDirectory)common\Labs.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Head.Wasm.props" />
<Import Project="$(RepositoryDirectory)common\Uno.props" />
<!-- Labs Project Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.props" />
<Import Project="$(RepositoryDirectory)common\Labs.Head.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Head.props" />
<Import Project="$(RepositoryDirectory)common\Head.Uno.props" />
<ItemGroup>
<EmbeddedResource Include="WasmScripts\AppManifest.js" />

Просмотреть файл

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
<IsUno>false</IsUno>
@ -19,13 +19,13 @@
<IsGtkHead>false</IsGtkHead>
<IsGtkLib>false</IsGtkLib>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.WinAppSdk.props" />
<Import Project="$(RepositoryDirectory)common\Head.WinAppSdk.props" />
<!-- Labs Project Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.props" />
<Import Project="$(RepositoryDirectory)common\Head.props" />
<PropertyGroup>
<RootNamepace>SizerBaseExperiment.Samples</RootNamepace>

Просмотреть файл

@ -1,10 +1,10 @@
<Project Sdk="MSBuild.Sdk.Extras/3.0.23">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Uno.props" />
<Import Project="$(RepositoryDirectory)common\MultiTarget\MultiTarget.props" />
<!-- Labs Project Config -->

Просмотреть файл

@ -1,10 +1,10 @@
<Project Sdk="MSBuild.Sdk.Extras/3.0.23">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Uno.props" />
<!-- Labs Project Config -->
<Import Project="$(RepositoryDirectory)common\MultiTarget\MultiTarget.props" />

Просмотреть файл

@ -3,14 +3,14 @@
<Import Project="$([MSBuild]::GetPathOfFileAbove(directory.build.props))" Condition="Exists('$([MSBuild]::GetPathOfFileAbove(directory.build.props))')" />
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Uwp.Base.props" />
<Import Project="$(RepositoryDirectory)common\Uwp.Base.props" />
<!-- Labs Test Config -->
<Import Project="$(RepositoryDirectory)tests\Labs.Tests.Uwp.props" />

Просмотреть файл

@ -1,13 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.WinAppSdk.props" />
<Import Project="$(RepositoryDirectory)common\Head.WinAppSdk.props" />
<!-- Labs Test Config -->
<Import Project="$(RepositoryDirectory)tests\Labs.Tests.WinAppSdk.props" />

Просмотреть файл

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$([MSBuild]::GetPathOfFileAbove(directory.build.props))" Condition="Exists('$([MSBuild]::GetPathOfFileAbove(directory.build.props))')" />
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
<IsUno>false</IsUno>
@ -22,13 +22,13 @@
<IsGtkHead>false</IsGtkHead>
<IsGtkLib>false</IsGtkLib>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.Uwp.props" />
<Import Project="$(RepositoryDirectory)common\Head.Uwp.props" />
<!-- Labs Project Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.props" />
<Import Project="$(RepositoryDirectory)common\Head.props" />
<PropertyGroup>
<RootNamespace>StackedNotificationsBehaviorExperiment.Samples</RootNamespace>
@ -55,4 +55,4 @@
</ItemGroup>
<!-- Must be imported after any shared projects in non-sdk style projects -->
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
</Project>
</Project>

Просмотреть файл

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk.Web" TreatAsLocalProperty="TargetFramework">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
<IsUno>true</IsUno>
@ -19,15 +19,15 @@
<IsGtkHead>false</IsGtkHead>
<IsGtkLib>false</IsGtkLib>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.Wasm.props" />
<Import Project="$(RepositoryDirectory)common\Labs.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Head.Wasm.props" />
<Import Project="$(RepositoryDirectory)common\Uno.props" />
<!-- Labs Project Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.props" />
<Import Project="$(RepositoryDirectory)common\Labs.Head.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Head.props" />
<Import Project="$(RepositoryDirectory)common\Head.Uno.props" />
<ItemGroup>
<EmbeddedResource Include="WasmCSS\Fonts.css" />

Просмотреть файл

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
<IsUno>false</IsUno>
@ -19,13 +19,13 @@
<IsGtkHead>false</IsGtkHead>
<IsGtkLib>false</IsGtkLib>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.WinAppSdk.props" />
<Import Project="$(RepositoryDirectory)common\Head.WinAppSdk.props" />
<!-- Labs Project Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.props" />
<Import Project="$(RepositoryDirectory)common\Head.props" />
<PropertyGroup>
<RootNamepace>StackedNotificationsBehaviorExperiment.Samples</RootNamepace>

Просмотреть файл

@ -1,10 +1,10 @@
<Project Sdk="MSBuild.Sdk.Extras/3.0.23">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Uno.props" />
<Import Project="$(RepositoryDirectory)common\MultiTarget\MultiTarget.props" />
<!-- Labs Project Config -->

Просмотреть файл

@ -1,10 +1,10 @@
<Project Sdk="MSBuild.Sdk.Extras/3.0.23">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Uno.props" />
<!-- Labs Project Config -->
<Import Project="$(RepositoryDirectory)common\MultiTarget\MultiTarget.props" />

Просмотреть файл

@ -1,10 +1,10 @@
<Project Sdk="MSBuild.Sdk.Extras/3.0.23">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Uno.props" />
<Import Project="$(RepositoryDirectory)common\MultiTarget\MultiTarget.props" />
<!-- Labs Project Config -->

Просмотреть файл

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$([MSBuild]::GetPathOfFileAbove(directory.build.props))" Condition="Exists('$([MSBuild]::GetPathOfFileAbove(directory.build.props))')" />
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
<IsUno>false</IsUno>
@ -22,13 +22,13 @@
<IsGtkHead>false</IsGtkHead>
<IsGtkLib>false</IsGtkLib>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.Uwp.props" />
<Import Project="$(RepositoryDirectory)common\Head.Uwp.props" />
<!-- Labs Project Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.props" />
<Import Project="$(RepositoryDirectory)common\Head.props" />
<PropertyGroup>
<RootNamespace>ProjectTemplateExperiment.Samples</RootNamespace>
@ -55,4 +55,4 @@
</ItemGroup>
<!-- Must be imported after any shared projects in non-sdk style projects -->
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
</Project>
</Project>

Просмотреть файл

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk.Web" TreatAsLocalProperty="TargetFramework">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
<IsUno>true</IsUno>
@ -19,15 +19,15 @@
<IsGtkHead>false</IsGtkHead>
<IsGtkLib>false</IsGtkLib>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.Wasm.props" />
<Import Project="$(RepositoryDirectory)common\Labs.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Head.Wasm.props" />
<Import Project="$(RepositoryDirectory)common\Uno.props" />
<!-- Labs Project Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.props" />
<Import Project="$(RepositoryDirectory)common\Labs.Head.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Head.props" />
<Import Project="$(RepositoryDirectory)common\Head.Uno.props" />
<ItemGroup>
<EmbeddedResource Include="WasmScripts\AppManifest.js" />

Просмотреть файл

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
<IsUno>false</IsUno>
@ -19,13 +19,13 @@
<IsGtkHead>false</IsGtkHead>
<IsGtkLib>false</IsGtkLib>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.WinAppSdk.props" />
<Import Project="$(RepositoryDirectory)common\Head.WinAppSdk.props" />
<!-- Labs Project Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.props" />
<Import Project="$(RepositoryDirectory)common\Head.props" />
<PropertyGroup>
<RootNamepace>ProjectTemplateExperiment.Samples</RootNamepace>

Просмотреть файл

@ -1,10 +1,10 @@
<Project Sdk="MSBuild.Sdk.Extras/3.0.23">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Uno.props" />
<Import Project="$(RepositoryDirectory)common\Uno.props" />
<!-- Labs Project Config -->
<Import Project="$(RepositoryDirectory)common\MultiTarget\MultiTarget.props" />

Просмотреть файл

@ -3,14 +3,14 @@
<Import Project="$([MSBuild]::GetPathOfFileAbove(directory.build.props))" Condition="Exists('$([MSBuild]::GetPathOfFileAbove(directory.build.props))')" />
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Uwp.Base.props" />
<Import Project="$(RepositoryDirectory)common\Uwp.Base.props" />
<!-- Labs Test Config -->
<Import Project="$(RepositoryDirectory)tests\Labs.Tests.Uwp.props" />

Просмотреть файл

@ -1,13 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.WinAppSdk.props" />
<Import Project="$(RepositoryDirectory)common\Head.WinAppSdk.props" />
<!-- Labs Test Config -->
<Import Project="$(RepositoryDirectory)tests\Labs.Tests.WinAppSdk.props" />

Просмотреть файл

@ -3,7 +3,7 @@
<Import Project="$([MSBuild]::GetPathOfFileAbove(directory.build.props))" Condition="Exists('$([MSBuild]::GetPathOfFileAbove(directory.build.props))')" />
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
<IsUno>false</IsUno>
@ -22,10 +22,10 @@
<IsGtkHead>false</IsGtkHead>
<IsGtkLib>false</IsGtkLib>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Uwp.Base.props" />
<Import Project="$(RepositoryDirectory)common\Uwp.Base.props" />
<!-- Labs Test Config -->
<Import Project="$(RepositoryDirectory)tests\Labs.Tests.Uwp.props" />

Просмотреть файл

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<!-- Labs Constants -->
<Import Project="$(RepositoryDirectory)common\Labs.TargetFrameworks.props" />
<Import Project="$(RepositoryDirectory)common\TargetFrameworks.props" />
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
<IsUno>false</IsUno>
@ -19,10 +19,10 @@
<IsGtkHead>false</IsGtkHead>
<IsGtkLib>false</IsGtkLib>
</PropertyGroup>
<Import Project="$(RepositoryDirectory)common\Labs.ProjectIdentifiers.props" />
<Import Project="$(RepositoryDirectory)common\ProjectIdentifiers.props" />
<!-- Labs Platform Config -->
<Import Project="$(RepositoryDirectory)common\Labs.Head.WinAppSdk.props" />
<Import Project="$(RepositoryDirectory)common\Head.WinAppSdk.props" />
<!-- Labs Test Config -->
<Import Project="$(RepositoryDirectory)tests\Labs.Tests.WinAppSdk.props" />