-
Notifications
You must be signed in to change notification settings - Fork 142
Expand file tree
/
Copy pathSettingsControls.Samples.csproj
More file actions
35 lines (32 loc) · 1.23 KB
/
SettingsControls.Samples.csproj
File metadata and controls
35 lines (32 loc) · 1.23 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
27
28
29
30
31
32
33
34
35
<Project>
<Import Project="$([MSBuild]::GetPathOfFileAbove(Directory.Build.props))" Condition="Exists('$([MSBuild]::GetPathOfFileAbove(Directory.Build.props))')" />
<PropertyGroup>
<ToolkitComponentName>SettingsControls</ToolkitComponentName>
</PropertyGroup>
<!-- Sets this up as a toolkit component's sample project -->
<Import Project="$(ToolingDirectory)\ToolkitComponent.SampleProject.props" />
<ItemGroup>
<Content Remove="ContentAlignmentSettingsCardSample.xaml" />
<Content Remove="ContentAlignmentSettingsCardSample.xaml.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(ToolkitExtensionsSourceProject)"></ProjectReference>
</ItemGroup>
<ItemGroup>
<None Remove="Assets\SettingsCard.png" />
<None Remove="Assets\SettingsExpander.png" />
</ItemGroup>
<ItemGroup>
<Content Include="Assets\SettingsCard.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Assets\SettingsExpander.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Page Update="ContentAlignmentSettingsCardSample.xaml">
<SubType>Designer</SubType>
</Page>
</ItemGroup>
</Project>