Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 34 additions & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<FileAlignment>512</FileAlignment>
</PropertyGroup>

<ItemGroup Condition="'$(Configuration)' == 'Debug'" >
<ItemGroup Condition="'$(Configuration)' == 'Debug'">
<PackageReference Include="BepInEx.Analyzers" Version="1.*" />
<PackageReference Include="Microsoft.Unity.Analyzers" Version="1.*" />
</ItemGroup>
Expand All @@ -26,6 +26,39 @@
<DefineConstants>$(MSBuildProjectName.Replace('.',';').Replace('-',';').Replace('_',';'))</DefineConstants>
</PropertyGroup>

<!--Add common nuget packages based on the project name. Must use regex in this way to avoid KK matching KKS, HS matching HS2, etc.-->
<ItemGroup Condition="$([System.Text.RegularExpressions.Regex]::IsMatch(';$(DefineConstants);', ';PC;'))">
<PackageReference Include="IllusionLibs.BepInEx" Version="5.*" />
</ItemGroup>
<ItemGroup Condition="$([System.Text.RegularExpressions.Regex]::IsMatch(';$(DefineConstants);', ';PH;'))">
<PackageReference Include="ExtensibleSaveFormat.PlayHome" Version="21.0" />
<PackageReference Include="IllusionLibs.PlayHome.AllPackages" Version="*" />
</ItemGroup>
<ItemGroup Condition="$([System.Text.RegularExpressions.Regex]::IsMatch(';$(DefineConstants);', ';HS;'))">
<PackageReference Include="IllusionLibs.HoneySelect.AllPackages" Version="*" />
</ItemGroup>
<ItemGroup Condition="$([System.Text.RegularExpressions.Regex]::IsMatch(';$(DefineConstants);', ';AI;'))">
<PackageReference Include="ExtensibleSaveFormat.AIGirl" Version="21.0" />
<PackageReference Include="IllusionLibs.AIGirl.AllPackages" Version="*" />
</ItemGroup>
<ItemGroup Condition="$([System.Text.RegularExpressions.Regex]::IsMatch(';$(DefineConstants);', ';HS2;'))">
<PackageReference Include="ExtensibleSaveFormat.HoneySelect2" Version="21.0" />
<PackageReference Include="IllusionLibs.HoneySelect2.AllPackages" Version="*" />
</ItemGroup>
<ItemGroup Condition="$([System.Text.RegularExpressions.Regex]::IsMatch(';$(DefineConstants);', ';EC;'))">
<PackageReference Include="ExtensibleSaveFormat.EmotionCreators" Version="21.0" />
<PackageReference Include="IllusionLibs.EmotionCreators.AllPackages" Version="*" />
</ItemGroup>
<ItemGroup Condition="$([System.Text.RegularExpressions.Regex]::IsMatch(';$(DefineConstants);', ';KK;'))">
<PackageReference Include="ExtensibleSaveFormat.Koikatu" Version="21.0" />
<PackageReference Include="IllusionLibs.Koikatu.AllPackages" Version="*" />
<PackageReference Include="KoikatuCompatibilityAnalyzer" Version="*" />
</ItemGroup>
<ItemGroup Condition="$([System.Text.RegularExpressions.Regex]::IsMatch(';$(DefineConstants);', ';KKS;'))">
<PackageReference Include="ExtensibleSaveFormat.KoikatsuSunshine" Version="21.0" />
<PackageReference Include="IllusionLibs.KoikatsuSunshine.AllPackages" Version="*" />
</ItemGroup>

<!--Delete unnecessary .deps.json file in build output since it's not used in plugins-->
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Delete Files="$(OutputPath)\$(MSBuildProjectName).deps.json" />
Expand Down
4 changes: 1 addition & 3 deletions src/AccessoryClothes.EC/EC.AccessoryClothes.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@
<AssemblyName>KK_AccessoryClothes</AssemblyName>
<FinalAssName>EC_AccessoryClothes</FinalAssName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IllusionLibs.EmotionCreators.AllPackages" Version="*" />
</ItemGroup>

<Import Project="..\AccessoryClothes.Core\AccessoryClothes.Core.projitems" Label="Shared" />
<Import Project="..\Shared\Shared.projitems" Label="Shared" />

