Browse Source

Added PDBs to the release build

Incremented version
pull/11/head
Anairkoen Schno 5 years ago
parent
commit
abeddba97d
5 changed files with 10 additions and 8 deletions
  1. +2
    -2
      IPA.Loader/Config/SelfConfig.cs
  2. +2
    -2
      IPA.Loader/Loader/manifest.json
  3. +3
    -1
      IPA/IPA.csproj
  4. +2
    -2
      IPA/Properties/AssemblyInfo.cs
  5. +1
    -1
      appveyor.yml

+ 2
- 2
IPA.Loader/Config/SelfConfig.cs View File

@ -33,8 +33,8 @@ namespace IPA.Config
} }
internal const string IPAName = "Beat Saber IPA"; internal const string IPAName = "Beat Saber IPA";
internal const string IPAVersion = "3.12.5"; // this should be completely outdated soon-ish
internal const string IPAVersion = "3.12.6";
public bool Regenerate = true; public bool Regenerate = true;
public class DebugObject public class DebugObject


+ 2
- 2
IPA.Loader/Loader/manifest.json View File

@ -2,10 +2,10 @@
"$schema": "https://raw.githubusercontent.com/nike4613/ModSaber-MetadataFileSchema/master/Schema.json", "$schema": "https://raw.githubusercontent.com/nike4613/ModSaber-MetadataFileSchema/master/Schema.json",
"author": "DaNike", "author": "DaNike",
"description": "A mod loader specifically for Beat Saber.", "description": "A mod loader specifically for Beat Saber.",
"gameVersion": "0.13.1",
"gameVersion": "0.13.2",
"id": "beatsaber-ipa-reloaded", "id": "beatsaber-ipa-reloaded",
"name": "BSIPA", "name": "BSIPA",
"version": "3.12.5",
"version": "3.12.6",
"features": [ "features": [
"define-feature(print, IPA.Loader.Features.PrintFeature)", "define-feature(print, IPA.Loader.Features.PrintFeature)",
"define-feature(debug, IPA.Loader.Features.DebugFeature)", "define-feature(debug, IPA.Loader.Features.DebugFeature)",


+ 3
- 1
IPA/IPA.csproj View File

@ -82,6 +82,7 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Verbose_Release|AnyCPU'"> <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Verbose_Release|AnyCPU'">
<OutputPath>bin\Verbose_Release\</OutputPath> <OutputPath>bin\Verbose_Release\</OutputPath>
<OtherConfig>Release</OtherConfig> <OtherConfig>Release</OtherConfig>
<ProxyConfig>Verbose_Release</ProxyConfig>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<Reference Include="System" /> <Reference Include="System" />
@ -148,7 +149,8 @@
<Move Condition="Exists('$(OutputPath)IPA\proxy.pdb')" SourceFiles="$(OutputPath)IPA\proxy.pdb" DestinationFiles="$(OutputPath)IPA\winhttp.pdb" /> <Move Condition="Exists('$(OutputPath)IPA\proxy.pdb')" SourceFiles="$(OutputPath)IPA\proxy.pdb" DestinationFiles="$(OutputPath)IPA\winhttp.pdb" />
<ItemGroup> <ItemGroup>
<BadFiles Include="$(OutputPath)*.dll" /> <BadFiles Include="$(OutputPath)*.dll" />
<BadFiles Include="$(OutputPath)**\*.pdb" Condition="'$(Configuration)'=='Release' Or '$(Configuration)'=='Verbose_Release'" />
<BadFiles Include="$(OutputPath)*.pdb" Condition="'$(Configuration)'=='Release' Or '$(Configuration)'=='Verbose_Release'" />
<BadFiles Include="$(OutputPath)IPA\*.pdb" Condition="'$(Configuration)'=='Release' Or '$(Configuration)'=='Verbose_Release'" />
</ItemGroup> </ItemGroup>
<Delete Files="@(BadFiles)" /> <Delete Files="@(BadFiles)" />
<RemoveDir Directories="$(OutputPath)Libraries\" /> <RemoveDir Directories="$(OutputPath)Libraries\" />


+ 2
- 2
IPA/Properties/AssemblyInfo.cs View File

@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("3.12.5")]
[assembly: AssemblyFileVersion("3.12.5")]
[assembly: AssemblyVersion("3.12.6")]
[assembly: AssemblyFileVersion("3.12.6")]

+ 1
- 1
appveyor.yml View File

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


Loading…
Cancel
Save