oneRain 2021-04-07 18:11:04 +08:00
parent e0bdffc7f0
commit fab388fab4
16 changed files with 138 additions and 28 deletions

View File

@ -12,7 +12,9 @@
<Folder Include="Task\" />
<Folder Include="Exception\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Libs\Newtonsoft.Json\LC.Newtonsoft.Json.csproj" />
</ItemGroup>
</Project>

View File

@ -23,7 +23,7 @@
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<!-- Include PDB in the built .nupkg -->
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<ReleaseVersion>0.7.1</ReleaseVersion>
<ReleaseVersion>0.7.2</ReleaseVersion>
<PackageId>LC.Google.Protobuf</PackageId>
</PropertyGroup>

View File

@ -1,6 +1,5 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<LibraryFrameworks>netstandard2.0</LibraryFrameworks>
<UnityBuild>AOT</UnityBuild>
<TargetFrameworks Condition="'$(LibraryFrameworks)'==''">netstandard2.0;net45;portable-net45+win8+wpa81+wp8</TargetFrameworks>
<TargetFrameworks Condition="'$(LibraryFrameworks)'!=''">$(LibraryFrameworks)</TargetFrameworks>
@ -35,7 +34,7 @@
<!-- including PDB files in NuGet for source link because symbolsource.org does not support portable PDBs -->
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<ReleaseVersion>0.7.1</ReleaseVersion>
<ReleaseVersion>0.7.2</ReleaseVersion>
</PropertyGroup>
<ItemGroup>
<None Remove="**\*.orig" />

View File

@ -30,7 +30,7 @@
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<CodeAnalysisRuleset>Newtonsoft.Json.ruleset</CodeAnalysisRuleset>
<ReleaseVersion>0.7.1</ReleaseVersion>
<ReleaseVersion>0.7.2</ReleaseVersion>
</PropertyGroup>
<ItemGroup>
<None Remove="**\*.orig" />

View File

@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<ReleaseVersion>0.7.2</ReleaseVersion>
<AssemblyName>LiveQuery.Standard</AssemblyName>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\LiveQuery\LiveQuery.csproj" />
<ProjectReference Include="..\..\Realtime\Realtime.Standard\Realtime.Standard.csproj" />
</ItemGroup>
</Project>

View File

@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<ReleaseVersion>0.7.2</ReleaseVersion>
<AssemblyName>Storage.Unity</AssemblyName>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\LiveQuery.AOT\LiveQuery.AOT.csproj" />
<ProjectReference Include="..\..\Storage\Storage.Unity\Storage.Unity.csproj" />
</ItemGroup>
</Project>

View File

@ -2,7 +2,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<ReleaseVersion>0.7.1</ReleaseVersion>
<ReleaseVersion>0.7.2</ReleaseVersion>
<AssemblyName>Realtime</AssemblyName>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>

View File

@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<ReleaseVersion>0.7.2</ReleaseVersion>
<AssemblyName>Realtime.Standard</AssemblyName>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Realtime\Realtime.csproj" />
<ProjectReference Include="..\..\Storage\Storage.Standard\Storage.Standard.csproj" />
</ItemGroup>
</Project>

View File

@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<ReleaseVersion>0.7.2</ReleaseVersion>
<AssemblyName>Realtime.Unity</AssemblyName>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Realtime.AOT\Realtime.AOT.csproj" />
<ProjectReference Include="..\..\Storage\Storage.Unity\Storage.Unity.csproj" />
</ItemGroup>
</Project>

View File

@ -7,6 +7,6 @@
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\LiveQuery\LiveQuery\LiveQuery.csproj" />
<ProjectReference Include="..\..\LiveQuery\LiveQuery.Standard\LiveQuery.Standard.csproj" />
</ItemGroup>
</Project>

View File

@ -7,6 +7,6 @@
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\Realtime\Realtime\Realtime.csproj" />
<ProjectReference Include="..\..\Realtime\Realtime.Standard\Realtime.Standard.csproj" />
</ItemGroup>
</Project>

View File