Expand Down
5 changes: 1 addition & 4 deletions src/AccessoryClothes.KK/KK.AccessoryClothes.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,7 @@
<TargetFramework>net35</TargetFramework>
<AssemblyName>KK_AccessoryClothes</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IllusionLibs.Koikatu.AllPackages" Version="*" />
<PackageReference Include="KoikatuCompatibilityAnalyzer" Version="1.1.0" />
</ItemGroup>

<Import Project="..\Shared\Shared.projitems" Label="Shared" />
<Import Project="..\AccessoryClothes.Core\AccessoryClothes.Core.projitems" Label="Shared" />
</Project>
4 changes: 1 addition & 3 deletions src/AccessoryClothes.KKS/KKS.AccessoryClothes.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@
<AssemblyName>KK_AccessoryClothes</AssemblyName>
<FinalAssName>KKS_AccessoryClothes</FinalAssName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IllusionLibs.KoikatsuSunshine.AllPackages" Version="*" />
</ItemGroup>

<Import Project="..\AccessoryClothes.Core\AccessoryClothes.Core.projitems" Label="Shared" />
<Import Project="..\Shared\Shared.projitems" Label="Shared" />

Expand Down
1 change: 0 additions & 1 deletion src/AccessoryQuickRemove.EC/EC.AccessoryQuickRemove.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
<AssemblyName>EC_AccessoryQuickRemove</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IllusionLibs.EmotionCreators.AllPackages" Version="*" />
<PackageReference Include="IllusionModdingAPI.ECAPI" Version="1.45.1" />
</ItemGroup>
<Import Project="..\AccessoryQuickRemove.Core\AccessoryQuickRemove.Core.projitems" Label="Shared" />
Expand Down
1 change: 0 additions & 1 deletion src/AccessoryQuickRemove.KK/KK.AccessoryQuickRemove.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
<AssemblyName>KK_AccessoryQuickRemove</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IllusionLibs.Koikatu.AllPackages" Version="*" />
<PackageReference Include="IllusionModdingAPI.KKAPI" Version="1.45.1" />
</ItemGroup>
<Import Project="..\Shared\Shared.projitems" Label="Shared" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
<AssemblyName>KKS_AccessoryQuickRemove</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IllusionLibs.KoikatsuSunshine.AllPackages" Version="*" />
<PackageReference Include="IllusionLibs.XUnity.AutoTranslator.Plugin.Core" Version="4.18.0" />
<PackageReference Include="IllusionModdingAPI.KKSAPI" Version="1.45.1" />
</ItemGroup>
Expand Down
1 change: 0 additions & 1 deletion src/AnimationController.AI/AI.AnimationController.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
<AssemblyName>AI_AnimationController</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IllusionLibs.AIGirl.AllPackages" Version="*" />
<PackageReference Include="IllusionModdingAPI.AIAPI" Version="1.45.1" />
</ItemGroup>
<Import Project="..\Shared\Shared.projitems" Label="Shared" />
Expand Down
1 change: 0 additions & 1 deletion src/AnimationController.HS2/HS2.AnimationController.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
<AssemblyName>HS2_AnimationController</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IllusionLibs.HoneySelect2.AllPackages" Version="*" />
<PackageReference Include="IllusionModdingAPI.HS2API" Version="1.45.1" />
</ItemGroup>
<Import Project="..\AnimationController.Core\Core.AnimationController.projitems" Label="Shared" />
Expand Down
1 change: 0 additions & 1 deletion src/AnimationController.KK/KK.AnimationController.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
<AssemblyName>KK_AnimationController</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IllusionLibs.Koikatu.AllPackages" Version="*" />
<PackageReference Include="IllusionModdingAPI.KKAPI" Version="1.45.1" />
</ItemGroup>
<Import Project="..\Shared\Shared.projitems" Label="Shared" />
Expand Down
1 change: 0 additions & 1 deletion src/AnimationController.KKS/KKS.AnimationController.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
<AssemblyName>KKS_AnimationController</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IllusionLibs.KoikatsuSunshine.AllPackages" Version="*" />
<PackageReference Include="IllusionModdingAPI.KKSAPI" Version="1.45.1" />
</ItemGroup>
<Import Project="..\Shared\Shared.projitems" Label="Shared" />
Expand Down
4 changes: 1 addition & 3 deletions src/AnimationOverdrive.AI/AI.AnimationOverdrive.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
<TargetFramework>net46</TargetFramework>
<AssemblyName>AI_AnimationOverdrive</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IllusionLibs.AIGirl.AllPackages" Version="*" />
</ItemGroup>

