Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modularize ScubaDiver API #23

Merged
merged 13 commits into from
Nov 6, 2024
3 changes: 2 additions & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@
Version="1.0.39" />
<!-- MTGOSDK/lib/ILLink -->
<PackageVersion Include="Microsoft.NET.ILLink.Tasks"
Version="8.0.0" />
Version="8.0.0"
Condition="'$(UseILLinkTrim)' == 'true'" />
<!-- MTGOSDK/lib/ILRepack -->
<PackageVersion Include="ILRepack.Lib.MSBuild.Task"
Version="2.0.34.1" />
Expand Down
6 changes: 1 addition & 5 deletions MTGOSDK/lib/ScubaDiver/ScubaDiver.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,9 @@
<ILRepackOutput>$(SolutionDir)dist\$(Configuration)\$(ILRepackTarget).dll</ILRepackOutput>
</PropertyGroup>

<!-- Enables debug logging from the MTGO client to a separate console -->
<!-- <PropertyGroup>
<DefineConstants>$(DefineConstants);ENABLE_DEBUG_CONSOLE</DefineConstants>
</PropertyGroup> -->

<ItemGroup>
<PackageReference Include="Microsoft.Diagnostics.Runtime" />
<PackageReference Include="Newtonsoft.Json" />
<ProjectReference Include="$(SolutionDir)\MTGOSDK\MTGOSDK.csproj" />
<ProjectReference Include="$(SolutionDir)\MTGOSDK.Win32\MTGOSDK.Win32.csproj" />
</ItemGroup>
Expand Down
12 changes: 6 additions & 6 deletions MTGOSDK/lib/ScubaDiver/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,12 @@
"Microsoft.NETCore.Platforms": "1.1.0"
}
},
"Newtonsoft.Json": {
"type": "Direct",
"requested": "[13.0.3, )",
"resolved": "13.0.3",
"contentHash": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ=="
},
"Dynamitey": {
"type": "Transitive",
"resolved": "3.0.3",
Expand Down Expand Up @@ -309,12 +315,6 @@
"System.Security.AccessControl": "5.0.0",
"System.Security.Principal.Windows": "5.0.0"
}
},
"Newtonsoft.Json": {
"type": "CentralTransitive",
"requested": "[13.0.3, )",
"resolved": "13.0.3",
"contentHash": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ=="
}
}
}
Expand Down
Loading