Skip to content

Commit

Permalink
Merge pull request #35 from denpadokei/fix-1.39.0
Browse files Browse the repository at this point in the history
Fix 1.39.0
  • Loading branch information
denpadokei authored Nov 18, 2024
2 parents 354726b + 990748b commit 5f93379
Show file tree
Hide file tree
Showing 7 changed files with 37 additions and 374 deletions.
357 changes: 0 additions & 357 deletions SyncSaber/BuildTargets.targets

This file was deleted.

8 changes: 8 additions & 0 deletions SyncSaber/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- This file contains project properties used by the build. -->
<Project>
<PropertyGroup>
<ImportBSMTTargets>True</ImportBSMTTargets>
<BSMTProjectType>BSIPA</BSMTProjectType>
</PropertyGroup>
</Project>
4 changes: 2 additions & 2 deletions SyncSaber/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("7.0.0")]
[assembly: AssemblyFileVersion("7.0.0")]
[assembly: AssemblyVersion("9.0.0")]
[assembly: AssemblyFileVersion("9.0.0")]
2 changes: 1 addition & 1 deletion SyncSaber/SimpleJSON/SimpleJSON.cs
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ private static JSONNode ParseElement(string token, bool quoted)

public static JSONNode Parse(string aJSON)
{
var stack = new Stack<JSONNode>();
var stack = new System.Collections.Generic.Stack<JSONNode>();
JSONNode ctx = null;
var i = 0;
var Token = new StringBuilder();
Expand Down
Loading

0 comments on commit 5f93379

Please sign in to comment.