<Import Project="..\AnimationOverdrive.Core\Core.AnimationOverdrive.projitems" Label="Shared" />
<Import Project="..\Shared\Shared.projitems" Label="Shared" />
</Project>
4 changes: 1 addition & 3 deletions src/AnimationOverdrive.HS2/HS2.AnimationOverdrive.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
<TargetFramework>net46</TargetFramework>
<AssemblyName>HS2_AnimationOverdrive</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IllusionLibs.HoneySelect2.AllPackages" Version="*" />
</ItemGroup>

<Import Project="..\AnimationOverdrive.Core\Core.AnimationOverdrive.projitems" Label="Shared" />
<Import Project="..\Shared\Shared.projitems" Label="Shared" />
</Project>
5 changes: 1 addition & 4 deletions src/AnimationOverdrive.KK/KK.AnimationOverdrive.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,7 @@
<TargetFramework>net35</TargetFramework>
<AssemblyName>KK_AnimationOverdrive</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IllusionLibs.Koikatu.AllPackages" Version="*" />
<PackageReference Include="KoikatuCompatibilityAnalyzer" Version="1.1.0" />
</ItemGroup>

<Import Project="..\AnimationOverdrive.Core\Core.AnimationOverdrive.projitems" Label="Shared" />
<Import Project="..\Shared\Shared.projitems" Label="Shared" />
</Project>
4 changes: 1 addition & 3 deletions src/AnimationOverdrive.KKS/KKS.AnimationOverdrive.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
<TargetFramework>net46</TargetFramework>
<AssemblyName>KKS_AnimationOverdrive</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IllusionLibs.KoikatsuSunshine.AllPackages" Version="*" />
</ItemGroup>

<Import Project="..\AnimationOverdrive.Core\Core.AnimationOverdrive.projitems" Label="Shared" />
<Import Project="..\Shared\Shared.projitems" Label="Shared" />
</Project>
1 change: 0 additions & 1 deletion src/Autosave.AI/AI.Autosave.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
<AssemblyName>AI_Autosave</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IllusionLibs.AIGirl.AllPackages" Version="*" />
<PackageReference Include="IllusionModdingAPI.AIAPI" Version="1.45.1" />
</ItemGroup>
<Import Project="..\Autosave.Core\Autosave.Core.projitems" Label="Shared" />
Expand Down
1 change: 0 additions & 1 deletion src/Autosave.EC/EC.Autosave.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
<AssemblyName>EC_Autosave</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IllusionLibs.EmotionCreators.AllPackages" Version="*" />
<PackageReference Include="IllusionModdingAPI.ECAPI" Version="1.45.1" />
</ItemGroup>
<Import Project="..\Autosave.Core\Autosave.Core.projitems" Label="Shared" />
Expand Down
4 changes: 1 addition & 3 deletions src/Autosave.HS/HS.Autosave.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
<TargetFramework>net35</TargetFramework>
<AssemblyName>HS_Autosave</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IllusionLibs.HoneySelect.AllPackages" Version="*" />
</ItemGroup>

