Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
fix: add two project.
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchiDog1998 committed Mar 17, 2023
1 parent 9c2aef2 commit 86f9c68
Show file tree
Hide file tree
Showing 4 changed files with 68 additions and 1 deletion.
62 changes: 62 additions & 0 deletions RotationSolver.Extra/RotationSolver.Extra.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<PlatformTarget>x64</PlatformTarget>
<DalamudLibPath>$(AppData)\XIVLauncher\addon\Hooks\dev\</DalamudLibPath>
<Platforms>AnyCPU</Platforms>
<Authors>ArchiTed</Authors>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\RotationSolver.Basic\RotationSolver.Basic.csproj" />

<Reference Include="Dalamud">
<HintPath>$(DalamudLibPath)Dalamud.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="ImGui.NET">
<HintPath>$(DalamudLibPath)ImGui.NET.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="ImGuiScene">
<HintPath>$(DalamudLibPath)ImGuiScene.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Lumina">
<HintPath>$(DalamudLibPath)Lumina.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Lumina.Excel">
<HintPath>$(DalamudLibPath)Lumina.Excel.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="FFXIVClientStructs">
<HintPath>$(DalamudLibPath)FFXIVClientStructs.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Newtonsoft.Json">
<HintPath>$(DalamudLibPath)Newtonsoft.Json.dll</HintPath>
<Private>False</Private>
</Reference>

<Using Include="Dalamud.Game.ClientState.JobGauge.Enums" />
<Using Include="RotationSolver.Actions.BaseAction" />
<Using Include="RotationSolver.Basic" />
<Using Include="RotationSolver.Basic.Actions" />
<Using Include="RotationSolver.Basic.Attributes" />
<Using Include="RotationSolver.Basic.Configuration.RotationConfig" />
<Using Include="RotationSolver.Basic.Data" />
<Using Include="RotationSolver.Basic.Helpers" />
<Using Include="RotationSolver.Basic.Rotations.Basic" />
</ItemGroup>

<ItemGroup>
<Folder Include="Healer\" />
<Folder Include="Magical\" />
<Folder Include="Melee\" />
<Folder Include="Tank\" />
<Folder Include="Ranged\" />
</ItemGroup>
</Project>
1 change: 0 additions & 1 deletion RotationSolver.Old/RotationSolver.Old.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
<DalamudLibPath>$(AppData)\XIVLauncher\addon\Hooks\dev\</DalamudLibPath>
<Platforms>AnyCPU</Platforms>
<Authors>ArchiTed</Authors>

</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\RotationSolver.Basic\RotationSolver.Basic.csproj" />
Expand Down
6 changes: 6 additions & 0 deletions RotationSolver.sln
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RotationSolver", "RotationS
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RotationSolver.Old", "RotationSolver.Old\RotationSolver.Old.csproj", "{0F07FDE9-7189-43E9-8651-F1963D829DDA}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RotationSolver.Extra", "RotationSolver.Extra\RotationSolver.Extra.csproj", "{09783AAB-C25E-4DF7-9693-0D47DC6108F2}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -38,6 +40,10 @@ Global
{0F07FDE9-7189-43E9-8651-F1963D829DDA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0F07FDE9-7189-43E9-8651-F1963D829DDA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0F07FDE9-7189-43E9-8651-F1963D829DDA}.Release|Any CPU.Build.0 = Release|Any CPU
{09783AAB-C25E-4DF7-9693-0D47DC6108F2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{09783AAB-C25E-4DF7-9693-0D47DC6108F2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{09783AAB-C25E-4DF7-9693-0D47DC6108F2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{09783AAB-C25E-4DF7-9693-0D47DC6108F2}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down

0 comments on commit 86f9c68

Please sign in to comment.