This repository has been archived by the owner on Aug 28, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6052836
commit cd1a941
Showing
4 changed files
with
159 additions
and
0 deletions.
There are no files selected for viewing
63 changes: 63 additions & 0 deletions
63
RotationSolver.Templates/RotationSolver.ItemTemplates/RotationSolver.ItemTemplates.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
<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> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="RotationSolver.Basic" Version="0.9.1" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<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> |
2 changes: 2 additions & 0 deletions
2
RotationSolver.Templates/RotationSolver.ProjectTemplate/AssemblyInfo.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
//Put your hash into this one if you want someone say hello to you when they are using RotationSolver in Duty with you. | ||
[assembly: AuthorHash("$Your Hash in Debug Tab$")] |
63 changes: 63 additions & 0 deletions
63
...tionSolver.Templates/RotationSolver.ProjectTemplate/RotationSolver.ProjectTemplate.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
<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> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="RotationSolver.Basic" Version="0.9.1" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio Version 17 | ||
VisualStudioVersion = 17.5.33424.131 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RotationSolver.ItemTemplates", "RotationSolver.ItemTemplates\RotationSolver.ItemTemplates.csproj", "{68DBF6A5-3D86-458B-856F-DBBC170D673C}" | ||
EndProject | ||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RotationSolver.ProjectTemplate", "RotationSolver.ProjectTemplate\RotationSolver.ProjectTemplate.csproj", "{C257746E-963C-4327-BCD1-91743BAEBB13}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{68DBF6A5-3D86-458B-856F-DBBC170D673C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{68DBF6A5-3D86-458B-856F-DBBC170D673C}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{68DBF6A5-3D86-458B-856F-DBBC170D673C}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{68DBF6A5-3D86-458B-856F-DBBC170D673C}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{C257746E-963C-4327-BCD1-91743BAEBB13}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{C257746E-963C-4327-BCD1-91743BAEBB13}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{C257746E-963C-4327-BCD1-91743BAEBB13}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{C257746E-963C-4327-BCD1-91743BAEBB13}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(ExtensibilityGlobals) = postSolution | ||
SolutionGuid = {899C4EA1-9CD0-4C46-87DE-0B40BA1F6DF1} | ||
EndGlobalSection | ||
EndGlobal |