forked from opensim/opensim
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Flattened the script engine project hierarchy, there are now 2 dlls. …
…A Shared implementation and YEngine. In the future we can add something like Phlox in as its own project and reuse the bits in Shared
Showing
79 changed files
with
89 additions
and
302 deletions.
There are no files selected for viewing
43 changes: 0 additions & 43 deletions
43
...gion/ScriptEngine/Shared/Api/Implementation/OpenSim.Region.ScriptEngine.Shared.Api.csproj
This file was deleted.
Oops, something went wrong.
31 changes: 0 additions & 31 deletions
31
...ion/ScriptEngine/Shared/Api/Runtime/OpenSim.Region.ScriptEngine.Shared.Api.Runtime.csproj
This file was deleted.
Oops, something went wrong.
35 changes: 0 additions & 35 deletions
35
.../Region/ScriptEngine/Shared/CodeTools/OpenSim.Region.ScriptEngine.Shared.CodeTools.csproj
This file was deleted.
Oops, something went wrong.
35 changes: 0 additions & 35 deletions
35
...im/Region/ScriptEngine/Shared/Instance/OpenSim.Region.ScriptEngine.Shared.Instance.csproj
This file was deleted.
Oops, something went wrong.
82 changes: 0 additions & 82 deletions
82
OpenSim/Region/ScriptEngine/Shared/OpenSim.Region.ScriptEngine.Shared.csproj
This file was deleted.
Oops, something went wrong.
41 changes: 0 additions & 41 deletions
41
OpenSim/Region/ScriptEngine/YEngine/OpenSim.Region.ScriptEngine.YEngine.csproj
This file was deleted.
Oops, something went wrong.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
38 changes: 38 additions & 0 deletions
38
Source/OpenSim.Region.ScriptEngine.Shared/OpenSim.Region.ScriptEngine.Shared.csproj
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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<AssemblyTitle>OpenSim.Region.ScriptEngine.Shared</AssemblyTitle> | ||
<Company>http://opensimulator.org</Company> | ||
<Product>OpenSim</Product> | ||
<Copyright>OpenSimulator developers</Copyright> | ||
<AllowUnsafeBlocks>True</AllowUnsafeBlocks> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="OpenMetaverse"> | ||
<HintPath>..\..\bin\OpenMetaverse.dll</HintPath> | ||
<Private>False</Private> | ||
</Reference> | ||
<Reference Include="OpenMetaverseTypes"> | ||
<HintPath>..\..\bin\OpenMetaverseTypes.dll</HintPath> | ||
<Private>False</Private> | ||
</Reference> | ||
<Reference Include="OpenMetaverse.StructredData"> | ||
<HintPath>..\..\bin\OpenMetaverse.StructuredData.dll</HintPath> | ||
<Private>False</Private> | ||
</Reference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\..\OpenSim\Region\Application\OpenSim.csproj" /> | ||
<ProjectReference Include="..\..\Source\OpenSim.Framework\OpenSim.Framework.csproj" /> | ||
<ProjectReference Include="..\..\\Source\OpenSim.Framework.Console\OpenSim.Framework.Console.csproj" /> | ||
<ProjectReference Include="..\..\OpenSim\Region\CoreModules\OpenSim.Region.CoreModules.csproj" /> | ||
<ProjectReference Include="..\..\OpenSim\Region\Framework\OpenSim.Region.Framework.csproj" /> | ||
<ProjectReference Include="..\..\OpenSim\Services\Interfaces\OpenSim.Services.Interfaces.csproj" /> | ||
<ProjectReference Include="..\..\ThirdParty\SmartThreadPool\SmartThreadPool.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Autofac" Version="7.1.0" /> | ||
<PackageReference Include="log4net" Version="2.0.15" /> | ||
<PackageReference Include="RawScape.Nini" Version="1.0.0" /> | ||
</ItemGroup> | ||
</Project> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
39 changes: 39 additions & 0 deletions
39
Source/OpenSim.Region.ScriptEngine.YEngine/OpenSim.Region.ScriptEngine.YEngine.csproj
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<AssemblyTitle>OpenSim.Region.ScriptEngine.YEngine</AssemblyTitle> | ||
<Company>http://opensimulator.org</Company> | ||
<Product>OpenSim</Product> | ||
<Copyright>OpenSimulator developers</Copyright> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Autofac" Version="7.1.0" /> | ||
<PackageReference Include="log4net" Version="2.0.15" /> | ||
<PackageReference Include="RawScape.Nini" Version="1.0.0" /> | ||
<PackageReference Include="System.Drawing.Common" Version="6.0.0" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Reference Include="OpenMetaverse"> | ||
<HintPath>..\..\bin\OpenMetaverse.dll</HintPath> | ||
<Private>False</Private> | ||
</Reference> | ||
<Reference Include="OpenMetaverse.StructuredData"> | ||
<HintPath>..\..\bin\OpenMetaverse.StructuredData.dll</HintPath> | ||
<Private>False</Private> | ||
</Reference> | ||
<Reference Include="OpenMetaverseTypes"> | ||
<HintPath>..\..\bin\OpenMetaverseTypes.dll</HintPath> | ||
<Private>False</Private> | ||
</Reference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\..\Source\OpenSim.Framework\OpenSim.Framework.csproj" /> | ||
<ProjectReference Include="..\..\Source\OpenSim.Framework.Console\OpenSim.Framework.Console.csproj" /> | ||
<ProjectReference Include="..\..\Source\OpenSim.Framework.Monitoring\OpenSim.Framework.Monitoring.csproj" /> | ||
<ProjectReference Include="..\..\OpenSim\Region\ClientStack\Linden\Caps\OpenSim.Region.ClientStack.LindenCaps.csproj" /> | ||
<ProjectReference Include="..\..\OpenSim\Region\CoreModules\OpenSim.Region.CoreModules.csproj" /> | ||
<ProjectReference Include="..\..\OpenSim\Region\Framework\OpenSim.Region.Framework.csproj" /> | ||
<ProjectReference Include="..\..\Source\OpenSim.Region.ScriptEngine.Shared\OpenSim.Region.ScriptEngine.Shared.csproj" /> | ||
<ProjectReference Include="..\..\OpenSim\Services\Interfaces\OpenSim.Services.Interfaces.csproj" /> | ||
</ItemGroup> | ||
</Project> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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.