This repository has been archived by the owner on Jul 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
XivToolsWpf.csproj
101 lines (92 loc) · 3.23 KB
/
XivToolsWpf.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
97
98
99
100
101
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<AppendTargetFramework>False</AppendTargetFramework>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<Nullable>enable</Nullable>
<DocumentationFile>..\obj\XIVToolsWpf.xml</DocumentationFile>
<NoWarn>1701;1702;SA1503;CS1591;SA1401;SA1516;CS0067;IDE0027;IDE0025;SA1011;SA1134;</NoWarn>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<None Remove="fonts\fa-brands-400.ttf" />
<None Remove="fonts\fa-duotone-900.ttf" />
<None Remove="fonts\fa-light-300.ttf" />
<None Remove="fonts\fa-regular-400.ttf" />
<None Remove="fonts\fa-solid-900.ttf" />
</ItemGroup>
<ItemGroup>
<Resource Include="fonts\fa-brands-400.ttf" />
<Resource Include="fonts\fa-duotone-900.ttf" />
<Resource Include="fonts\fa-light-300.ttf" />
<Resource Include="fonts\fa-regular-400.ttf" />
<Resource Include="fonts\fa-solid-900.ttf" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FontAwesome.Sharp" Version="6.1.1" />
<PackageReference Include="FontAwesome.Sharp.Pro" Version="5.15.4" />
<PackageReference Include="PropertyChanged.SourceGenerator" Version="1.0.8">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Compile Update="Controls\Header.xaml.cs">
<DependentUpon>Header.xaml</DependentUpon>
</Compile>
<Compile Update="Controls\NumberBox.xaml.cs">
<DependentUpon>NumberBox.xaml</DependentUpon>
</Compile>
<Compile Update="Controls\TextBlock.xaml.cs">
<DependentUpon>TextBlock.xaml</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<Page Update="Styles.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="Styles\ButtonStyles.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="Controls\Header.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="Controls\NumberBox.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="Controls\TextBlock.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="Styles\ExpanderStyles.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="Styles\GroupBoxStyles.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="Styles\TabControlStyles.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="Styles\TextBlockStyles.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="Styles\TextBoxStyles.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="Styles\ToggleButtonStyles.xaml">
<SubType>Designer</SubType>
</Page>
</ItemGroup>
<Target Name="RemoveDuplicateAnalyzers" BeforeTargets="CoreCompile">
<!-- Work around https://github.com/dotnet/wpf/issues/6792 -->
<ItemGroup>
<FilteredAnalyzer Include="@(Analyzer->Distinct())" />
<Analyzer Remove="@(Analyzer)" />
<Analyzer Include="@(FilteredAnalyzer)" />
</ItemGroup>
</Target>
</Project>