-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
/
MahApps.Metro.Demo.csproj
43 lines (38 loc) · 1.88 KB
/
MahApps.Metro.Demo.csproj
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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<!-- Project properties -->
<PropertyGroup>
<AssemblyName>MahApps.Metro.Demo</AssemblyName>
<RootNamespace>MetroDemo</RootNamespace>
<!-- Workaround for https://github.com/dotnet/sourcelink/issues/91 -->
<DeterministicSourcePaths Condition="'$(EnableSourceLink)' == ''">false</DeterministicSourcePaths>
<OutputType>WinExe</OutputType>
<NoWarn>SA1652;WPF0041</NoWarn>
<ApplicationIcon>mahapps.metro.logo2.ico</ApplicationIcon>
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\MahApps.Metro\MahApps.Metro.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="app.manifest" />
</ItemGroup>
<ItemGroup Condition="$(DefineConstants.Contains(NETCOREAPP)) == false">
<Reference Include="System.ComponentModel.DataAnnotations" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MaterialDesignThemes" />
<PackageReference Include="MaterialDesignColors" />
<PackageReference Include="MahApps.Metro.IconPacks.Entypo" />
<PackageReference Include="MahApps.Metro.IconPacks.FontAwesome" />
<PackageReference Include="MahApps.Metro.IconPacks.Material" />
<PackageReference Include="MahApps.Metro.IconPacks.Modern" />
<PackageReference Include="MahApps.Metro.IconPacks.Octicons" />
<PackageReference Include="NHotkey.Wpf" />
<PackageReference Include="Microsoft.Web.WebView2" />
</ItemGroup>
<ItemGroup>
<Compile DependentUpon="%(Filename)" SubType="Code" Update="**\obj\**\*.g$(DefaultLanguageSourceExtension)" />
<Compile DependentUpon="%(Filename)" SubType="Designer" Update="**\*.xaml$(DefaultLanguageSourceExtension)" />
</ItemGroup>
</Project>