@ -2,7 +2,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<ReleaseVersion>0.7.1</ReleaseVersion>
<ReleaseVersion>0.7.2</ReleaseVersion>
<AssemblyName>Storage</AssemblyName>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>
@ -41,8 +41,8 @@
<Compile Include="..\Storage\LCStatus.cs">
<Link>Storage\LCStatus.cs</Link>
</Compile>
<Compile Include="..\Storage\LCApplication.cs">
<Link>Storage\LCApplication.cs</Link>
<Compile Include="..\Storage\LCInternalApplication.cs">
<Link>Storage\LCInternalApplication.cs</Link>
</Compile>
<Compile Include="..\Storage\LCUser.cs">
<Link>Storage\LCUser.cs</Link>
@ -158,6 +158,12 @@
<Compile Include="..\Storage\Internal\Query\LCCompositionalCondition.cs">
<Link>Storage\Internal\Query\LCCompositionalCondition.cs</Link>
</Compile>
<Compile Include="..\Storage\Internal\Storage\StorageController.cs">
<Link>Storage\Internal\Storage\StorageController.cs</Link>
</Compile>
<Compile Include="..\Storage\Internal\Storage\IStorage.cs">
<Link>Storage\Internal\Storage\IStorage.cs</Link>
</Compile>
</ItemGroup>
<ItemGroup>
<None Include="..\Storage\Storage.csproj">

BIN
Unity/UnityEngine.dll Normal file

Binary file not shown.

View File

@ -3,4 +3,8 @@
<assembly fullname="Storage" preserve="all"/>
<assembly fullname="Realtime" preserve="all"/>
<assembly fullname="LiveQuery" preserve="all"/>
<assembly fullname="LC.Google.Protobuf" preserve="all"/>
<assembly fullname="LC.Newtonsoft.Json" preserve="all"/>
<assembly fullname="Realtime.Unity" preserve="all"/>
<assembly fullname="Storage.Unity" preserve="all"/>
</linker>

View File

