-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
Copy pathFiles.App.Controls.csproj
61 lines (55 loc) · 2.85 KB
/
Files.App.Controls.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!-- Copyright (c) Files Community. Licensed under the MIT License. -->
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="CurrentVersion.props" />
<PropertyGroup>
<TargetFramework>$(WindowsTargetFramework)</TargetFramework>
<TargetPlatformMinVersion>$(MinimalWindowsVersion)</TargetPlatformMinVersion>
<UseWinUI>true</UseWinUI>
<Nullable>enable</Nullable>
<Configurations>Debug;Release</Configurations>
<Platforms>x86;x64;arm64</Platforms>
<RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>Files UI Controls</Title>
<Authors>files-community</Authors>
<Company>Files Community</Company>
<Copyright>Copyright (c) Files Community</Copyright>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/files-community/Files</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>files, files-community, winui, winappsdk</PackageTags>
<Description>Elevate your WinUI applications with our collection of custom-built controls, crafted specifically to address our needs in Files. These controls are provided "as is", with no guaranteed support, but we hope they prove useful to the developer community.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageProjectUrl>https://files.community</PackageProjectUrl>
<PackageIcon>StoreLogo.scale-400.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<None Include="..\Files.App (Package)\Assets\AppTiles\Release\StoreLogo.scale-400.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommunityToolkit.WinUI.Extensions" />
<PackageReference Include="CommunityToolkit.Labs.WinUI.DependencyPropertyGenerator" />
<PackageReference Include="Microsoft.WindowsAppSDK" />
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" />
<PackageReference Include="Microsoft.Windows.CsWinRT" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Files.Shared\Files.Shared.csproj" />
<ProjectReference Include="..\Files.Core.SourceGenerator\Files.Core.SourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
</ItemGroup>
<ItemGroup>
<None Include="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>