Skip to content

Commit

Permalink
Update for game version 2.3.22
Browse files Browse the repository at this point in the history
  • Loading branch information
darkautism committed Aug 23, 2023
1 parent ef06912 commit b01e005
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 14 deletions.
4 changes: 2 additions & 2 deletions LOLocalization.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using BepInEx;
using BepInEx.Configuration;
using BepInEx.IL2CPP;
using BepInEx.Logging;
using CsvHelper;
using CsvHelper.Configuration;
Expand All @@ -10,8 +9,9 @@
using System.Globalization;
using System.IO;
using System.Linq;
using UnhollowerBaseLib;
using UnityEngine;
using BepInEx.Unity.IL2CPP;
using Il2CppInterop.Runtime.InteropTypes.Arrays;

namespace LOLocalization
{
Expand Down
24 changes: 14 additions & 10 deletions LOLocalization.csproj
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<AssemblyName>LOLocalization</AssemblyName>
<Description>LastOrigin Localization Changer</Description>
<Version>1.2.3</Version>
<Version>1.3.0</Version>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>latest</LangVersion>
<RestoreAdditionalProjectSources>
https://api.nuget.org/v3/index.json;
https://nuget.bepinex.dev/v3/index.json
</RestoreAdditionalProjectSources>
https://api.nuget.org/v3/index.json;
https://nuget.bepinex.dev/v3/index.json;
https://nuget.samboy.dev/v3/index.json
</RestoreAdditionalProjectSources>
<RootNamespace>LOLocalization</RootNamespace>
<Copyright>Kautism</Copyright>
<PackageProjectUrl>https://github.com/darkautism/LOLocalizationTC</PackageProjectUrl>
Expand All @@ -19,17 +20,20 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="BepInEx.IL2CPP" Version="6.0.0-*" IncludeAssets="compile" />
<PackageReference Include="BepInEx.PluginInfoProps" Version="2.*" IncludeAssets="build" />
<PackageReference Include="LastOrigin.GameLibs" Version="*-*" IncludeAssets="build" />
<PackageReference Include="CsvHelper" Version="28.0.1" GeneratePathProperty="true" />
<PackageReference Include="BepInEx.Unity.IL2CPP" Version="6.0.0-be.*" IncludeAssets="compile" />
<PackageReference Include="BepInEx.PluginInfoProps" Version="2.*" />
<PackageReference Include="CsvHelper" Version="*" GeneratePathProperty="true" />
<PackageReference Include="LastOrigin.GameLibs" Version="2.3.22" />
<Reference Include="LastOrigin">
<HintPath>lib\Assembly-CSharp.dll</HintPath>
</Reference>
</ItemGroup>

<ItemGroup>
<None Update="Localization\fonts">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="$(PkgCsvHelper)\lib\netstandard2.1\CsvHelper.dll" CopyToOutputDirectory="PreserveNewest" />
<None Include="$(PkgCsvHelper)\lib\net6.0\CsvHelper.dll" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>

<Target Name="PostBuild" AfterTargets="PostBuildEvent">
Expand Down
4 changes: 2 additions & 2 deletions LOLocalization.sln
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.32802.440
# Visual Studio Version 17
VisualStudioVersion = 17.5.33530.505
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LOLocalization", "LOLocalization.csproj", "{14E9583A-D3B2-4AA2-AFBF-3E97B2ED6C69}"
EndProject
Expand Down

0 comments on commit b01e005

Please sign in to comment.