/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/previewpane/GcodeThumbnailProvider/GcodeThumbnailProvider.csproj
43 строки
2 KB
Gordon Lam
build(common): update project references to use $(RepoRoot) for paths (#44639)
07 фев 2026, 03:12
Не верифицирован
07 фев 2026, 03:12
740dbf5
Код
Авторство
О чём код?
<Project Sdk="Microsoft.NET.Sdk"> <!-- Look at Directory.Build.props in root for common stuff as well --> <Import Project="$(RepoRoot)src\Common.Dotnet.CsWinRT.props" /> <Import Project="$(RepoRoot)src\Common.SelfContained.props" /> <PropertyGroup> <ImplicitUsings>enable</ImplicitUsings> <UseWindowsForms>true</UseWindowsForms> <ProjectGuid>{809AA252-E17A-4FA2-B0A1-0450976B763F}</ProjectGuid> <RootNamespace>Microsoft.PowerToys.ThumbnailHandler.Gcode</RootNamespace> <AssemblyName>PowerToys.GcodeThumbnailProvider</AssemblyName> <AssemblyTitle>PowerToys.GcodeThumbnailProvider</AssemblyTitle> <AssemblyDescription>PowerToys GcodePreviewHandler</AssemblyDescription> <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> <Description>PowerToys GcodePreviewHandler</Description> <OutputPath>$(RepoRoot)$(Platform)\$(Configuration)</OutputPath> <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> <AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath> <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> </PropertyGroup> <!-- See https://learn.microsoft.com/windows/apps/develop/platform/csharp-winrt/net-projection-from-cppwinrt-component for more info --> <PropertyGroup> <CsWinRTIncludes>PowerToys.GPOWrapper</CsWinRTIncludes> <CsWinRTGeneratedFilesDir>$(OutDir)</CsWinRTGeneratedFilesDir> <ErrorOnDuplicatePublishOutputFiles>false</ErrorOnDuplicatePublishOutputFiles> </PropertyGroup> <PropertyGroup> <!-- Disable missing comment warning. WinRT/C++ libraries added won't have comments on their reflections. --> <NoWarn>$(NoWarn);1591</NoWarn> <OutputType>WinExe</OutputType> </PropertyGroup> <ItemGroup> <ProjectReference Include="..\..\..\common\FilePreviewCommon\FilePreviewCommon.csproj" /> <ProjectReference Include="..\..\..\common\GPOWrapper\GPOWrapper.vcxproj" /> <ProjectReference Include="..\..\..\common\ManagedTelemetry\Telemetry\ManagedTelemetry.csproj" /> <ProjectReference Include="..\Common\PreviewHandlerCommon.csproj" /> <ProjectReference Include="..\..\..\common\Common.UI\Common.UI.csproj" /> </ItemGroup> </Project>