-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
Sdk.targets
32 lines (29 loc) · 1.21 KB
/
Sdk.targets
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
<Project>
<ItemGroup Condition=" '$(DisableImplicitFrameworkReferences)' != 'true' ">
<FrameworkReference
Condition=" '$(UseMaui)' == 'true' or '$(UseMauiCore)' == 'true' "
Include="Microsoft.Maui.Core"
IsImplicitlyDefined="true"
Pack="false"
PrivateAssets="All"
/>
<FrameworkReference
Condition=" '$(UseMaui)' == 'true' "
Include="Microsoft.Maui.Controls"
IsImplicitlyDefined="true"
Pack="false"
PrivateAssets="All"
/>
<FrameworkReference
Condition=" '$(UseMaui)' == 'true' or '$(UseMauiEssentials)' == 'true' "
Include="Microsoft.Maui.Essentials"
IsImplicitlyDefined="true"
Pack="false"
PrivateAssets="All"
/>
</ItemGroup>
<Import Project="BundledVersions.targets" />
<Import Project="Microsoft.Maui.Sdk.targets" Condition=" '$(UseMaui)' == 'true' or '$(UseMauiCore)' == 'true' or '$(UseMauiEssentials)' == 'true' or '$(UseMauiAssets)' == 'true' " />
<Import Project="Microsoft.Maui.Core.Sdk.targets" Condition=" '$(UseMaui)' == 'true' or '$(UseMauiCore)' == 'true' " />
<Import Project="Microsoft.Maui.Controls.Sdk.targets" Condition=" '$(UseMaui)' == 'true' " />
</Project>