Browse Source

Updated package Newtonsoft.JSON

pull/46/head
Anairkoen Schno 5 years ago
parent
commit
e2f67ec35c
8 changed files with 10 additions and 12 deletions
  1. +1
    -1
      IPA.Loader/IPA.Loader.csproj
  2. +2
    -2
      IPA.Loader/PluginInterfaces/BeatSaber/ModsaberModInfo.cs
  3. +1
    -1
      IPA.Loader/Updating/ModSaber/Updater.cs
  4. +1
    -1
      IPA.Loader/Updating/SelfPlugin.cs
  5. +2
    -4
      MSBuildTasks/MSBuildTasks.csproj
  6. +2
    -2
      MSBuildTasks/packages.config
  7. BIN
      Refs/UnityEngine.CoreModule.dll
  8. +1
    -1
      appveyor.yml

+ 1
- 1
IPA.Loader/IPA.Loader.csproj View File

@ -100,7 +100,7 @@
<Version>0.10.1</Version>
</PackageReference>
<PackageReference Include="Newtonsoft.Json">
<Version>11.0.2</Version>
<Version>12.0.1</Version>
</PackageReference>
<PackageReference Include="SemanticVersioning">
<Version>1.2.0</Version>


+ 2
- 2
IPA.Loader/PluginInterfaces/BeatSaber/ModsaberModInfo.cs View File

@ -43,7 +43,7 @@ namespace IPA
{
var version = new Version(value); // check for valid version
_currentVersion = value;
_semverVersion = version;
SemverVersion = version;
}
else
{
@ -53,6 +53,6 @@ namespace IPA
}
private string _currentVersion;
internal Version _semverVersion = null;
internal Version SemverVersion;
}
}

+ 1
- 1
IPA.Loader/Updating/ModSaber/Updater.cs View File

@ -174,7 +174,7 @@ namespace IPA.Updating.ModSaber
var msinfo = plugin.ModSaberInfo;
depList.Value.Add(new DependencyObject {
Name = msinfo.InternalName,
Version = msinfo._semverVersion,
Version = msinfo.SemverVersion,
Requirement = new Range($">={msinfo.CurrentVersion}"),
LocalPluginMeta = plugin
});


+ 1
- 1
IPA.Loader/Updating/SelfPlugin.cs View File

@ -5,7 +5,7 @@ namespace IPA.Updating
internal class SelfPlugin : IBeatSaberPlugin
{
internal const string IPA_Name = "Beat Saber IPA";
internal const string IPA_Version = "3.11.5";
internal const string IPA_Version = "3.11.5-b2";
public static SelfPlugin Instance { get; set; } = new SelfPlugin();


+ 2
- 4
MSBuildTasks/MSBuildTasks.csproj View File

@ -33,12 +33,10 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.Build.Framework, Version=15.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.Build.Framework.15.8.166\lib\net46\Microsoft.Build.Framework.dll</HintPath>
<Private>True</Private>
<HintPath>..\packages\Microsoft.Build.Framework.15.9.20\lib\net46\Microsoft.Build.Framework.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Build.Utilities.Core, Version=15.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.Build.Utilities.Core.15.8.166\lib\net46\Microsoft.Build.Utilities.Core.dll</HintPath>
<Private>True</Private>
<HintPath>..\packages\Microsoft.Build.Utilities.Core.15.9.20\lib\net46\Microsoft.Build.Utilities.Core.dll</HintPath>
</Reference>
<Reference Include="Microsoft.VisualStudio.Setup.Configuration.Interop, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.VisualStudio.Setup.Configuration.Interop.1.16.30\lib\net35\Microsoft.VisualStudio.Setup.Configuration.Interop.dll</HintPath>


+ 2
- 2
MSBuildTasks/packages.config View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.Build.Framework" version="15.8.166" targetFramework="net46" />
<package id="Microsoft.Build.Utilities.Core" version="15.8.166" targetFramework="net46" />
<package id="Microsoft.Build.Framework" version="15.9.20" targetFramework="net46" />
<package id="Microsoft.Build.Utilities.Core" version="15.9.20" targetFramework="net46" />
<package id="Microsoft.VisualStudio.Setup.Configuration.Interop" version="1.16.30" targetFramework="net46" developmentDependency="true" />
<package id="Mono.Cecil" version="0.10.1" targetFramework="net46" />
<package id="System.Collections.Immutable" version="1.5.0" targetFramework="net46" />


BIN
Refs/UnityEngine.CoreModule.dll View File


+ 1
- 1
appveyor.yml View File

@ -1,6 +1,6 @@
version: 'BSIPA-{branch}-{build}'
environment:
bsipa_version: '3.11.5'
bsipa_version: '3.11.5-b2'
pull_requests:
do_not_increment_build_number: true
install:


Loading…
Cancel
Save