-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Expand file tree
/
Copy pathMaterialDesignColors.Wpf.csproj
More file actions
29 lines (26 loc) · 1.43 KB
/
MaterialDesignColors.Wpf.csproj
File metadata and controls
29 lines (26 loc) · 1.43 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
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<RootNamespace>MaterialDesignColors</RootNamespace>
<AssemblyName>MaterialDesignColors</AssemblyName>
<TargetFrameworks>net462;net8.0-windows</TargetFrameworks>
<UseWPF>true</UseWPF>
<MDIXColorsVersion Condition="$(MDIXColorsVersion) == '' Or $(MDIXColorsVersion) == '*Undefined*'">1.0.1</MDIXColorsVersion>
<MDIXColorsVersion>$([System.Text.RegularExpressions.Regex]::Replace("$(MDIXColorsVersion)", "-ci\d+$", ""))</MDIXColorsVersion>
<AssemblyTitle>MaterialDesignColors.Wpf</AssemblyTitle>
<Product>MaterialDesignColors.Wpf</Product>
<Description>Material Design in XAML Toolkit - Colors</Description>
<Version>$(MDIXColorsVersion)</Version>
<AssemblyVersion>$(MDIXColorsVersion)</AssemblyVersion>
<!-- Package Properties -->
<PackageId>MaterialDesignColors</PackageId>
<Title>Material Design Colors XAML Resources</Title>
<PackageDescription>ResourceDictionary instances containing standard Google Material Design swatches, for inclusion in a XAML application.</PackageDescription>
<PackageTags>WPF XAML Material Design Colour Color UI UX</PackageTags>
</PropertyGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Reflection.AssemblyMetadataAttribute">
<_Parameter1>MDIXColorsVersion</_Parameter1>
<_Parameter2>$(MDIXColorsVersion)</_Parameter2>
</AssemblyAttribute>
</ItemGroup>
</Project>