-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added rotational stackoffsets, sorting for contents tab, packable con…
…tainers compatibility Also removed an unnecessary label patch that was reported to contribute a minor performance hit with large quantities of things in view
- Loading branch information
Showing
19 changed files
with
159 additions
and
123 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,54 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project> | ||
<PropertyGroup> | ||
<AssemblyName>AdaptiveStorageFramework</AssemblyName> | ||
<RootNamespace>AdaptiveStorage</RootNamespace> | ||
<Authors>Bradson</Authors> | ||
<Copyright>Copyright (c) 2023 Bradson</Copyright> | ||
<Version>1.1.1</Version> | ||
<TargetFramework>net48</TargetFramework> | ||
<LangVersion>preview</LangVersion> | ||
<Nullable>enable</Nullable> | ||
<PlatformTarget>AnyCPU</PlatformTarget> | ||
<Optimize>true</Optimize> | ||
<EnableNETAnalyzers>True</EnableNETAnalyzers> | ||
<AnalysisLevel>preview-recommended</AnalysisLevel> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>portable</DebugType> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>5</WarningLevel> | ||
<NoWarn>CA1000;CA1051;CA1305;CA1310;CA1707;CA1708;CA1711;CA1725;CA1852;CA2201</NoWarn> | ||
<DefaultItemExcludes>$(DefaultItemExcludes);obj/**/*.*</DefaultItemExcludes> | ||
<BaseIntermediateOutputPath>obj\$(MSBuildProjectName)\$(Configuration)\</BaseIntermediateOutputPath> | ||
<MSBuildProjectExtensionsPath>obj\$(MSBuildProjectName)\$(Configuration)\</MSBuildProjectExtensionsPath> | ||
<PublicizerClearCacheOnClean>true</PublicizerClearCacheOnClean> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="PolySharp" Version="1.*" /> | ||
<PackageReference Include="Krafs.Publicizer" Version="2.*" /> | ||
<Publicize Include="Assembly-CSharp:RimWorld.Building_Storage.cachedOccupiedCells" /> | ||
<Publicize Include="Assembly-CSharp:RimWorld.InspectPaneUtility.IsOpen" /> | ||
<Publicize Include="Assembly-CSharp:RimWorld.ITab_ContentsBase.thingsToSelect" /> | ||
<Publicize Include="Assembly-CSharp:RimWorld.MinifiedThing.get_CrateFrontGraphic" /> | ||
<Publicize Include="Assembly-CSharp:RimWorld.OverlayDrawer.RenderForbiddenOverlay" /> | ||
<Publicize Include="Assembly-CSharp:RimWorld.Selector.SelectableObjectsUnderMouse" /> | ||
<Publicize Include="Assembly-CSharp:RimWorld.Planet.CaravanThingsTabUtility.DrawMass" /> | ||
<Publicize Include="Assembly-CSharp:Verse.DefDatabase`1.SetIndices" /> | ||
<Publicize Include="Assembly-CSharp:Verse.Graphic.AngleFromRot" /> | ||
<Publicize Include="Assembly-CSharp:Verse.Graphic_Shadow.GlobalShadowPosOffsetX" /> | ||
<Publicize Include="Assembly-CSharp:Verse.Graphic_Shadow.GlobalShadowPosOffsetZ" /> | ||
<Publicize Include="Assembly-CSharp:Verse.Graphic_Shadow.shadowInfo" /> | ||
<Publicize Include="Assembly-CSharp:Verse.GraphicData.Init" /> | ||
<Publicize Include="Assembly-CSharp:Verse.Listing.curY" /> | ||
<Publicize Include="Assembly-CSharp:Verse.MapDrawer.sections" /> | ||
<Publicize Include="Assembly-CSharp:Verse.SectionLayer_ThingsGeneral.TakePrintFrom" /> | ||
<Publicize Include="Assembly-CSharp:Verse.Text.tmpTextGUIContent" /> | ||
<Publicize Include="Assembly-CSharp:Verse.ThingFilter.categories" /> | ||
<Publicize Include="Assembly-CSharp:Verse.ThingWithComps.Comps_PostDraw" /> | ||
<Publicize Include="Assembly-CSharp:Verse.WidgetRow.curY" /> | ||
<Publicize Include="Assembly-CSharp:Verse.WidgetRow.IncrementYIfWillExceedMaxWidth" /> | ||
<Publicize Include="Assembly-CSharp:Verse.WidgetRow.IncrementPosition" /> | ||
<Publicize Include="Assembly-CSharp:Verse.WidgetRow.LeftX" /> | ||
<Publicize Include="UnityEngine.CoreModule:UnityEngine.Graphics.Internal_DrawMesh_Injected" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.