@ -43,11 +43,23 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Storage.AOT", "Storage\Stor
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Realtime.AOT", "Realtime\Realtime.AOT\Realtime.AOT.csproj", "{C68C9392-5100-4614-B238-103905C12566}"
EndProject
Project("{9344BDBB-3E7F-41FC-A0DD-8665D75EE146}") = "LC.Google.Protobuf", "Libs\Google.Protobuf\LC.Google.Protobuf.csproj", "{7F40B1C2-D8AF-4678-8F9B-18682C58D12A}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Storage.Unity", "Storage\Storage.Unity\Storage.Unity.csproj", "{BEBBDE63-D215-4790-BA98-FC612EFC383C}"
EndProject
Project("{9344BDBB-3E7F-41FC-A0DD-8665D75EE146}") = "LC.Newtonsoft.Json", "Libs\Newtonsoft.Json\LC.Newtonsoft.Json.csproj", "{5D01C4BB-F44D-4BD4-96BC-078616637CCE}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Storage.Standard", "Storage\Storage.Standard\Storage.Standard.csproj", "{3C73FBA3-83BC-49D9-982D-93057978F203}"
EndProject
Project("{9344BDBB-3E7F-41FC-A0DD-8665D75EE146}") = "LC.Newtonsoft.Json.AOT", "Libs\Newtonsoft.Json.AOT\LC.Newtonsoft.Json.AOT.csproj", "{A60FA5E1-673B-4269-B8D8-BEE0C653B8CA}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LC.Google.Protobuf", "Libs\Google.Protobuf\LC.Google.Protobuf.csproj", "{3D05DEDF-A256-4D3F-B5AE-FB643B8F82F7}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LC.Newtonsoft.Json", "Libs\Newtonsoft.Json\LC.Newtonsoft.Json.csproj", "{577FD4B4-FE9C-4FF8-9D3D-C42F22C3A9EF}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LC.Newtonsoft.Json.AOT", "Libs\Newtonsoft.Json.AOT\LC.Newtonsoft.Json.AOT.csproj", "{48FB2373-D0E5-45CA-A227-280DEAE4486F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Realtime.Unity", "Realtime\Realtime.Unity\Realtime.Unity.csproj", "{5BC77445-B0C9-4331-99EF-A623195AD4E5}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Realtime.Standard", "Realtime\Realtime.Standard\Realtime.Standard.csproj", "{E7553E94-6424-4899-B9B7-5DC0ECD95C51}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LiveQuery.Standard", "LiveQuery\LiveQuery.Standard\LiveQuery.Standard.csproj", "{0C0AE72C-1086-42CC-A415-40C001219B5F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LiveQuery.Unity", "LiveQuery\LiveQuery.Unity\LiveQuery.Unity.csproj", "{A6CD4EB4-1696-4A70-BC9D-73DF1291250C}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@ -111,18 +123,42 @@ Global
{C68C9392-5100-4614-B238-103905C12566}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C68C9392-5100-4614-B238-103905C12566}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C68C9392-5100-4614-B238-103905C12566}.Release|Any CPU.Build.0 = Release|Any CPU
{7F40B1C2-D8AF-4678-8F9B-18682C58D12A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7F40B1C2-D8AF-4678-8F9B-18682C58D12A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7F40B1C2-D8AF-4678-8F9B-18682C58D12A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7F40B1C2-D8AF-4678-8F9B-18682C58D12A}.Release|Any CPU.Build.0 = Release|Any CPU
{5D01C4BB-F44D-4BD4-96BC-078616637CCE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5D01C4BB-F44D-4BD4-96BC-078616637CCE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5D01C4BB-F44D-4BD4-96BC-078616637CCE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5D01C4BB-F44D-4BD4-96BC-078616637CCE}.Release|Any CPU.Build.0 = Release|Any CPU
{A60FA5E1-673B-4269-B8D8-BEE0C653B8CA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A60FA5E1-673B-4269-B8D8-BEE0C653B8CA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A60FA5E1-673B-4269-B8D8-BEE0C653B8CA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A60FA5E1-673B-4269-B8D8-BEE0C653B8CA}.Release|Any CPU.Build.0 = Release|Any CPU
{BEBBDE63-D215-4790-BA98-FC612EFC383C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BEBBDE63-D215-4790-BA98-FC612EFC383C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BEBBDE63-D215-4790-BA98-FC612EFC383C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BEBBDE63-D215-4790-BA98-FC612EFC383C}.Release|Any CPU.Build.0 = Release|Any CPU
{3C73FBA3-83BC-49D9-982D-93057978F203}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3C73FBA3-83BC-49D9-982D-93057978F203}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3C73FBA3-83BC-49D9-982D-93057978F203}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3C73FBA3-83BC-49D9-982D-93057978F203}.Release|Any CPU.Build.0 = Release|Any CPU
{3D05DEDF-A256-4D3F-B5AE-FB643B8F82F7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3D05DEDF-A256-4D3F-B5AE-FB643B8F82F7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3D05DEDF-A256-4D3F-B5AE-FB643B8F82F7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3D05DEDF-A256-4D3F-B5AE-FB643B8F82F7}.Release|Any CPU.Build.0 = Release|Any CPU
{577FD4B4-FE9C-4FF8-9D3D-C42F22C3A9EF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{577FD4B4-FE9C-4FF8-9D3D-C42F22C3A9EF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{577FD4B4-FE9C-4FF8-9D3D-C42F22C3A9EF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{577FD4B4-FE9C-4FF8-9D3D-C42F22C3A9EF}.Release|Any CPU.Build.0 = Release|Any CPU
{48FB2373-D0E5-45CA-A227-280DEAE4486F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{48FB2373-D0E5-45CA-A227-280DEAE4486F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{48FB2373-D0E5-45CA-A227-280DEAE4486F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{48FB2373-D0E5-45CA-A227-280DEAE4486F}.Release|Any CPU.Build.0 = Release|Any CPU
{5BC77445-B0C9-4331-99EF-A623195AD4E5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5BC77445-B0C9-4331-99EF-A623195AD4E5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5BC77445-B0C9-4331-99EF-A623195AD4E5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5BC77445-B0C9-4331-99EF-A623195AD4E5}.Release|Any CPU.Build.0 = Release|Any CPU
{E7553E94-6424-4899-B9B7-5DC0ECD95C51}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E7553E94-6424-4899-B9B7-5DC0ECD95C51}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E7553E94-6424-4899-B9B7-5DC0ECD95C51}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E7553E94-6424-4899-B9B7-5DC0ECD95C51}.Release|Any CPU.Build.0 = Release|Any CPU
{0C0AE72C-1086-42CC-A415-40C001219B5F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0C0AE72C-1086-42CC-A415-40C001219B5F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0C0AE72C-1086-42CC-A415-40C001219B5F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0C0AE72C-1086-42CC-A415-40C001219B5F}.Release|Any CPU.Build.0 = Release|Any CPU
{A6CD4EB4-1696-4A70-BC9D-73DF1291250C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A6CD4EB4-1696-4A70-BC9D-73DF1291250C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A6CD4EB4-1696-4A70-BC9D-73DF1291250C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A6CD4EB4-1696-4A70-BC9D-73DF1291250C}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{4194FE34-327C-42C2-971F-6B07904E20A5} = {076871D0-BE1F-4AF0-B83E-697C71C0C3B3}
@ -139,9 +175,15 @@ Global
{5BE8789B-56C6-444F-87BF-F9447EE1E128} = {A1A24E0F-6901-4A9A-9BB8-4F586BC7EE17}
{6695E495-CAF9-4CDB-9CB8-8CC867771CA1} = {076871D0-BE1F-4AF0-B83E-697C71C0C3B3}
{C68C9392-5100-4614-B238-103905C12566} = {319A9989-3B69-4AD0-9E43-F6D31C1D2A4A}
{7F40B1C2-D8AF-4678-8F9B-18682C58D12A} = {3B53EFFB-6962-4EED-88FD-F9D6E9650A2D}
{5D01C4BB-F44D-4BD4-96BC-078616637CCE} = {3B53EFFB-6962-4EED-88FD-F9D6E9650A2D}
{A60FA5E1-673B-4269-B8D8-BEE0C653B8CA} = {3B53EFFB-6962-4EED-88FD-F9D6E9650A2D}
{BEBBDE63-D215-4790-BA98-FC612EFC383C} = {076871D0-BE1F-4AF0-B83E-697C71C0C3B3}
{3C73FBA3-83BC-49D9-982D-93057978F203} = {076871D0-BE1F-4AF0-B83E-697C71C0C3B3}
{3D05DEDF-A256-4D3F-B5AE-FB643B8F82F7} = {3B53EFFB-6962-4EED-88FD-F9D6E9650A2D}
{577FD4B4-FE9C-4FF8-9D3D-C42F22C3A9EF} = {3B53EFFB-6962-4EED-88FD-F9D6E9650A2D}
{48FB2373-D0E5-45CA-A227-280DEAE4486F} = {3B53EFFB-6962-4EED-88FD-F9D6E9650A2D}
{5BC77445-B0C9-4331-99EF-A623195AD4E5} = {319A9989-3B69-4AD0-9E43-F6D31C1D2A4A}
{E7553E94-6424-4899-B9B7-5DC0ECD95C51} = {319A9989-3B69-4AD0-9E43-F6D31C1D2A4A}
{0C0AE72C-1086-42CC-A415-40C001219B5F} = {A1A24E0F-6901-4A9A-9BB8-4F586BC7EE17}
{A6CD4EB4-1696-4A70-BC9D-73DF1291250C} = {A1A24E0F-6901-4A9A-9BB8-4F586BC7EE17}
EndGlobalSection
GlobalSection(MonoDevelopProperties) = preSolution
version = 0.7.2

View File

@ -9,6 +9,7 @@ pack() {
rsync -avz $path $dir
if [ $copyLink == true ] ; then
cp ./Unity/link.xml $dir
rm $dir/UnityEngine.dll
fi
zip -r $output $dir
rm -r $dir