/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v3.2.3
src/Files.App.BackgroundTasks/Files.App.BackgroundTasks.csproj
32 строки
1 KB
Steve
Feature: Added an out-of-proc WinRT server for long-running background tasks (#14335)
31 дек 2023, 20:57
Не верифицирован
31 дек 2023, 20:57
62518f2
Код
Авторство
О чём код?
<!-- Copyright (c) 2023 Files Community. Licensed under the MIT License. See the LICENSE. --> <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <TargetFramework>net8.0-windows10.0.22621.0</TargetFramework> <DefaultLanguage>en-US</DefaultLanguage> <TargetPlatformMinVersion>10.0.19041.0</TargetPlatformMinVersion> <IsTrimmable>true</IsTrimmable> <Configurations>Debug;Release;Stable;Preview;Store</Configurations> <Platforms>x86;x64;ARM64</Platforms> <RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers> </PropertyGroup> <PropertyGroup> <CsWinRTComponent>true</CsWinRTComponent> <CsWinRTWindowsMetadata>10.0.22621.0</CsWinRTWindowsMetadata> <CsWinRTGeneratedFilesDir>$(MSBuildProjectDirectory)\bin\$(Platform)\$(Configuration)</CsWinRTGeneratedFilesDir> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)' == 'Debug'"> <DefineConstants>TRACE;DEBUG;NETFX_CORE</DefineConstants> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)' != 'Debug'"> <DefineConstants>TRACE;RELEASE;NETFX_CORE</DefineConstants> <Optimize>true</Optimize> </PropertyGroup> <ItemGroup> <PackageReference Include="Microsoft.Windows.CsWinRT" Version="2.0.4" /> </ItemGroup> </Project>