forked from MaterialDesignInXAML/MaterialDesignInXamlToolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMaterialDesign3Demo.csproj
More file actions
65 lines (65 loc) · 2.68 KB
/
MaterialDesign3Demo.csproj
File metadata and controls
65 lines (65 loc) · 2.68 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
62
63
64
65
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFrameworks>net472;net8.0-windows</TargetFrameworks>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Prefer32Bit Condition="'$(TargetFramework)' == 'net472'">true</Prefer32Bit>
<ApplicationIcon>favicon.ico</ApplicationIcon>
<UseWPF>true</UseWPF>
<SignAssembly>false</SignAssembly>
<ApplicationManifest>App.manifest</ApplicationManifest>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)'=='net472'">
<Reference Include="PresentationFramework.Aero2" />
<Reference Include="System" />
<Reference Include="System.Configuration" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Xaml">
<RequiredTargetFramework>4.0</RequiredTargetFramework>
</Reference>
<Reference Include="WindowsBase" />
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MaterialDesignColors.Wpf\MaterialDesignColors.Wpf.csproj" />
<ProjectReference Include="..\MaterialDesignDemo.Shared\MaterialDesignDemo.Shared.csproj" />
<ProjectReference Include="..\MaterialDesignThemes.Wpf\MaterialDesignThemes.Wpf.csproj" />
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\*.jpg" />
<Resource Include="Resources\*.png" />
<Compile Include="..\MainDemo.Wpf\CommandLineOptions.cs" Link="CommandLineOptions.cs" />
<Resource Include="ScreenGrabFromGoogle.gif" />
<Resource Include="favicon.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="BluwolfIcons">
<NoWarn>NU1701</NoWarn>
</PackageReference>
<PackageReference Include="System.CommandLine" />
<PackageReference Include="VirtualizingWrapPanel" />
<PackageReference Include="ShowMeTheXAML" />
<PackageReference Include="ShowMeTheXAML.AvalonEdit" />
<PackageReference Include="ShowMeTheXAML.MSBuild" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Settings.Designer.cs">
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<None Update="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
</Project>