Initial mod load

master
D4VID 7 months ago
commit 6ac7cef40b

7
.gitignore vendored

@ -0,0 +1,7 @@
bin/
obj/
/packages/
riderModule.iml
/_ReSharper.Caches/
.idea/
LogicWorld/

@ -0,0 +1,16 @@

Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CriticalPathAnalyzer", "CriticalPathAnalyzer\CriticalPathAnalyzer.csproj", "{0328A941-5B63-44F5-B7BF-BF036CC9A5FE}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{0328A941-5B63-44F5-B7BF-BF036CC9A5FE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0328A941-5B63-44F5-B7BF-BF036CC9A5FE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0328A941-5B63-44F5-B7BF-BF036CC9A5FE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0328A941-5B63-44F5-B7BF-BF036CC9A5FE}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal

@ -0,0 +1,31 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
<RootNamespace/>
</PropertyGroup>
<ItemGroup>
<Reference Include="FancyInput">
<HintPath>..\LogicWorld\Logic_World_Data\Managed\FancyInput.dll</HintPath>
</Reference>
<Reference Include="LogicAPI">
<HintPath>..\LogicWorld\Logic_World_Data\Managed\LogicAPI.dll</HintPath>
</Reference>
<Reference Include="LogicAPI.Client">
<HintPath>..\LogicWorld\Logic_World_Data\Managed\LogicAPI.Client.dll</HintPath>
</Reference>
<Reference Include="LogicLog">
<HintPath>..\LogicWorld\Logic_World_Data\Managed\LogicLog.dll</HintPath>
</Reference>
<Reference Include="LogicWorld.Modding">
<HintPath>..\LogicWorld\Logic_World_Data\Managed\LogicWorld.Modding.dll</HintPath>
</Reference>
<Reference Include="LogicWorld.SharedCode">
<HintPath>..\LogicWorld\Logic_World_Data\Managed\LogicWorld.SharedCode.dll</HintPath>
</Reference>
</ItemGroup>
</Project>

@ -0,0 +1,2 @@
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=criticalpathanalyzer_005Csrc/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary>

@ -0,0 +1,7 @@
ID: CriticalPathAnalyzer
Name: CriticalPathAnalyzer
Author: D4VID
Version: 0.0.1
Priority: 0
Dependencies:
- HarmonyForLogicWorld

@ -0,0 +1,13 @@

using CriticalPathAnalyzer.Client.Keybindings;
using FancyInput;
using LogicAPI.Client;
namespace CriticalPathAnalyzer.Client {
public class CriticalPathAnalyzerClient : ClientMod {
protected override void Initialize() {
Logger.Info("CriticalPathAnalyzer mod loaded");
}
}
}

@ -0,0 +1,2 @@
# Critical Path Analyzer mod
Loading…
Cancel
Save