/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v4.0.34
src/Files.App.Server/Files.App.Server.csproj
55 строк
3 KB
Steve
Code Quality: Use Satori GC for x64 and arm64 package (#17487)
04 сен 2025, 19:28
Не верифицирован
04 сен 2025, 19:28
a6b39a9
Код
Авторство
О чём код?
<!-- Copyright (c) Files Community. Licensed under the MIT License. --> <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>WinExe</OutputType> <DefaultLanguage>en-US</DefaultLanguage> <AppxBundleAutoResourcePackageQualifiers>Scale|DXFeatureLevel</AppxBundleAutoResourcePackageQualifiers> <AppxDefaultResourceQualifiers>Language=en-US;af;ar;be-BY;bg;ca;cs-CZ;da;de-DE;el;en-GB;es-ES;es-419;fa-IR;fi-FI;fil-PH;fr-FR;he-IL;hi-IN;hr-HR;hu-HU;hy-AM;id-ID;it-IT;ja-JP;ka;km-KH;ko-KR;lt-LT;lv-LV;ms-MY;nb-NO;nl-NL;pl-PL;pt-BR;pt-PT;ro-RO;ru-RU;sk-SK;sq-AL;sr-Cyrl;sv-SE;ta;th-TH;tr-TR;uk-UA;vi;zh-Hans;zh-Hant</AppxDefaultResourceQualifiers> <TargetFramework>$(WindowsTargetFramework)</TargetFramework> <TargetPlatformMinVersion>$(MinimalWindowsVersion)</TargetPlatformMinVersion> <ImplicitUsings>enable</ImplicitUsings> <Nullable>enable</Nullable> <Configurations>Debug;Release</Configurations> <Platforms>x86;x64;arm64</Platforms> <SelfContained>true</SelfContained> <RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers> <RuntimeIdentifier Condition="'$(Platform)' == 'x86'">win-x86</RuntimeIdentifier> <RuntimeIdentifier Condition="'$(Platform)' == 'x64'">win-x64</RuntimeIdentifier> <RuntimeIdentifier Condition="'$(Platform)' == 'arm64'">win-arm64</RuntimeIdentifier> <AllowUnsafeBlocks>true</AllowUnsafeBlocks> <CsWinRTComponent>true</CsWinRTComponent> <CsWinRTWindowsMetadata>$(TargetWindowsVersion)</CsWinRTWindowsMetadata> <ApplicationManifest>app.manifest</ApplicationManifest> <PublishReadyToRun Condition="'$(Configuration)' == 'Debug'">False</PublishReadyToRun> <PublishReadyToRun Condition="'$(Configuration)' != 'Debug'">True</PublishReadyToRun> <PublishReadyToRunComposite Condition="'$(Configuration)' != 'Debug'">True</PublishReadyToRunComposite> <PublishTrimmed Condition="'$(Configuration)' == 'Debug'">False</PublishTrimmed> <PublishTrimmed Condition="'$(Configuration)' != 'Debug'">True</PublishTrimmed> <CsWinRTEnableLogging>true</CsWinRTEnableLogging> <IsAotCompatible>true</IsAotCompatible> <DisableRuntimeMarshalling>true</DisableRuntimeMarshalling> </PropertyGroup> <ItemGroup> <Manifest Include="app.manifest" /> <TrimmerRootAssembly Include="Files.App.Server" /> <PackageReference Include="Microsoft.Windows.CsWinRT" /> </ItemGroup> <ItemGroup> <None Include="..\Files.App.Server\bin\$(Platform)\$(Configuration)\$(TargetFramework)\win-$(Platform)\Files.App.Server.winmd"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> <Link>Files.App.Server.winmd</Link> <Visible>false</Visible> </None> </ItemGroup> <ItemGroup> <ProjectReference Include="..\Files.App.CsWin32\Files.App.CsWin32.csproj" /> <ProjectReference Include="..\Files.Core.SourceGenerator\Files.Core.SourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="False" /> <ProjectReference Include="..\Files.Shared\Files.Shared.csproj" /> </ItemGroup> <Import Project="..\Satori.targets" Condition=" '$(Platform)' != 'x86' " /> </Project>