forked from fluentribbon/Fluent.Ribbon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFluent.Ribbon.Showcase.csproj
43 lines (36 loc) · 1.48 KB
/
Fluent.Ribbon.Showcase.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">
<PropertyGroup>
<RootNamespace>FluentTest</RootNamespace>
<AssemblyName>Fluent.Ribbon.Showcase</AssemblyName>
<NoWarn>$(NoWarn);SA0001;SA1601;SA1602</NoWarn>
<InlcudeMahAppsMetro>false</InlcudeMahAppsMetro>
<DefineConstants Condition="$(InlcudeMahAppsMetro)">$(DefineConstants);MahApps_Metro</DefineConstants>
</PropertyGroup>
<PropertyGroup>
<OutputType>WinExe</OutputType>
<StartupObject>FluentTest.Program</StartupObject>
<ApplicationIcon>Icons\App.ico</ApplicationIcon>
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
<ItemGroup>
<None Include="app.manifest" />
</ItemGroup>
<ItemGroup Condition="$(InlcudeMahAppsMetro) == false">
<Page Remove="MahMetro*" />
<Compile Remove="MahMetro*" />
<None Include="MahMetro*" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Fluent.Ribbon\Fluent.Ribbon.csproj" />
<PackageReference Include="ControlzEx" />
<PackageReference Include="MahApps.Metro.IconPacks.Material" />
<PackageReference Include="MahApps.Metro" Condition="$(InlcudeMahAppsMetro)" />
</ItemGroup>
<ItemGroup Condition="$(DefineConstants.Contains(NETCOREAPP)) == false">
<Reference Include="System.Web" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Data" />
<Reference Include="WindowsFormsIntegration" />
</ItemGroup>
</Project>