<Import Project="..\Autosave.Core\Autosave.Core.projitems" Label="Shared" />
<Import Project="..\Shared\Shared.projitems" Label="Shared" />
</Project>
1 change: 0 additions & 1 deletion src/Autosave.HS2/HS2.Autosave.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
<AssemblyName>HS2_Autosave</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IllusionLibs.HoneySelect2.AllPackages" Version="*" />
<PackageReference Include="IllusionModdingAPI.HS2API" Version="1.45.1" />
</ItemGroup>
<Import Project="..\Autosave.Core\Autosave.Core.projitems" Label="Shared" />
Expand Down
1 change: 0 additions & 1 deletion src/Autosave.KK/KK.Autosave.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
<AssemblyName>KK_Autosave</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IllusionLibs.Koikatu.AllPackages" Version="*" />
<PackageReference Include="IllusionModdingAPI.KKAPI" Version="1.45.1" />
</ItemGroup>
<Import Project="..\Autosave.Core\Autosave.Core.projitems" Label="Shared" />
Expand Down
1 change: 0 additions & 1 deletion src/Autosave.KKS/KKS.Autosave.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
<AssemblyName>KKS_Autosave</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IllusionLibs.KoikatsuSunshine.AllPackages" Version="*" />
<PackageReference Include="IllusionLibs.XUnity.AutoTranslator.Plugin.Core" Version="4.18.0" />
<PackageReference Include="IllusionModdingAPI.KKSAPI" Version="1.45.1" />
</ItemGroup>
Expand Down
3 changes: 0 additions & 3 deletions src/Autosave.PC/PC.Autosave.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@
<Private>False</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="IllusionLibs.BepInEx" Version="5.4.22" />
</ItemGroup>
<Import Project="..\Autosave.Core\Autosave.Core.projitems" Label="Shared" />
<Import Project="..\Shared\Shared.projitems" Label="Shared" />
</Project>
1 change: 0 additions & 1 deletion src/Autosave.PH/PH.Autosave.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
<AssemblyName>PH_Autosave</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IllusionLibs.PlayHome.AllPackages" Version="*" />
<PackageReference Include="IllusionModdingAPI.PHAPI" Version="1.45.1" />
</ItemGroup>
<Import Project="..\Autosave.Core\Autosave.Core.projitems" Label="Shared" />
Expand Down
2 changes: 1 addition & 1 deletion src/Autosave.SBPR/SBPR.Autosave.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
</Reference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="IllusionLibs.BepInEx" Version="5.4.22" />
<PackageReference Include="IllusionLibs.BepInEx" Version="5.*" />
</ItemGroup>
<Import Project="..\Autosave.Core\Autosave.Core.projitems" Label="Shared" />
<Import Project="..\Shared\Shared.projitems" Label="Shared" />
Expand Down
1 change: 0 additions & 1 deletion src/Boop.KK/KK.Boop.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
<AssemblyName>KK_Boop</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IllusionLibs.Koikatu.AllPackages" Version="*" />
<PackageReference Include="IllusionModdingAPI.KKAPI" Version="1.45.1" />
</ItemGroup>
<Import Project="..\Boop.Core\Boop.Core.projitems" Label="Shared" />
Expand Down
1 change: 0 additions & 1 deletion src/Boop.KKS/KKS.Boop.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
<AssemblyName>KKS_Boop</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IllusionLibs.KoikatsuSunshine.AllPackages" Version="*" />
<PackageReference Include="IllusionModdingAPI.KKSAPI" Version="1.45.1" />
</ItemGroup>
<Import Project="..\Boop.Core\Boop.Core.projitems" Label="Shared" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
<AssemblyName>KK_CharaMakerLoadedSound</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IllusionLibs.Koikatu.AllPackages" Version="*" />
<PackageReference Include="IllusionModdingAPI.KKAPI" Version="1.45.1" />
</ItemGroup>
<Import Project="..\Shared\Shared.projitems" Label="Shared" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
<AssemblyName>KKS_CharaMakerLoadedSound</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IllusionLibs.KoikatsuSunshine.AllPackages" Version="*" />
<PackageReference Include="IllusionModdingAPI.KKSAPI" Version="1.45.1" />
</ItemGroup>
<Import Project="..\Shared\Shared.projitems" Label="Shared" />
Expand Down
4 changes: 1 addition & 3 deletions src/CharacterExport.AI/AI.CharacterExport.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
<TargetFramework>net46</TargetFramework>
<AssemblyName>AI_CharacterExport</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IllusionLibs.AIGirl.AllPackages" Version="*" />
</ItemGroup>

<Import Project="..\Shared\Shared.projitems" Label="Shared" />
<Import Project="..\CharacterExport.Core\Core.CharacterExport.projitems" Label="Shared" />
</Project>
4 changes: 1 addition & 3 deletions src/CharacterExport.EC/EC.CharacterExport.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
<TargetFramework>net46</TargetFramework>
<AssemblyName>EC_CharacterExport</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IllusionLibs.EmotionCreators.AllPackages" Version="*" />
</ItemGroup>

