diff --git a/src/modules/FileLocksmith/FileLocksmithUI/FileLocksmithUI.csproj b/src/modules/FileLocksmith/FileLocksmithUI/FileLocksmithUI.csproj index 115af81b40..5473584c96 100644 --- a/src/modules/FileLocksmith/FileLocksmithUI/FileLocksmithUI.csproj +++ b/src/modules/FileLocksmith/FileLocksmithUI/FileLocksmithUI.csproj @@ -12,7 +12,7 @@ <RootNamespace>PowerToys.FileLocksmithUI</RootNamespace> <AssemblyName>PowerToys.FileLocksmithUI</AssemblyName> <ApplicationManifest>app.manifest</ApplicationManifest> - <RuntimeIdentifiers>win10-x64;win10-arm64</RuntimeIdentifiers> + <RuntimeIdentifiers>win-x64;win-arm64</RuntimeIdentifiers> <UseWinUI>true</UseWinUI> <GenerateSatelliteAssembliesForCore>true</GenerateSatelliteAssembliesForCore> <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> @@ -35,10 +35,10 @@ <!-- SelfContained=true requires RuntimeIdentifier to be set --> <PropertyGroup Condition="'$(Platform)'=='x64'"> - <RuntimeIdentifier>win10-x64</RuntimeIdentifier> + <RuntimeIdentifier>win-x64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Platform)'=='ARM64'"> - <RuntimeIdentifier>win10-arm64</RuntimeIdentifier> + <RuntimeIdentifier>win-arm64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup> diff --git a/src/modules/Hosts/Hosts.Tests/Hosts.Tests.csproj b/src/modules/Hosts/Hosts.Tests/Hosts.Tests.csproj index 0b0a2841f2..c4ee03077a 100644 --- a/src/modules/Hosts/Hosts.Tests/Hosts.Tests.csproj +++ b/src/modules/Hosts/Hosts.Tests/Hosts.Tests.csproj @@ -5,7 +5,7 @@ <TargetFramework>net8.0-windows10.0.20348.0</TargetFramework> <TargetPlatformMinVersion>10.0.19041.0</TargetPlatformMinVersion> <SupportedOSPlatformVersion>10.0.19041.0</SupportedOSPlatformVersion> - <RuntimeIdentifiers>win10-x64;win10-arm64</RuntimeIdentifiers> + <RuntimeIdentifiers>win-x64;win-arm64</RuntimeIdentifiers> <IsPackable>false</IsPackable> <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> <AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath> diff --git a/src/modules/Hosts/Hosts/Hosts.csproj b/src/modules/Hosts/Hosts/Hosts.csproj index bec3faf6d8..f480431cee 100644 --- a/src/modules/Hosts/Hosts/Hosts.csproj +++ b/src/modules/Hosts/Hosts/Hosts.csproj @@ -8,7 +8,7 @@ <SupportedOSPlatformVersion>10.0.19041.0</SupportedOSPlatformVersion> <RootNamespace>Hosts</RootNamespace> <ApplicationManifest>app.manifest</ApplicationManifest> - <RuntimeIdentifiers>win10-x64;win10-arm64</RuntimeIdentifiers> + <RuntimeIdentifiers>win-x64;win-arm64</RuntimeIdentifiers> <UseWinUI>true</UseWinUI> <EnablePreviewMsixTooling>true</EnablePreviewMsixTooling> <WindowsPackageType>None</WindowsPackageType> @@ -34,10 +34,10 @@ <!-- SelfContained=true requires RuntimeIdentifier to be set --> <PropertyGroup Condition="'$(Platform)'=='x64'"> - <RuntimeIdentifier>win10-x64</RuntimeIdentifier> + <RuntimeIdentifier>win-x64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Platform)'=='ARM64'"> - <RuntimeIdentifier>win10-arm64</RuntimeIdentifier> + <RuntimeIdentifier>win-arm64</RuntimeIdentifier> </PropertyGroup> <!-- See https://learn.microsoft.com/windows/apps/develop/platform/csharp-winrt/net-projection-from-cppwinrt-component for more info --> diff --git a/src/modules/MeasureTool/MeasureToolUI/MeasureToolUI.csproj b/src/modules/MeasureTool/MeasureToolUI/MeasureToolUI.csproj index d20445e02d..789b4e5ace 100644 --- a/src/modules/MeasureTool/MeasureToolUI/MeasureToolUI.csproj +++ b/src/modules/MeasureTool/MeasureToolUI/MeasureToolUI.csproj @@ -12,7 +12,7 @@ <AssemblyName>PowerToys.MeasureToolUI</AssemblyName> <ApplicationManifest>app.manifest</ApplicationManifest> <Platforms>x86;x64;arm64</Platforms> - <RuntimeIdentifiers>win10-x86;win10-x64;win10-arm64</RuntimeIdentifiers> + <RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers> <UseWinUI>true</UseWinUI> <GenerateSatelliteAssembliesForCore>true</GenerateSatelliteAssembliesForCore> <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> @@ -35,10 +35,10 @@ <!-- SelfContained=true requires RuntimeIdentifier to be set --> <PropertyGroup Condition="'$(Platform)'=='x64'"> - <RuntimeIdentifier>win10-x64</RuntimeIdentifier> + <RuntimeIdentifier>win-x64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Platform)'=='ARM64'"> - <RuntimeIdentifier>win10-arm64</RuntimeIdentifier> + <RuntimeIdentifier>win-arm64</RuntimeIdentifier> </PropertyGroup> <!-- See https://learn.microsoft.com/windows/apps/develop/platform/csharp-winrt/net-projection-from-cppwinrt-component for more info --> diff --git a/src/modules/MouseUtils/MouseJumpUI/MouseJumpUI.csproj b/src/modules/MouseUtils/MouseJumpUI/MouseJumpUI.csproj index 0745897115..8e18d9b8da 100644 --- a/src/modules/MouseUtils/MouseJumpUI/MouseJumpUI.csproj +++ b/src/modules/MouseUtils/MouseJumpUI/MouseJumpUI.csproj @@ -17,10 +17,10 @@ <!-- SelfContained=true requires RuntimeIdentifier to be set --> <PropertyGroup Condition="'$(Platform)'=='x64'"> - <RuntimeIdentifier>win10-x64</RuntimeIdentifier> + <RuntimeIdentifier>win-x64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Platform)'=='ARM64'"> - <RuntimeIdentifier>win10-arm64</RuntimeIdentifier> + <RuntimeIdentifier>win-arm64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup> diff --git a/src/modules/MouseWithoutBorders/App/Helper/MouseWithoutBordersHelper.csproj b/src/modules/MouseWithoutBorders/App/Helper/MouseWithoutBordersHelper.csproj index bc6a5be7d7..18bf39e7e3 100644 --- a/src/modules/MouseWithoutBorders/App/Helper/MouseWithoutBordersHelper.csproj +++ b/src/modules/MouseWithoutBorders/App/Helper/MouseWithoutBordersHelper.csproj @@ -19,10 +19,10 @@ <!-- SelfContained=true requires RuntimeIdentifier to be set --> <PropertyGroup Condition="'$(Platform)'=='x64'"> - <RuntimeIdentifier>win10-x64</RuntimeIdentifier> + <RuntimeIdentifier>win-x64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Platform)'=='ARM64'"> - <RuntimeIdentifier>win10-arm64</RuntimeIdentifier> + <RuntimeIdentifier>win-arm64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)' == 'Debug'"> diff --git a/src/modules/MouseWithoutBorders/App/MouseWithoutBorders.csproj b/src/modules/MouseWithoutBorders/App/MouseWithoutBorders.csproj index d8df7b0df7..2e7a227a47 100644 --- a/src/modules/MouseWithoutBorders/App/MouseWithoutBorders.csproj +++ b/src/modules/MouseWithoutBorders/App/MouseWithoutBorders.csproj @@ -19,10 +19,10 @@ <!-- SelfContained=true requires RuntimeIdentifier to be set --> <PropertyGroup Condition="'$(Platform)'=='x64'"> - <RuntimeIdentifier>win10-x64</RuntimeIdentifier> + <RuntimeIdentifier>win-x64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Platform)'=='ARM64'"> - <RuntimeIdentifier>win10-arm64</RuntimeIdentifier> + <RuntimeIdentifier>win-arm64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)' == 'Debug'"> diff --git a/src/modules/MouseWithoutBorders/App/Service/MouseWithoutBordersService.csproj b/src/modules/MouseWithoutBorders/App/Service/MouseWithoutBordersService.csproj index c55ef448dc..8a7d487fc5 100644 --- a/src/modules/MouseWithoutBorders/App/Service/MouseWithoutBordersService.csproj +++ b/src/modules/MouseWithoutBorders/App/Service/MouseWithoutBordersService.csproj @@ -20,10 +20,10 @@ <!-- SelfContained=true requires RuntimeIdentifier to be set --> <PropertyGroup Condition="'$(Platform)'=='x64'"> - <RuntimeIdentifier>win10-x64</RuntimeIdentifier> + <RuntimeIdentifier>win-x64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Platform)'=='ARM64'"> - <RuntimeIdentifier>win10-arm64</RuntimeIdentifier> + <RuntimeIdentifier>win-arm64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)' == 'Debug'"> <DefineConstants>TRACE;DEBUG;SHOW_ON_WINLOGON CODE_ANALYSIS CUSTOMIZE_LOGON_SCREEN</DefineConstants> diff --git a/src/modules/PowerOCR/PowerOCR/PowerOCR.csproj b/src/modules/PowerOCR/PowerOCR/PowerOCR.csproj index 1cd7bce805..dd01ae8aaf 100644 --- a/src/modules/PowerOCR/PowerOCR/PowerOCR.csproj +++ b/src/modules/PowerOCR/PowerOCR/PowerOCR.csproj @@ -15,10 +15,10 @@ <!-- SelfContained=true requires RuntimeIdentifier to be set --> <PropertyGroup Condition="'$(Platform)'=='x64'"> - <RuntimeIdentifier>win10-x64</RuntimeIdentifier> + <RuntimeIdentifier>win-x64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Platform)'=='ARM64'"> - <RuntimeIdentifier>win10-arm64</RuntimeIdentifier> + <RuntimeIdentifier>win-arm64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup> diff --git a/src/modules/awake/Awake/Awake.csproj b/src/modules/awake/Awake/Awake.csproj index 4f062f8a1a..696ff561e0 100644 --- a/src/modules/awake/Awake/Awake.csproj +++ b/src/modules/awake/Awake/Awake.csproj @@ -24,10 +24,10 @@ <!-- SelfContained=true requires RuntimeIdentifier to be set --> <PropertyGroup Condition="'$(Platform)'=='x64'"> - <RuntimeIdentifier>win10-x64</RuntimeIdentifier> + <RuntimeIdentifier>win-x64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Platform)'=='ARM64'"> - <RuntimeIdentifier>win10-arm64</RuntimeIdentifier> + <RuntimeIdentifier>win-arm64</RuntimeIdentifier> </PropertyGroup> <!-- See https://learn.microsoft.com/windows/apps/develop/platform/csharp-winrt/net-projection-from-cppwinrt-component for more info --> diff --git a/src/modules/colorPicker/ColorPickerUI/ColorPickerUI.csproj b/src/modules/colorPicker/ColorPickerUI/ColorPickerUI.csproj index a48955b2f6..41516fb3f3 100644 --- a/src/modules/colorPicker/ColorPickerUI/ColorPickerUI.csproj +++ b/src/modules/colorPicker/ColorPickerUI/ColorPickerUI.csproj @@ -14,10 +14,10 @@ <!-- SelfContained=true requires RuntimeIdentifier to be set --> <PropertyGroup Condition="'$(Platform)'=='x64'"> - <RuntimeIdentifier>win10-x64</RuntimeIdentifier> + <RuntimeIdentifier>win-x64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Platform)'=='ARM64'"> - <RuntimeIdentifier>win10-arm64</RuntimeIdentifier> + <RuntimeIdentifier>win-arm64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup> diff --git a/src/modules/fancyzones/editor/FancyZonesEditor/FancyZonesEditor.csproj b/src/modules/fancyzones/editor/FancyZonesEditor/FancyZonesEditor.csproj index d4e533ec4c..dae02ff5ba 100644 --- a/src/modules/fancyzones/editor/FancyZonesEditor/FancyZonesEditor.csproj +++ b/src/modules/fancyzones/editor/FancyZonesEditor/FancyZonesEditor.csproj @@ -17,10 +17,10 @@ <!-- SelfContained=true requires RuntimeIdentifier to be set --> <PropertyGroup Condition="'$(Platform)'=='x64'"> - <RuntimeIdentifier>win10-x64</RuntimeIdentifier> + <RuntimeIdentifier>win-x64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Platform)'=='ARM64'"> - <RuntimeIdentifier>win10-arm64</RuntimeIdentifier> + <RuntimeIdentifier>win-arm64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup> diff --git a/src/modules/imageresizer/ui/ImageResizerUI.csproj b/src/modules/imageresizer/ui/ImageResizerUI.csproj index 6f58a852b2..8c1af92376 100644 --- a/src/modules/imageresizer/ui/ImageResizerUI.csproj +++ b/src/modules/imageresizer/ui/ImageResizerUI.csproj @@ -13,10 +13,10 @@ <!-- SelfContained=true requires RuntimeIdentifier to be set --> <PropertyGroup Condition="'$(Platform)'=='x64'"> - <RuntimeIdentifier>win10-x64</RuntimeIdentifier> + <RuntimeIdentifier>win-x64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Platform)'=='ARM64'"> - <RuntimeIdentifier>win10-arm64</RuntimeIdentifier> + <RuntimeIdentifier>win-arm64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup> diff --git a/src/modules/launcher/PowerLauncher/PowerLauncher.csproj b/src/modules/launcher/PowerLauncher/PowerLauncher.csproj index bd5f307458..247aae08c7 100644 --- a/src/modules/launcher/PowerLauncher/PowerLauncher.csproj +++ b/src/modules/launcher/PowerLauncher/PowerLauncher.csproj @@ -26,10 +26,10 @@ <!-- SelfContained=true requires RuntimeIdentifier to be set --> <PropertyGroup Condition="'$(Platform)'=='x64'"> - <RuntimeIdentifier>win10-x64</RuntimeIdentifier> + <RuntimeIdentifier>win-x64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Platform)'=='ARM64'"> - <RuntimeIdentifier>win10-arm64</RuntimeIdentifier> + <RuntimeIdentifier>win-arm64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)'=='Debug'"> diff --git a/src/modules/peek/Peek.Common/Peek.Common.csproj b/src/modules/peek/Peek.Common/Peek.Common.csproj index cee5c40bf9..9612f2273d 100644 --- a/src/modules/peek/Peek.Common/Peek.Common.csproj +++ b/src/modules/peek/Peek.Common/Peek.Common.csproj @@ -5,7 +5,7 @@ <TargetPlatformMinVersion>10.0.19041.0</TargetPlatformMinVersion> <SupportedOSPlatformVersion>10.0.19041.0</SupportedOSPlatformVersion> <RootNamespace>Peek.Common</RootNamespace> - <RuntimeIdentifiers>win10-x86;win10-x64;win10-arm64</RuntimeIdentifiers> + <RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers> <UseWinUI>true</UseWinUI> <Nullable>enable</Nullable> </PropertyGroup> diff --git a/src/modules/peek/Peek.FilePreviewer/Peek.FilePreviewer.csproj b/src/modules/peek/Peek.FilePreviewer/Peek.FilePreviewer.csproj index 6e163fdaa0..79aa13a6e1 100644 --- a/src/modules/peek/Peek.FilePreviewer/Peek.FilePreviewer.csproj +++ b/src/modules/peek/Peek.FilePreviewer/Peek.FilePreviewer.csproj @@ -5,7 +5,7 @@ <TargetPlatformMinVersion>10.0.19041.0</TargetPlatformMinVersion> <SupportedOSPlatformVersion>10.0.19041.0</SupportedOSPlatformVersion> <RootNamespace>Peek.FilePreviewer</RootNamespace> - <RuntimeIdentifiers>win10-x86;win10-x64;win10-arm64</RuntimeIdentifiers> + <RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers> <UseWinUI>true</UseWinUI> <Nullable>enable</Nullable> </PropertyGroup> diff --git a/src/modules/peek/Peek.UI/Peek.UI.csproj b/src/modules/peek/Peek.UI/Peek.UI.csproj index 9948b4931c..49d8e1503a 100644 --- a/src/modules/peek/Peek.UI/Peek.UI.csproj +++ b/src/modules/peek/Peek.UI/Peek.UI.csproj @@ -12,7 +12,7 @@ <OutputPath>..\..\..\..\$(Platform)\$(Configuration)\WinUI3Apps</OutputPath> <ApplicationManifest>app.manifest</ApplicationManifest> <Platforms>x86;x64;ARM64</Platforms> - <RuntimeIdentifiers>win10-x86;win10-x64;win10-arm64</RuntimeIdentifiers> + <RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers> <UseWinUI>true</UseWinUI> <GenerateSatelliteAssembliesForCore>true</GenerateSatelliteAssembliesForCore> <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> @@ -37,10 +37,10 @@ <!-- SelfContained=true requires RuntimeIdentifier to be set --> <PropertyGroup Condition="'$(Platform)'=='x64'"> - <RuntimeIdentifier>win10-x64</RuntimeIdentifier> + <RuntimeIdentifier>win-x64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Platform)'=='ARM64'"> - <RuntimeIdentifier>win10-arm64</RuntimeIdentifier> + <RuntimeIdentifier>win-arm64</RuntimeIdentifier> </PropertyGroup> <!-- See https://learn.microsoft.com/windows/apps/develop/platform/csharp-winrt/net-projection-from-cppwinrt-component for more info --> diff --git a/src/modules/poweraccent/PowerAccent.Core/PowerAccent.Core.csproj b/src/modules/poweraccent/PowerAccent.Core/PowerAccent.Core.csproj index ed458a7f42..2d7a2f5c7b 100644 --- a/src/modules/poweraccent/PowerAccent.Core/PowerAccent.Core.csproj +++ b/src/modules/poweraccent/PowerAccent.Core/PowerAccent.Core.csproj @@ -15,10 +15,10 @@ <!-- SelfContained=true requires RuntimeIdentifier to be set --> <PropertyGroup Condition="'$(Platform)'=='x64'"> - <RuntimeIdentifier>win10-x64</RuntimeIdentifier> + <RuntimeIdentifier>win-x64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Platform)'=='ARM64'"> - <RuntimeIdentifier>win10-arm64</RuntimeIdentifier> + <RuntimeIdentifier>win-arm64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup> diff --git a/src/modules/poweraccent/PowerAccent.UI/PowerAccent.UI.csproj b/src/modules/poweraccent/PowerAccent.UI/PowerAccent.UI.csproj index 890abe783f..0d08d5eb82 100644 --- a/src/modules/poweraccent/PowerAccent.UI/PowerAccent.UI.csproj +++ b/src/modules/poweraccent/PowerAccent.UI/PowerAccent.UI.csproj @@ -21,10 +21,10 @@ <!-- SelfContained=true requires RuntimeIdentifier to be set --> <PropertyGroup Condition="'$(Platform)'=='x64'"> - <RuntimeIdentifier>win10-x64</RuntimeIdentifier> + <RuntimeIdentifier>win-x64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Platform)'=='ARM64'"> - <RuntimeIdentifier>win10-arm64</RuntimeIdentifier> + <RuntimeIdentifier>win-arm64</RuntimeIdentifier> </PropertyGroup> <ItemGroup> diff --git a/src/modules/previewpane/GcodePreviewHandler/GcodePreviewHandler.csproj b/src/modules/previewpane/GcodePreviewHandler/GcodePreviewHandler.csproj index fa52694bba..72afb9e10d 100644 --- a/src/modules/previewpane/GcodePreviewHandler/GcodePreviewHandler.csproj +++ b/src/modules/previewpane/GcodePreviewHandler/GcodePreviewHandler.csproj @@ -17,10 +17,10 @@ <!-- SelfContained=true requires RuntimeIdentifier to be set --> <PropertyGroup Condition="'$(Platform)'=='x64'"> - <RuntimeIdentifier>win10-x64</RuntimeIdentifier> + <RuntimeIdentifier>win-x64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Platform)'=='ARM64'"> - <RuntimeIdentifier>win10-arm64</RuntimeIdentifier> + <RuntimeIdentifier>win-arm64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup> diff --git a/src/modules/previewpane/GcodeThumbnailProvider/GcodeThumbnailProvider.csproj b/src/modules/previewpane/GcodeThumbnailProvider/GcodeThumbnailProvider.csproj index d7c29f3a4b..24ac171b7a 100644 --- a/src/modules/previewpane/GcodeThumbnailProvider/GcodeThumbnailProvider.csproj +++ b/src/modules/previewpane/GcodeThumbnailProvider/GcodeThumbnailProvider.csproj @@ -21,10 +21,10 @@ <!-- SelfContained=true requires RuntimeIdentifier to be set --> <PropertyGroup Condition="'$(Platform)'=='x64'"> - <RuntimeIdentifier>win10-x64</RuntimeIdentifier> + <RuntimeIdentifier>win-x64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Platform)'=='ARM64'"> - <RuntimeIdentifier>win10-arm64</RuntimeIdentifier> + <RuntimeIdentifier>win-arm64</RuntimeIdentifier> </PropertyGroup> <Import Project="..\..\..\Version.props" /> diff --git a/src/modules/previewpane/MarkdownPreviewHandler/MarkdownPreviewHandler.csproj b/src/modules/previewpane/MarkdownPreviewHandler/MarkdownPreviewHandler.csproj index 4b8f62efb2..850f08918b 100644 --- a/src/modules/previewpane/MarkdownPreviewHandler/MarkdownPreviewHandler.csproj +++ b/src/modules/previewpane/MarkdownPreviewHandler/MarkdownPreviewHandler.csproj @@ -11,7 +11,7 @@ <AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath> <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> <GenerateSatelliteAssembliesForCore>true</GenerateSatelliteAssembliesForCore> - <RuntimeIdentifiers>win10-x64;win10-arm64</RuntimeIdentifiers> + <RuntimeIdentifiers>win-x64;win-arm64</RuntimeIdentifiers> <TargetFramework>net8.0-windows10.0.20348.0</TargetFramework> <TargetPlatformMinVersion>10.0.19041.0</TargetPlatformMinVersion> <SupportedOSPlatformVersion>10.0.19041.0</SupportedOSPlatformVersion> @@ -20,10 +20,10 @@ <!-- SelfContained=true requires RuntimeIdentifier to be set --> <PropertyGroup Condition="'$(Platform)'=='x64'"> - <RuntimeIdentifier>win10-x64</RuntimeIdentifier> + <RuntimeIdentifier>win-x64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Platform)'=='ARM64'"> - <RuntimeIdentifier>win10-arm64</RuntimeIdentifier> + <RuntimeIdentifier>win-arm64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup> diff --git a/src/modules/previewpane/MonacoPreviewHandler/MonacoPreviewHandler.csproj b/src/modules/previewpane/MonacoPreviewHandler/MonacoPreviewHandler.csproj index 0d8f53c302..bb4da33302 100644 --- a/src/modules/previewpane/MonacoPreviewHandler/MonacoPreviewHandler.csproj +++ b/src/modules/previewpane/MonacoPreviewHandler/MonacoPreviewHandler.csproj @@ -10,16 +10,16 @@ <AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath> <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> <GenerateSatelliteAssembliesForCore>true</GenerateSatelliteAssembliesForCore> - <RuntimeIdentifiers>win10-x64;win10-arm64</RuntimeIdentifiers> + <RuntimeIdentifiers>win-x64;win-arm64</RuntimeIdentifiers> <SelfContained>true</SelfContained> </PropertyGroup> <!-- SelfContained=true requires RuntimeIdentifier to be set --> <PropertyGroup Condition="'$(Platform)'=='x64'"> - <RuntimeIdentifier>win10-x64</RuntimeIdentifier> + <RuntimeIdentifier>win-x64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Platform)'=='ARM64'"> - <RuntimeIdentifier>win10-arm64</RuntimeIdentifier> + <RuntimeIdentifier>win-arm64</RuntimeIdentifier> </PropertyGroup> <Import Project="..\..\..\Version.props" /> diff --git a/src/modules/previewpane/PdfPreviewHandler/PdfPreviewHandler.csproj b/src/modules/previewpane/PdfPreviewHandler/PdfPreviewHandler.csproj index caffbfba4a..33f1444658 100644 --- a/src/modules/previewpane/PdfPreviewHandler/PdfPreviewHandler.csproj +++ b/src/modules/previewpane/PdfPreviewHandler/PdfPreviewHandler.csproj @@ -17,10 +17,10 @@ <!-- SelfContained=true requires RuntimeIdentifier to be set --> <PropertyGroup Condition="'$(Platform)'=='x64'"> - <RuntimeIdentifier>win10-x64</RuntimeIdentifier> + <RuntimeIdentifier>win-x64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Platform)'=='ARM64'"> - <RuntimeIdentifier>win10-arm64</RuntimeIdentifier> + <RuntimeIdentifier>win-arm64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup> diff --git a/src/modules/previewpane/PdfThumbnailProvider/PdfThumbnailProvider.csproj b/src/modules/previewpane/PdfThumbnailProvider/PdfThumbnailProvider.csproj index c623806ea7..6ba3939773 100644 --- a/src/modules/previewpane/PdfThumbnailProvider/PdfThumbnailProvider.csproj +++ b/src/modules/previewpane/PdfThumbnailProvider/PdfThumbnailProvider.csproj @@ -21,10 +21,10 @@ <!-- SelfContained=true requires RuntimeIdentifier to be set --> <PropertyGroup Condition="'$(Platform)'=='x64'"> - <RuntimeIdentifier>win10-x64</RuntimeIdentifier> + <RuntimeIdentifier>win-x64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Platform)'=='ARM64'"> - <RuntimeIdentifier>win10-arm64</RuntimeIdentifier> + <RuntimeIdentifier>win-arm64</RuntimeIdentifier> </PropertyGroup> <Import Project="..\..\..\Version.props" /> diff --git a/src/modules/previewpane/StlThumbnailProvider/StlThumbnailProvider.csproj b/src/modules/previewpane/StlThumbnailProvider/StlThumbnailProvider.csproj index 0a03f2ca17..6dc5b9cc24 100644 --- a/src/modules/previewpane/StlThumbnailProvider/StlThumbnailProvider.csproj +++ b/src/modules/previewpane/StlThumbnailProvider/StlThumbnailProvider.csproj @@ -22,10 +22,10 @@ <!-- SelfContained=true requires RuntimeIdentifier to be set --> <PropertyGroup Condition="'$(Platform)'=='x64'"> - <RuntimeIdentifier>win10-x64</RuntimeIdentifier> + <RuntimeIdentifier>win-x64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Platform)'=='ARM64'"> - <RuntimeIdentifier>win10-arm64</RuntimeIdentifier> + <RuntimeIdentifier>win-arm64</RuntimeIdentifier> </PropertyGroup> <Import Project="..\..\..\Version.props" /> diff --git a/src/modules/previewpane/SvgPreviewHandler/SvgPreviewHandler.csproj b/src/modules/previewpane/SvgPreviewHandler/SvgPreviewHandler.csproj index 2ec94b6a30..9bb25fbd6b 100644 --- a/src/modules/previewpane/SvgPreviewHandler/SvgPreviewHandler.csproj +++ b/src/modules/previewpane/SvgPreviewHandler/SvgPreviewHandler.csproj @@ -12,7 +12,7 @@ <AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath> <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> <GenerateSatelliteAssembliesForCore>true</GenerateSatelliteAssembliesForCore> - <RuntimeIdentifiers>win10-x64;win10-arm64</RuntimeIdentifiers> + <RuntimeIdentifiers>win-x64;win-arm64</RuntimeIdentifiers> <TargetFramework>net8.0-windows10.0.20348.0</TargetFramework> <TargetPlatformMinVersion>10.0.19041.0</TargetPlatformMinVersion> <SupportedOSPlatformVersion>10.0.19041.0</SupportedOSPlatformVersion> @@ -21,10 +21,10 @@ <!-- SelfContained=true requires RuntimeIdentifier to be set --> <PropertyGroup Condition="'$(Platform)'=='x64'"> - <RuntimeIdentifier>win10-x64</RuntimeIdentifier> + <RuntimeIdentifier>win-x64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Platform)'=='ARM64'"> - <RuntimeIdentifier>win10-arm64</RuntimeIdentifier> + <RuntimeIdentifier>win-arm64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup> diff --git a/src/modules/previewpane/SvgThumbnailProvider/SvgThumbnailProvider.csproj b/src/modules/previewpane/SvgThumbnailProvider/SvgThumbnailProvider.csproj index fd40aed759..09d3112f57 100644 --- a/src/modules/previewpane/SvgThumbnailProvider/SvgThumbnailProvider.csproj +++ b/src/modules/previewpane/SvgThumbnailProvider/SvgThumbnailProvider.csproj @@ -17,16 +17,16 @@ <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> <AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath> <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> - <RuntimeIdentifiers>win10-x64;win10-arm64</RuntimeIdentifiers> + <RuntimeIdentifiers>win-x64;win-arm64</RuntimeIdentifiers> <SelfContained>true</SelfContained> </PropertyGroup> <!-- SelfContained=true requires RuntimeIdentifier to be set --> <PropertyGroup Condition="'$(Platform)'=='x64'"> - <RuntimeIdentifier>win10-x64</RuntimeIdentifier> + <RuntimeIdentifier>win-x64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Platform)'=='ARM64'"> - <RuntimeIdentifier>win10-arm64</RuntimeIdentifier> + <RuntimeIdentifier>win-arm64</RuntimeIdentifier> </PropertyGroup> <Import Project="..\..\..\Version.props" /> diff --git a/src/modules/registrypreview/RegistryPreviewUI/RegistryPreviewUI.csproj b/src/modules/registrypreview/RegistryPreviewUI/RegistryPreviewUI.csproj index 38bc174534..f715785731 100644 --- a/src/modules/registrypreview/RegistryPreviewUI/RegistryPreviewUI.csproj +++ b/src/modules/registrypreview/RegistryPreviewUI/RegistryPreviewUI.csproj @@ -38,10 +38,10 @@ <!-- SelfContained=true requires RuntimeIdentifier to be set --> <PropertyGroup Condition="'$(Platform)'=='x64'"> - <RuntimeIdentifier>win10-x64</RuntimeIdentifier> + <RuntimeIdentifier>win-x64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Platform)'=='ARM64'"> - <RuntimeIdentifier>win10-arm64</RuntimeIdentifier> + <RuntimeIdentifier>win-arm64</RuntimeIdentifier> </PropertyGroup> <ItemGroup> diff --git a/src/settings-ui/Settings.UI.Library/Settings.UI.Library.csproj b/src/settings-ui/Settings.UI.Library/Settings.UI.Library.csproj index c9662b61da..437874b15d 100644 --- a/src/settings-ui/Settings.UI.Library/Settings.UI.Library.csproj +++ b/src/settings-ui/Settings.UI.Library/Settings.UI.Library.csproj @@ -14,10 +14,10 @@ <!-- SelfContained=true requires RuntimeIdentifier to be set --> <PropertyGroup Condition="'$(Platform)'=='x64'"> - <RuntimeIdentifier>win10-x64</RuntimeIdentifier> + <RuntimeIdentifier>win-x64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Platform)'=='ARM64'"> - <RuntimeIdentifier>win10-arm64</RuntimeIdentifier> + <RuntimeIdentifier>win-arm64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)'=='Debug'"> diff --git a/src/settings-ui/Settings.UI.UnitTests/Settings.UI.UnitTests.csproj b/src/settings-ui/Settings.UI.UnitTests/Settings.UI.UnitTests.csproj index 39c4f40c54..17b5681ffc 100644 --- a/src/settings-ui/Settings.UI.UnitTests/Settings.UI.UnitTests.csproj +++ b/src/settings-ui/Settings.UI.UnitTests/Settings.UI.UnitTests.csproj @@ -5,7 +5,7 @@ <TargetPlatformMinVersion>10.0.19041.0</TargetPlatformMinVersion> <SupportedOSPlatformVersion>10.0.19041.0</SupportedOSPlatformVersion> <IsPackable>false</IsPackable> - <RuntimeIdentifiers>win10-x64;win10-arm64</RuntimeIdentifiers> + <RuntimeIdentifiers>win-x64;win-arm64</RuntimeIdentifiers> <Version>$(Version).0</Version> </PropertyGroup> diff --git a/src/settings-ui/Settings.UI/PowerToys.Settings.csproj b/src/settings-ui/Settings.UI/PowerToys.Settings.csproj index 8c07a83a03..8727a88031 100644 --- a/src/settings-ui/Settings.UI/PowerToys.Settings.csproj +++ b/src/settings-ui/Settings.UI/PowerToys.Settings.csproj @@ -7,7 +7,7 @@ <SupportedOSPlatformVersion>10.0.19041.0</SupportedOSPlatformVersion> <RootNamespace>Microsoft.PowerToys.Settings.UI</RootNamespace> <ApplicationManifest>app.manifest</ApplicationManifest> - <RuntimeIdentifiers>win10-x64;win10-arm64</RuntimeIdentifiers> + <RuntimeIdentifiers>win-x64;win-arm64</RuntimeIdentifiers> <UseWinUI>true</UseWinUI> <EnablePreviewMsixTooling>true</EnablePreviewMsixTooling> <WindowsPackageType>None</WindowsPackageType> @@ -31,10 +31,10 @@ <!-- SelfContained=true requires RuntimeIdentifier to be set --> <PropertyGroup Condition="'$(Platform)'=='x64'"> - <RuntimeIdentifier>win10-x64</RuntimeIdentifier> + <RuntimeIdentifier>win-x64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Platform)'=='ARM64'"> - <RuntimeIdentifier>win10-arm64</RuntimeIdentifier> + <RuntimeIdentifier>win-arm64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)'=='Debug'">