Skip to content

Commit 682d4ef

Browse files
committed
Clean up project references
1 parent 77ab07e commit 682d4ef

File tree

24 files changed

+55
-368
lines changed

24 files changed

+55
-368
lines changed

WowPacketParser/DBC/DBC.cs

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -13,30 +13,30 @@ namespace WowPacketParser.DBC
1313
{
1414
public static class DBC
1515
{
16-
public static Storage<AreaTableEntry> AreaTable { get; set; }
17-
public static Storage<AchievementEntry> Achievement { get; set; }
18-
public static Storage<AnimationDataEntry> AnimationData { get; set; }
19-
public static Storage<BroadcastTextEntry> BroadcastText { get; set; }
20-
public static Storage<BroadcastTextDurationEntry> BroadcastTextDuration { get; set; }
21-
public static Storage<ConversationLineEntry> ConversationLine { get; set; }
22-
public static Storage<CreatureEntry> Creature { get; set; }
23-
public static Storage<CreatureDifficultyEntry> CreatureDifficulty { get; set; }
24-
public static Storage<CreatureFamilyEntry> CreatureFamily { get; set; }
25-
public static Storage<CreatureDisplayInfoEntry> CreatureDisplayInfo { get; set; }
26-
public static Storage<CriteriaTreeEntry> CriteriaTree { get; set; }
27-
public static Storage<CriteriaEntry> Criteria { get; set; }
28-
public static Storage<DifficultyEntry> Difficulty { get; set; }
29-
public static Storage<FactionEntry> Faction { get; set; }
30-
public static Storage<FactionTemplateEntry> FactionTemplate { get; set; }
31-
public static Storage<ItemEntry> Item { get; set; }
32-
public static Storage<ItemSparseEntry> ItemSparse { get; set; }
33-
public static Storage<MapEntry> Map { get; set; }
34-
public static Storage<MapDifficultyEntry> MapDifficulty { get; set; }
35-
public static Storage<QuestLineXQuestEntry> QuestLineXQuest { get; set; }
36-
public static Storage<PhaseEntry> Phase { get; set; }
37-
public static Storage<PhaseXPhaseGroupEntry> PhaseXPhaseGroup { get; set; }
38-
public static Storage<SpellEffectEntry> SpellEffect { get; set; }
39-
public static Storage<SpellNameEntry> SpellName { get; set; }
16+
internal static Storage<AreaTableEntry> AreaTable { get; set; }
17+
internal static Storage<AchievementEntry> Achievement { get; set; }
18+
internal static Storage<AnimationDataEntry> AnimationData { get; set; }
19+
internal static Storage<BroadcastTextEntry> BroadcastText { get; set; }
20+
internal static Storage<BroadcastTextDurationEntry> BroadcastTextDuration { get; set; }
21+
internal static Storage<ConversationLineEntry> ConversationLine { get; set; }
22+
internal static Storage<CreatureEntry> Creature { get; set; }
23+
internal static Storage<CreatureDifficultyEntry> CreatureDifficulty { get; set; }
24+
internal static Storage<CreatureFamilyEntry> CreatureFamily { get; set; }
25+
internal static Storage<CreatureDisplayInfoEntry> CreatureDisplayInfo { get; set; }
26+
internal static Storage<CriteriaTreeEntry> CriteriaTree { get; set; }
27+
internal static Storage<CriteriaEntry> Criteria { get; set; }
28+
internal static Storage<DifficultyEntry> Difficulty { get; set; }
29+
internal static Storage<FactionEntry> Faction { get; set; }
30+
internal static Storage<FactionTemplateEntry> FactionTemplate { get; set; }
31+
internal static Storage<ItemEntry> Item { get; set; }
32+
internal static Storage<ItemSparseEntry> ItemSparse { get; set; }
33+
internal static Storage<MapEntry> Map { get; set; }
34+
internal static Storage<MapDifficultyEntry> MapDifficulty { get; set; }
35+
internal static Storage<QuestLineXQuestEntry> QuestLineXQuest { get; set; }
36+
internal static Storage<PhaseEntry> Phase { get; set; }
37+
internal static Storage<PhaseXPhaseGroupEntry> PhaseXPhaseGroup { get; set; }
38+
internal static Storage<SpellEffectEntry> SpellEffect { get; set; }
39+
internal static Storage<SpellNameEntry> SpellName { get; set; }
4040

4141
private static string GetDBCPath()
4242
{
Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<Import Project="../default.props" />
33

4-
<ItemGroup>
5-
<PackageReference Include="Sigil" Version="5.0.0" />
6-
</ItemGroup>
4+
<PropertyGroup>
5+
<OutputPath>../WowPacketParser/bin/$(Configuration)/Parsers/</OutputPath>
6+
</PropertyGroup>
77

88
<ItemGroup>
9-
<ProjectReference Include="..\WowPacketParser\WowPacketParser.csproj">
10-
<Private>false</Private>
11-
<EmbedInteropTypes>false</EmbedInteropTypes>
12-
</ProjectReference>
9+
<ProjectReference Include="..\WowPacketParser\WowPacketParser.csproj" />
1310
</ItemGroup>
1411
</Project>
Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<Import Project="../default.props" />
33

4-
<ItemGroup>
5-
<PackageReference Include="Sigil" Version="5.0.0" />
6-
</ItemGroup>
4+
<PropertyGroup>
5+
<OutputPath>../WowPacketParser/bin/$(Configuration)/Parsers/</OutputPath>
6+
</PropertyGroup>
77

88
<ItemGroup>
9-
<ProjectReference Include="..\WowPacketParser\WowPacketParser.csproj">
10-
<Private>false</Private>
11-
<EmbedInteropTypes>false</EmbedInteropTypes>
12-
</ProjectReference>
9+
<ProjectReference Include="..\WowPacketParser\WowPacketParser.csproj" />
1310
</ItemGroup>
1411
</Project>

WowPacketParserModule.V10_0_0_46181/WowPacketParserModule.V10_0_0_46181.csproj

Lines changed: 1 addition & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -6,39 +6,6 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Sigil" Version="5.0.0" />
10-
</ItemGroup>
11-
12-
<ItemGroup>
13-
<ProjectReference Include="..\WowPacketParserModule.Substructures\WowPacketParserModule.Substructures.csproj">
14-
<EmbedInteropTypes>false</EmbedInteropTypes>
15-
<Private>true</Private>
16-
</ProjectReference>
17-
<ProjectReference Include="..\WowPacketParserModule.V6_0_2_19033\WowPacketParserModule.V6_0_2_19033.csproj">
18-
<EmbedInteropTypes>false</EmbedInteropTypes>
19-
<Private>false</Private>
20-
</ProjectReference>
21-
<ProjectReference Include="..\WowPacketParserModule.V7_0_3_22248\WowPacketParserModule.V7_0_3_22248.csproj">
22-
<EmbedInteropTypes>false</EmbedInteropTypes>
23-
<Private>false</Private>
24-
</ProjectReference>
25-
<ProjectReference Include="..\WowPacketParserModule.V8_0_1_27101\WowPacketParserModule.V8_0_1_27101.csproj">
26-
<EmbedInteropTypes>false</EmbedInteropTypes>
27-
<Private>false</Private>
28-
</ProjectReference>
29-
<ProjectReference Include="..\WowPacketParserModule.V9_0_1_36216\WowPacketParserModule.V9_0_1_36216.csproj">
30-
<EmbedInteropTypes>false</EmbedInteropTypes>
31-
<Private>false</Private>
32-
</ProjectReference>
33-
<ProjectReference Include="..\WowPacketParser\WowPacketParser.csproj">
34-
<Private>false</Private>
35-
<EmbedInteropTypes>false</EmbedInteropTypes>
36-
</ProjectReference>
37-
</ItemGroup>
38-
39-
<ItemGroup>
40-
<Reference Include="DBFileReaderLib">
41-
<HintPath>..\packages\DBFileReaderLib.1.0.0.0\lib\DBFileReaderLib.dll</HintPath>
42-
</Reference>
9+
<ProjectReference Include="..\WowPacketParserModule.V9_0_1_36216\WowPacketParserModule.V9_0_1_36216.csproj" />
4310
</ItemGroup>
4411
</Project>

WowPacketParserModule.V11_0_0_55666/WowPacketParserModule.V11_0_0_55666.csproj

Lines changed: 1 addition & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -6,43 +6,6 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Sigil" Version="5.0.0" />
10-
</ItemGroup>
11-
12-
<ItemGroup>
13-
<ProjectReference Include="..\WowPacketParserModule.Substructures\WowPacketParserModule.Substructures.csproj">
14-
<EmbedInteropTypes>false</EmbedInteropTypes>
15-
<Private>true</Private>
16-
</ProjectReference>
17-
<ProjectReference Include="..\WowPacketParserModule.V6_0_2_19033\WowPacketParserModule.V6_0_2_19033.csproj">
18-
<EmbedInteropTypes>false</EmbedInteropTypes>
19-
<Private>false</Private>
20-
</ProjectReference>
21-
<ProjectReference Include="..\WowPacketParserModule.V7_0_3_22248\WowPacketParserModule.V7_0_3_22248.csproj">
22-
<EmbedInteropTypes>false</EmbedInteropTypes>
23-
<Private>false</Private>
24-
</ProjectReference>
25-
<ProjectReference Include="..\WowPacketParserModule.V8_0_1_27101\WowPacketParserModule.V8_0_1_27101.csproj">
26-
<EmbedInteropTypes>false</EmbedInteropTypes>
27-
<Private>false</Private>
28-
</ProjectReference>
29-
<ProjectReference Include="..\WowPacketParserModule.V9_0_1_36216\WowPacketParserModule.V9_0_1_36216.csproj">
30-
<EmbedInteropTypes>false</EmbedInteropTypes>
31-
<Private>false</Private>
32-
</ProjectReference>
33-
<ProjectReference Include="..\WowPacketParserModule.V10_0_0_46181\WowPacketParserModule.V10_0_0_46181.csproj">
34-
<EmbedInteropTypes>false</EmbedInteropTypes>
35-
<Private>false</Private>
36-
</ProjectReference>
37-
<ProjectReference Include="..\WowPacketParser\WowPacketParser.csproj">
38-
<Private>false</Private>
39-
<EmbedInteropTypes>false</EmbedInteropTypes>
40-
</ProjectReference>
41-
</ItemGroup>
42-
43-
<ItemGroup>
44-
<Reference Include="DBFileReaderLib">
45-
<HintPath>..\packages\DBFileReaderLib.1.0.0.0\lib\DBFileReaderLib.dll</HintPath>
46-
</Reference>
9+
<ProjectReference Include="..\WowPacketParserModule.V10_0_0_46181\WowPacketParserModule.V10_0_0_46181.csproj" />
4710
</ItemGroup>
4811
</Project>

WowPacketParserModule.V12_0_0_65390/WowPacketParserModule.V12_0_0_65390.csproj

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,6 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<ProjectReference Include="..\WowPacketParserModule.V11_0_0_55666\WowPacketParserModule.V11_0_0_55666.csproj">
10-
<EmbedInteropTypes>false</EmbedInteropTypes>
11-
<Private>false</Private>
12-
</ProjectReference>
13-
</ItemGroup>
14-
15-
<ItemGroup>
16-
<Reference Include="DBFileReaderLib">
17-
<HintPath>..\packages\DBFileReaderLib.1.0.0.0\lib\DBFileReaderLib.dll</HintPath>
18-
</Reference>
9+
<ProjectReference Include="..\WowPacketParserModule.V11_0_0_55666\WowPacketParserModule.V11_0_0_55666.csproj" />
1910
</ItemGroup>
2011
</Project>

WowPacketParserModule.V1_13_2_31446/WowPacketParserModule.V1_13_2_31446.csproj

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -6,29 +6,6 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Sigil" Version="5.0.0" />
10-
</ItemGroup>
11-
12-
<ItemGroup>
13-
<ProjectReference Include="..\WowPacketParserModule.Substructures\WowPacketParserModule.Substructures.csproj">
14-
<EmbedInteropTypes>false</EmbedInteropTypes>
15-
<Private>true</Private>
16-
</ProjectReference>
17-
<ProjectReference Include="..\WowPacketParserModule.V6_0_2_19033\WowPacketParserModule.V6_0_2_19033.csproj">
18-
<EmbedInteropTypes>false</EmbedInteropTypes>
19-
<Private>false</Private>
20-
</ProjectReference>
21-
<ProjectReference Include="..\WowPacketParserModule.V7_0_3_22248\WowPacketParserModule.V7_0_3_22248.csproj">
22-
<EmbedInteropTypes>false</EmbedInteropTypes>
23-
<Private>false</Private>
24-
</ProjectReference>
25-
<ProjectReference Include="..\WowPacketParserModule.V8_0_1_27101\WowPacketParserModule.V8_0_1_27101.csproj">
26-
<EmbedInteropTypes>false</EmbedInteropTypes>
27-
<Private>false</Private>
28-
</ProjectReference>
29-
<ProjectReference Include="..\WowPacketParser\WowPacketParser.csproj">
30-
<EmbedInteropTypes>false</EmbedInteropTypes>
31-
<Private>false</Private>
32-
</ProjectReference>
9+
<ProjectReference Include="..\WowPacketParserModule.V8_0_1_27101\WowPacketParserModule.V8_0_1_27101.csproj" />
3310
</ItemGroup>
3411
</Project>

WowPacketParserModule.V2_4_3_8606/WowPacketParserModule.V2_4_3_8606.csproj

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,6 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Sigil" Version="5.0.0" />
10-
</ItemGroup>
11-
12-
<ItemGroup>
13-
<ProjectReference Include="..\WowPacketParser\WowPacketParser.csproj">
14-
<Private>false</Private>
15-
<EmbedInteropTypes>false</EmbedInteropTypes>
16-
</ProjectReference>
9+
<ProjectReference Include="..\WowPacketParser\WowPacketParser.csproj" />
1710
</ItemGroup>
1811
</Project>

WowPacketParserModule.V2_5_1_38707/WowPacketParserModule.V2_5_1_38707.csproj

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,6 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Sigil" Version="5.0.0" />
10-
</ItemGroup>
11-
12-
<ItemGroup>
13-
<ProjectReference Include="..\WowPacketParserModule.V6_0_2_19033\WowPacketParserModule.V6_0_2_19033.csproj" />
14-
<ProjectReference Include="..\WowPacketParserModule.V7_0_3_22248\WowPacketParserModule.V7_0_3_22248.csproj" />
15-
<ProjectReference Include="..\WowPacketParserModule.V8_0_1_27101\WowPacketParserModule.V8_0_1_27101.csproj" />
169
<ProjectReference Include="..\WowPacketParserModule.V9_0_1_36216\WowPacketParserModule.V9_0_1_36216.csproj" />
17-
<ProjectReference Include="..\WowPacketParser\WowPacketParser.csproj">
18-
<Private>false</Private>
19-
<EmbedInteropTypes>false</EmbedInteropTypes>
20-
</ProjectReference>
2110
</ItemGroup>
2211
</Project>

WowPacketParserModule.V3_4_0_45166/WowPacketParserModule.V3_4_0_45166.csproj

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,8 @@
55
<OutputPath>../WowPacketParser/bin/$(Configuration)/Parsers/</OutputPath>
66
</PropertyGroup>
77

8-
<ItemGroup>
9-
<PackageReference Include="Sigil" Version="5.0.0" />
10-
</ItemGroup>
11-
128
<ItemGroup>
139
<ProjectReference Include="..\WowPacketParserModule.V10_0_0_46181\WowPacketParserModule.V10_0_0_46181.csproj" />
1410
<ProjectReference Include="..\WowPacketParserModule.V2_5_1_38707\WowPacketParserModule.V2_5_1_38707.csproj" />
15-
<ProjectReference Include="..\WowPacketParserModule.V6_0_2_19033\WowPacketParserModule.V6_0_2_19033.csproj" />
16-
<ProjectReference Include="..\WowPacketParserModule.V7_0_3_22248\WowPacketParserModule.V7_0_3_22248.csproj" />
17-
<ProjectReference Include="..\WowPacketParserModule.V8_0_1_27101\WowPacketParserModule.V8_0_1_27101.csproj" />
18-
<ProjectReference Include="..\WowPacketParserModule.V9_0_1_36216\WowPacketParserModule.V9_0_1_36216.csproj" />
19-
<ProjectReference Include="..\WowPacketParser\WowPacketParser.csproj">
20-
<Private>false</Private>
21-
<EmbedInteropTypes>false</EmbedInteropTypes>
22-
</ProjectReference>
2311
</ItemGroup>
24-
25-
<ItemGroup>
26-
<Reference Include="DBFileReaderLib">
27-
<HintPath>..\packages\DBFileReaderLib.1.0.0.0\lib\DBFileReaderLib.dll</HintPath>
28-
</Reference>
29-
</ItemGroup>
3012
</Project>

0 commit comments

Comments
 (0)