Updated to 3.9.0

This commit is contained in:
CWX 2024-07-06 22:05:04 +01:00
parent 37cc39c0f8
commit 1a02be7963
5 changed files with 21 additions and 22 deletions

View File

@ -1,11 +1,10 @@
University of Illinois/NCSA Open Source License
Copyright (c) [year] [fullname]. All rights reserved.
Copyright (c) [2024] [CWXDEV]. All rights reserved.
Developed by:
[CWX]
[https://github.com/CWXDEV/CWX-DeSharpener]
[https://hub.sp-tarkov.com/files/file/455-cwx-desharpener/]
[CWX]
[https://github.com/CWXDEV/MegaMod]
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation files

View File

@ -1,42 +1,42 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net472</TargetFramework>
<TargetFramework>net471</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Reference Include="0Harmony">
<HintPath>..\..\..\..\SPT\BepInEx\core\0Harmony.dll</HintPath>
<HintPath>D:\HomeRepos\CWX-MegaMod\shared\0Harmony.dll</HintPath>
</Reference>
<Reference Include="Aki.Reflection">
<HintPath>D:\SPT\EscapeFromTarkov_Data\Managed\Aki.Reflection.dll</HintPath>
<Reference Include="spt-Reflection">
<HintPath>D:\HomeRepos\CWX-MegaMod\shared\spt-Reflection.dll</HintPath>
</Reference>
<Reference Include="Assembly-CSharp">
<HintPath>D:\SPT\EscapeFromTarkov_Data\Managed\Assembly-CSharp.dll</HintPath>
<HintPath>D:\HomeRepos\CWX-MegaMod\shared\Assembly-CSharp.dll</HintPath>
</Reference>
<Reference Include="BepInEx">
<HintPath>D:\SPT\BepInEx\core\BepInEx.dll</HintPath>
<HintPath>D:\HomeRepos\CWX-MegaMod\shared\BepInEx.dll</HintPath>
</Reference>
<Reference Include="Comfort">
<HintPath>D:\SPT\EscapeFromTarkov_Data\Managed\Comfort.dll</HintPath>
<HintPath>D:\HomeRepos\CWX-MegaMod\shared\Comfort.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json">
<HintPath>D:\SPT\EscapeFromTarkov_Data\Managed\Newtonsoft.Json.dll</HintPath>
<HintPath>D:\HomeRepos\CWX-MegaMod\shared\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="Sirenix.Serialization">
<HintPath>..\..\..\..\SPT\EscapeFromTarkov_Data\Managed\Sirenix.Serialization.dll</HintPath>
<HintPath>D:\HomeRepos\CWX-MegaMod\shared\Sirenix.Serialization.dll</HintPath>
</Reference>
<Reference Include="UnityEngine">
<HintPath>D:\SPT\EscapeFromTarkov_Data\Managed\UnityEngine.dll</HintPath>
<HintPath>D:\HomeRepos\CWX-MegaMod\shared\UnityEngine.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.CoreModule">
<HintPath>D:\SPT\EscapeFromTarkov_Data\Managed\UnityEngine.CoreModule.dll</HintPath>
<HintPath>D:\HomeRepos\CWX-MegaMod\shared\UnityEngine.CoreModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UI">
<HintPath>D:\SPT\EscapeFromTarkov_Data\Managed\UnityEngine.UI.dll</HintPath>
<HintPath>D:\HomeRepos\CWX-MegaMod\shared\UnityEngine.UI.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UIModule">
<HintPath>D:\SPT\EscapeFromTarkov_Data\Managed\UnityEngine.UIModule.dll</HintPath>
<HintPath>D:\HomeRepos\CWX-MegaMod\shared\UnityEngine.UIModule.dll</HintPath>
</Reference>
</ItemGroup>

View File

@ -1,5 +1,5 @@
using Aki.Reflection.Patching;
using Aki.Reflection.Utils;
using SPT.Reflection.Patching;
using SPT.Reflection.Utils;
using EFT.UI;
using System.Reflection;
using UnityEngine;

View File

@ -2,7 +2,7 @@
namespace TraderScrolling
{
[BepInPlugin("com.kaeno.TraderScrolling", "Kaeno-TraderScrolling", "1.0.2")]
[BepInPlugin("com.kaeno.TraderScrolling", "Kaeno-TraderScrolling", "1.1.0")]
public class TraderScrolling : BaseUnityPlugin
{
private void Awake()

View File

@ -1,6 +1,6 @@
using System.Reflection;
using Aki.Reflection.Patching;
using Aki.Reflection.Utils;
using SPT.Reflection.Patching;
using SPT.Reflection.Utils;
using EFT.UI;
using HarmonyLib;
using UnityEngine;