<Import Project="..\Shared\Shared.projitems" Label="Shared" />
<Import Project="..\CharacterExport.Core\Core.CharacterExport.projitems" Label="Shared" />
</Project>
4 changes: 1 addition & 3 deletions src/CharacterExport.HS2/HS2.CharacterExport.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
<TargetFramework>net46</TargetFramework>
<AssemblyName>HS2_CharacterExport</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IllusionLibs.HoneySelect2.AllPackages" Version="*" />
</ItemGroup>

<Import Project="..\CharacterExport.Core\Core.CharacterExport.projitems" Label="Shared" />
<Import Project="..\Shared\Shared.projitems" Label="Shared" />
</Project>
4 changes: 1 addition & 3 deletions src/CharacterExport.KK/KK.CharacterExport.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
<TargetFramework>net35</TargetFramework>
<AssemblyName>KK_CharacterExport</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IllusionLibs.Koikatu.AllPackages" Version="*" />
</ItemGroup>

<Import Project="..\Shared\Shared.projitems" Label="Shared" />
<Import Project="..\CharacterExport.Core\Core.CharacterExport.projitems" Label="Shared" />
</Project>
4 changes: 1 addition & 3 deletions src/CharacterExport.KKS/KKS.CharacterExport.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
<TargetFramework>net46</TargetFramework>
<AssemblyName>KKS_CharacterExport</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IllusionLibs.KoikatsuSunshine.AllPackages" Version="*" />
</ItemGroup>

<Import Project="..\CharacterExport.Core\Core.CharacterExport.projitems" Label="Shared" />
<Import Project="..\Shared\Shared.projitems" Label="Shared" />
</Project>
3 changes: 1 addition & 2 deletions src/ClothesToAccessories.KK/KK.ClothesToAccessories.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@
<AssemblyName>KK_ClothesToAccessories</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IllusionLibs.Koikatu.AllPackages" Version="*" />
<PackageReference Include="IllusionModdingAPI.KKAPI" Version="1.45.1" />
<PackageReference Include="Sideloader.Koikatu" Version="19.4" />
<PackageReference Include="Sideloader.Koikatu" Version="21.0" />
</ItemGroup>
<Import Project="..\Shared\Shared.projitems" Label="Shared" />
<Import Project="..\ClothesToAccessories.Common\ClothesToAccessories.Common.projitems" Label="Shared" />
Expand Down
3 changes: 1 addition & 2 deletions src/ClothesToAccessories.KKS/KKS.ClothesToAccessories.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@
<AssemblyName>KKS_ClothesToAccessories</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IllusionLibs.KoikatsuSunshine.AllPackages" Version="*" />
<PackageReference Include="IllusionModdingAPI.KKSAPI" Version="1.45.1" />
<PackageReference Include="Sideloader.KoikatsuSunshine" Version="19.4" />
<PackageReference Include="Sideloader.KoikatsuSunshine" Version="21.0" />
</ItemGroup>
<Import Project="..\Shared\Shared.projitems" Label="Shared" />
<Import Project="..\ClothesToAccessories.Common\ClothesToAccessories.Common.projitems" Label="Shared" />
Expand Down
1 change: 0 additions & 1 deletion src/ClothingUnlocker.EC/EC.ClothingUnlocker.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
<AssemblyName>EC_ClothingUnlocker</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IllusionLibs.EmotionCreators.AllPackages" Version="*" />
<PackageReference Include="IllusionModdingAPI.ECAPI" Version="1.45.1" />
</ItemGroup>
<Import Project="..\ClothingUnlocker.Core\Core.ClothingUnlocker.projitems" Label="Shared" />
Expand Down
1 change: 0 additions & 1 deletion src/ClothingUnlocker.KK/KK.ClothingUnlocker.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
<AssemblyName>KK_ClothingUnlocker</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IllusionLibs.Koikatu.AllPackages" Version="*" />
<PackageReference Include="IllusionModdingAPI.KKAPI" Version="1.45.1" />
</ItemGroup>
<Import Project="..\ClothingUnlocker.Core\Core.ClothingUnlocker.projitems" Label="Shared" />
Expand Down
Loading
Loading