-
-
Notifications
You must be signed in to change notification settings - Fork 783
/
Copy pathWpf.Ui.Gallery.csproj
96 lines (84 loc) · 3.51 KB
/
Wpf.Ui.Gallery.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>Wpf.Ui.Gallery</RootNamespace>
<OutputType>WinExe</OutputType>
<TargetFramework>net9.0-windows10.0.22621.0</TargetFramework>
<SupportedOSPlatformVersion>10.0.18362.0</SupportedOSPlatformVersion>
<UseWPF>true</UseWPF>
<EnableWindowsTargeting>true</EnableWindowsTargeting>
<ApplicationIcon>wpfui.ico</ApplicationIcon>
<ApplicationManifest>app.manifest</ApplicationManifest>
<NoWarn>$(NoWarn);SA1601</NoWarn>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<Content Include="wpfui.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Lepo.i18n.DependencyInjection" />
<PackageReference Include="Lepo.i18n.Wpf" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" />
<PackageReference Include="Microsoft.Extensions.Hosting" />
<PackageReference Include="CommunityToolkit.Mvvm" />
<PackageReference Include="Microsoft.Web.WebView2" />
<PackageReference Include="ReflectionEventing" />
<PackageReference Include="ReflectionEventing.DependencyInjection" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Wpf.Ui.DependencyInjection\Wpf.Ui.DependencyInjection.csproj" />
<ProjectReference Include="..\Wpf.Ui.SyntaxHighlight\Wpf.Ui.SyntaxHighlight.csproj" />
<ProjectReference Include="..\Wpf.Ui.ToastNotifications\Wpf.Ui.ToastNotifications.csproj" />
<ProjectReference Include="..\Wpf.Ui.Tray\Wpf.Ui.Tray.csproj" />
<ProjectReference Include="..\Wpf.Ui\Wpf.Ui.csproj" />
</ItemGroup>
<ItemGroup>
<Resource Include="Assets\geo_icons.png" />
<Resource Include="Assets\octonaut.jpg" />
<Resource Include="Assets\pexels-johannes-plenio-1103970.jpg" />
<Resource Include="Assets\WinUiGallery\Button.png" />
<Resource Include="Assets\WinUiGallery\Flyout.png" />
<Resource Include="Assets\WinUiGallery\MenuBar.png" />
<Resource Include="Assets\wpfui.png" />
<Resource Include="Assets\wpfui_full.png" />
<Resource Include="CodeSamples\Typography\TypographySample_xaml.txt" />
</ItemGroup>
<ItemGroup>
<Content Include="Assets\Monaco\**">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<None Update="License - Monaco.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="License - Images.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Folder Include="Assets\Monaco\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="StyleCop.Analyzers">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="WpfAnalyzers">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Resources\Translations.pl-PL.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Translations.pl-PL.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Compile Update="Resources\Translations.pl-PL.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Translations.pl-PL.resx</DependentUpon>
</Compile>
</ItemGroup>
</Project>