-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathFlagsEditorEX.csproj
64 lines (64 loc) · 3.1 KB
/
FlagsEditorEX.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<OutputType>Library</OutputType>
<RootNamespace>FlagsEditorEXPlugin</RootNamespace>
<GenerateAssemblyInfo>True</GenerateAssemblyInfo>
<UseWindowsForms>true</UseWindowsForms>
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
<Nullable>enable</Nullable>
<Configurations>Debug;Release;TestApp</Configurations>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<WarningLevel>7</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='TestApp|AnyCPU'">
<WarningLevel>7</WarningLevel>
<DefineConstants>$(DefineConstants);DEBUG</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<WarningLevel>7</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Compile Remove="TestApp\**" />
<EmbeddedResource Remove="TestApp\**" />
<None Remove="TestApp\**" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="flagslist\flags_gen1rb_en.txt" />
<EmbeddedResource Include="flagslist\flags_gen1y_en.txt" />
<EmbeddedResource Include="flagslist\flags_gen1jbu_en.txt" />
<EmbeddedResource Include="flagslist\flags_gen1jgn_en.txt" />
<EmbeddedResource Include="flagslist\flags_gen2gs_en.txt" />
<EmbeddedResource Include="flagslist\flags_gen2c_en.txt" />
<EmbeddedResource Include="flagslist\flags_gen3rs_en.txt" />
<EmbeddedResource Include="flagslist\flags_gen3e_en.txt" />
<EmbeddedResource Include="flagslist\flags_gen3frlg_en.txt" />
<EmbeddedResource Include="flagslist\flags_gen4dp_en.txt" />
<EmbeddedResource Include="flagslist\flags_gen4pt_en.txt" />
<EmbeddedResource Include="flagslist\flags_gen4hgss_en.txt" />
<EmbeddedResource Include="flagslist\flags_gen5bw_en.txt" />
<EmbeddedResource Include="flagslist\flags_gen5b2w2_en.txt" />
<EmbeddedResource Include="flagslist\flags_gen6xy_en.txt" />
<EmbeddedResource Include="flagslist\flags_gen6oras_en.txt" />
<EmbeddedResource Include="flagslist\flags_gen7sm_en.txt" />
<EmbeddedResource Include="flagslist\flags_gen7usum_en.txt" />
<EmbeddedResource Include="flagslist\flags_gen7blgpe_en.txt" />
<EmbeddedResource Include="flagslist\flags_gen8bdsp_en.txt" />
<EmbeddedResource Include="flagslist\flags_gen8la_en.txt" />
<EmbeddedResource Include="flagslist\flags_gen8swsh_en.txt" />
<EmbeddedResource Include="flagslist\flags_gen9sv_en.txt" />
<EmbeddedResource Include="localization\lang_br.txt" />
<EmbeddedResource Include="localization\lang_en.txt" />
<EmbeddedResource Include="localization\lang_ko.txt" />
<EmbeddedResource Include="localization\lang_zh-Hans.txt" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="PKHeX.Core" Version="24.11.11" />
</ItemGroup>
<ItemGroup>
<Using Include="PKHeX.Core" />
<Using Include="System.Text" />
</ItemGroup>
</Project>