Skip to content

Commit 92c7e40

Browse files
committed
Moved render strategies to PapyrusAlgorithms
1 parent 7e69829 commit 92c7e40

39 files changed

+32
-0
lines changed

Mcpe.sln

+6
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PapyrusCs.Tests.Core", "Pap
3232
EndProject
3333
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Imazen.WebP-std", "Imazen.WebP-std\Imazen.WebP-std.csproj", "{82CCF552-5A68-4C6A-B3F3-A40550D47990}"
3434
EndProject
35+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PapyrusAlgorithms", "PapyrusAlgorithms\PapyrusAlgorithms.csproj", "{5CF3BA5F-F44B-458A-9BC7-67BD5B734B29}"
36+
EndProject
3537
Global
3638
GlobalSection(SolutionConfigurationPlatforms) = preSolution
3739
Debug|Any CPU = Debug|Any CPU
@@ -62,6 +64,10 @@ Global
6264
{82CCF552-5A68-4C6A-B3F3-A40550D47990}.Debug|Any CPU.Build.0 = Debug|Any CPU
6365
{82CCF552-5A68-4C6A-B3F3-A40550D47990}.Release|Any CPU.ActiveCfg = Release|Any CPU
6466
{82CCF552-5A68-4C6A-B3F3-A40550D47990}.Release|Any CPU.Build.0 = Release|Any CPU
67+
{5CF3BA5F-F44B-458A-9BC7-67BD5B734B29}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
68+
{5CF3BA5F-F44B-458A-9BC7-67BD5B734B29}.Debug|Any CPU.Build.0 = Debug|Any CPU
69+
{5CF3BA5F-F44B-458A-9BC7-67BD5B734B29}.Release|Any CPU.ActiveCfg = Release|Any CPU
70+
{5CF3BA5F-F44B-458A-9BC7-67BD5B734B29}.Release|Any CPU.Build.0 = Release|Any CPU
6571
EndGlobalSection
6672
GlobalSection(SolutionProperties) = preSolution
6773
HideSolutionNode = FALSE
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netcoreapp3.1</TargetFramework>
5+
</PropertyGroup>
6+
7+
<ItemGroup>
8+
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="3.1.3" />
9+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.1.3" />
10+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite.Core" Version="3.1.3" />
11+
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="3.1.3">
12+
<PrivateAssets>all</PrivateAssets>
13+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
14+
</PackageReference>
15+
<PackageReference Include="Microsoft.Extensions.ObjectPool" Version="3.1.3" />
16+
<PackageReference Include="System.Threading.Tasks.Dataflow" Version="4.11.0" />
17+
</ItemGroup>
18+
19+
<ItemGroup>
20+
<ProjectReference Include="..\Maploader\Maploader.csproj" />
21+
</ItemGroup>
22+
23+
</Project>
File renamed without changes.
File renamed without changes.

PapyrusCs/PapyrusCs.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333

3434
<ItemGroup>
3535
<ProjectReference Include="..\Maploader\Maploader.csproj" />
36+
<ProjectReference Include="..\PapyrusAlgorithms\PapyrusAlgorithms.csproj" />
3637
</ItemGroup>
3738

3839
<ItemGroup>

PapyrusCs/Program.cs

+2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,10 @@
1313
using Maploader.World;
1414
using Newtonsoft.Json;
1515
using PapyrusCs.Database;
16+
using PapyrusCs.Migrations;
1617
using PapyrusCs.Strategies;
1718
using PapyrusCs.Strategies.Dataflow;
19+
using Settings = PapyrusCs.Database.Settings;
1820

1921
namespace PapyrusCs
2022
{

0 commit comments

Comments
 (0)