-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathDevWinUI.csproj
More file actions
61 lines (58 loc) · 2.98 KB
/
DevWinUI.csproj
File metadata and controls
61 lines (58 loc) · 2.98 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>$(LibraryMajorVersion).$(DevWinUI_MinorVersion).$(DevWinUI_PatchVersion)$(PreviewBuildSuffix)</Version>
<PackageId>$(BaseNamespace)</PackageId>
<AssemblyName>$(BaseNamespace)</AssemblyName>
<Description>
Experience WinUI 3 quickly and easily with the help of DevWinUI, Everything you need to develop an application is gathered in one place. DevWinUI Includes custom controls, styles, landingPages,Compositions and win2d.
</Description>
<PackageTags>winui winui3 win11 xaml DevWinUI DevWinUI.Controls SettingsUI Components settings theme styles projectreunion winappsdk windowsappsdk wasdk reunion SettingsControls settingsexpander settingscard landingPages win2d composition</PackageTags>
<!-- Remove trailing .0 from Windows TFM -->
<CleanTargetFramework>$([System.Text.RegularExpressions.Regex]::Replace('$(TargetFramework)','\.0$',''))</CleanTargetFramework>
<TargetsForTfmSpecificContentInPackage>$(TargetsForTfmSpecificContentInPackage);PackCustomContent</TargetsForTfmSpecificContentInPackage>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Graphics.Win2D" Version="$(Win2dVersion)" />
<PackageReference Include="XAMLTools.MSBuild" Version="$(XAMLToolsVersion)">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<XAMLCombineItems Include="Themes\Styles\**\*.xaml">
<TargetFile>Themes\Generic.xaml</TargetFile>
<Visible>True</Visible>
</XAMLCombineItems>
<XAMLCombineItems Include="Controls\Ported\**\*.xaml" Exclude="Controls\Ported\Sidebar\SidebarView.xaml">
<TargetFile>Themes\Generic.xaml</TargetFile>
<Visible>True</Visible>
</XAMLCombineItems>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="..\..\tools\Assets\Mask\ForegroundFocusMask.png">
<LogicalName>Assets.Mask.ForegroundFocusMask.png</LogicalName>
</EmbeddedResource>
<EmbeddedResource Include="..\..\tools\Assets\Mask\TextGlitchMask.png">
<LogicalName>Assets.Mask.TextGlitchMask.png</LogicalName>
</EmbeddedResource>
<EmbeddedResource Include="..\..\tools\Assets\Mask\CircleMask.png">
<LogicalName>Assets.Mask.CircleMask.png</LogicalName>
</EmbeddedResource>
<EmbeddedResource Include="..\..\tools\Assets\Noise\Noise.jpg">
<LogicalName>Assets.Noise.Noise.jpg</LogicalName>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DevWinUI.Base\DevWinUI.Base.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="build\$(PackageId).targets" Pack="true" PackagePath="build\" />
</ItemGroup>
<Target Name="PackCustomContent">
<ItemGroup>
<TfmSpecificPackageFile Include="Themes\Generic.xaml">
<PackagePath>lib\$(CleanTargetFramework)\DevWinUI\Themes\</PackagePath>
</TfmSpecificPackageFile>
</ItemGroup>
</Target>
</Project>