/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/common/ManagedCommon/ManagedCommon.csproj
42 строки
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.Dotnet.AotCompatibility.props" /> <PropertyGroup> <Description>PowerToys ManagedCommon</Description> <AssemblyName>PowerToys.ManagedCommon</AssemblyName> </PropertyGroup> <!-- See https://learn.microsoft.com/windows/apps/develop/platform/csharp-winrt/net-projection-from-cppwinrt-component for more info --> <PropertyGroup> <CsWinRTIncludes>PowerToys.Interop</CsWinRTIncludes> <CsWinRTGeneratedFilesDir>$(OutDir)</CsWinRTGeneratedFilesDir> <ErrorOnDuplicatePublishOutputFiles>false</ErrorOnDuplicatePublishOutputFiles> </PropertyGroup> <ItemGroup> <PackageReference Include="System.Management" /> </ItemGroup> <ItemGroup> <ProjectReference Include="..\interop\PowerToys.Interop.vcxproj" /> <ProjectReference Include="..\ManagedTelemetry\Telemetry\ManagedTelemetry.csproj" /> </ItemGroup> <ItemGroup> <Compile Update="CommonResources.Designer.cs"> <DependentUpon>CommonResources.resx</DependentUpon> <DesignTime>True</DesignTime> <AutoGen>True</AutoGen> </Compile> </ItemGroup> <ItemGroup> <EmbeddedResource Update="CommonResources.resx"> <SubType>Designer</SubType> <LastGenOutput>CommonResources.Designer.cs</LastGenOutput> <Generator>PublicResXFileCodeGenerator</Generator> </EmbeddedResource> </ItemGroup> </Project>