-
Notifications
You must be signed in to change notification settings - Fork 716
Expand file tree
/
Copy pathstandalone.props
More file actions
26 lines (26 loc) · 1.78 KB
/
standalone.props
File metadata and controls
26 lines (26 loc) · 1.78 KB
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
<Project>
<PropertyGroup>
<!-- The NuGet versions of dependencies to build against. -->
<WindowsSdkPackageVersion>10.0.22621.42</WindowsSdkPackageVersion>
<WindowsAppSdkPackageVersion>1.8.260209005</WindowsAppSdkPackageVersion>
<MicrosoftNETCoreUniversalWindowsPlatformVersion>6.2.11</MicrosoftNETCoreUniversalWindowsPlatformVersion>
<GraphicsWin2DVersion>1.3.2</GraphicsWin2DVersion>
<ColorCodeVersion>2.0.15</ColorCodeVersion>
<CommunityToolkitWinUIVersion>8.2.251219</CommunityToolkitWinUIVersion>
<MicrosoftCsWinRTPackageVersion>2.2.0</MicrosoftCsWinRTPackageVersion>
<!-- We have multiple projects in the same directory, which means we need to separate their output paths-->
<BaseIntermediateOutputPath>obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath>
<BaseOutputPath>bin\$(MSBuildProjectName)\</BaseOutputPath>
<!--
For Desktop, the .NET SDK automatically includes every .cs file in the project directory. It normally
also excludes items under the obj/bin folders based on the value of BaseIntermediateOutputPath/BaseOutputPath.
However, because we overwrite those to output to subdirectories, the outputs of the UWP WinUI Gallery
are erroneously included. Explicitly exclude them here
-->
<DefaultItemExcludes>obj\**;bin\**;$(DefaultItemExcludes)</DefaultItemExcludes>
<!-- Where to place the files generated from CSWinRT from WinUIGallery.Desktop.-->
<GeneratedFilesDir>obj\generated</GeneratedFilesDir>
<IsAotCompatible Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net8.0'))">true</IsAotCompatible>
<CsWinRTAotWarningLevel Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net8.0'))">2</CsWinRTAotWarningLevel>
</PropertyGroup>
</Project>