This repository has been archived by the owner on Dec 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathDirectory.Build.props
51 lines (44 loc) · 2.7 KB
/
Directory.Build.props
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
<Project>
<PropertyGroup Condition="'$(MSBuildProjectName)' != 'WucGalleryApp'">
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion>
<RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers>
<OutputPath>$(SolutionDir)Output\</OutputPath>
<NoWarn>WMC1506;WMC0001;CA1416;CS8632;CS0067;CS0078;CS0649;CS0414;NU1903;NU1902</NoWarn>
<ImplicitUsings>true</ImplicitUsings>
<LangVersion>Latest</LangVersion>
<IsAotCompatible>true</IsAotCompatible>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<!--<CsWinRTAotWarningLevel Condition="'$(IsAotCompatible)' == 'true'">2</CsWinRTAotWarningLevel>-->
<TargetFrameworks Condition=" '$(Configuration)' == 'Release' ">net8.0-windows10.0.19041.0;net8.0-windows10.0.26100.0</TargetFrameworks>
<TargetFrameworks Condition=" '$(Configuration)' == 'Debug' ">net8.0-windows10.0.19041.0</TargetFrameworks>
<EnableMsixTooling Condition="'$(GITHUB_ACTIONS)' == 'true' And '$(MSBuildProjectName)' != 'ContextMenuExtensions'">true</EnableMsixTooling>
<UseWinUI Condition="'$(MSBuildProjectName)' != 'ContextMenuExtensions'">true</UseWinUI>
<!-- The NuGet package version -->
<XAMLToolsVersion>1.0.0-alpha0167</XAMLToolsVersion>
<CsWin32Version>0.3.106</CsWin32Version>
<CommunityToolkitMediaVersion>8.0.240109</CommunityToolkitMediaVersion>
<Win2dVersion>1.3.0</Win2dVersion>
<!-- The NuGet package options -->
<PackageIcon>icon.png</PackageIcon>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Authors>WinUICommunity</Authors>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<Copyright>Copyright (c) 2021-2024 Mahdi Hosseini</Copyright>
<PackageProjectUrl>https://github.com/WinUICommunity/WinUICommunity</PackageProjectUrl>
<RepositoryUrl>https://github.com/WinUICommunity/WinUICommunity</RepositoryUrl>
<PackageReleaseNotes>https://github.com/WinUICommunity/WinUICommunity/releases</PackageReleaseNotes>
</PropertyGroup>
<!-- The NuGet versions of dependencies to build against. -->
<ItemGroup Condition="'$(MSBuildProjectName)' != 'ContextMenuExtensions'">
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.6.241114003" />
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.22621.3233" />
</ItemGroup>
<ItemGroup Condition="'$(MSBuildProjectName)' != 'WucGalleryApp'">
<None Include="Assets\icon.png" Pack="true" PackagePath="" />
<None Include="..\..\LICENSE" Pack="true" PackagePath="" />
<None Include="README.md" Pack="true" PackagePath="" />
</ItemGroup>
</Project>