-
Notifications
You must be signed in to change notification settings - Fork 636
/
standalone.props
24 lines (24 loc) · 1.52 KB
/
standalone.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
<Project>
<PropertyGroup>
<!-- The NuGet versions of dependencies to build against. -->
<WindowsSdkPackageVersion>10.0.22621.42</WindowsSdkPackageVersion>
<WindowsAppSdkPackageVersion>1.6.241106002</WindowsAppSdkPackageVersion>
<MicrosoftNETCoreUniversalWindowsPlatformVersion>6.2.11</MicrosoftNETCoreUniversalWindowsPlatformVersion>
<GraphicsWin2DVersion>1.0.4</GraphicsWin2DVersion>
<ColorCodeVersion>2.0.13</ColorCodeVersion>
<CommunityToolkitWinUIVersion>8.0.230907</CommunityToolkitWinUIVersion>
<MicrosoftCsWinRTPackageVersion>2.0.3</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>
</PropertyGroup>
</Project>