Skip to content
This repository was archived by the owner on Dec 21, 2019. It is now read-only.

Commit 8a9dcaa

Browse files
committed
Update to latest rocket
1 parent bc0ae9e commit 8a9dcaa

File tree

7 files changed

+12
-14
lines changed

7 files changed

+12
-14
lines changed

Rocket.UnityEngine/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
using System.Reflection;
2-
using System.Runtime.CompilerServices;
32
using System.Runtime.InteropServices;
43

54
// General Information about an assembly is controlled through the following
65
// set of attributes. Change these attribute values to modify the information
76
// associated with an assembly.
8-
[assembly: AssemblyTitle("Rocket.Unity5")]
7+
[assembly: AssemblyTitle("Rocket.UnityEngine")]
98
[assembly: AssemblyDescription("")]
109
[assembly: AssemblyConfiguration("")]
1110
[assembly: AssemblyCompany("")]
12-
[assembly: AssemblyProduct("Rocket.Unity5")]
11+
[assembly: AssemblyProduct("Rocket.UnityEngine")]
1312
[assembly: AssemblyCopyright("Copyright © 2018")]
1413
[assembly: AssemblyTrademark("")]
1514
[assembly: AssemblyCulture("")]

Rocket.UnityEngine/Properties/DependencyRegistrator.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using Rocket.API.DependencyInjection;
22
using Rocket.API.Scheduler;
3-
using Rocket.Unity5.Scheduling;
3+
using Rocket.UnityEngine.Scheduling;
44

5-
namespace Rocket.Unity5.Properties
5+
namespace Rocket.UnityEngine.Properties
66
{
77
public class DependencyRegistrator : IDependencyRegistrator
88
{

Rocket.UnityEngine/Rocket.UnityEngine.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
<WarningLevel>4</WarningLevel>
3232
</PropertyGroup>
3333
<ItemGroup>
34-
<Reference Include="Rocket.API, Version=5.0.0.232, Culture=neutral, processorArchitecture=MSIL">
35-
<HintPath>..\packages\Rocket.API.5.0.0.232\lib\net35\Rocket.API.dll</HintPath>
34+
<Reference Include="Rocket.API, Version=5.0.0.235, Culture=neutral, processorArchitecture=MSIL">
35+
<HintPath>..\packages\Rocket.API.5.0.0.235\lib\net35\Rocket.API.dll</HintPath>
3636
</Reference>
3737
<Reference Include="System" />
3838
<Reference Include="System.Core" />

Rocket.UnityEngine/Scheduling/AsyncThreadPool.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
using System.Collections.Generic;
2-
using System.Linq;
1+
using System.Linq;
32
using System.Threading;
43
using Rocket.API.Scheduler;
54

6-
namespace Rocket.Unity5.Scheduling
5+
namespace Rocket.UnityEngine.Scheduling
76
{
87
public class AsyncThreadPool
98
{

Rocket.UnityEngine/Scheduling/UnityTask.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using Rocket.API;
33
using Rocket.API.Scheduler;
44

5-
namespace Rocket.Unity5.Scheduling
5+
namespace Rocket.UnityEngine.Scheduling
66
{
77
public class UnityTask : ITask
88
{

Rocket.UnityEngine/Scheduling/UnityTaskScheduler.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
using System.Collections.ObjectModel;
44
using System.Linq;
55
using Rocket.API;
6-
using Rocket.API.DependencyInjection;
76
using Rocket.API.Eventing;
7+
using Rocket.API.DependencyInjection;
88
using Rocket.API.Scheduler;
99
using UnityEngine;
1010

11-
namespace Rocket.Unity5.Scheduling
11+
namespace Rocket.UnityEngine.Scheduling
1212
{
1313
public class UnityTaskScheduler : MonoBehaviour, ITaskScheduler
1414
{

Rocket.UnityEngine/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Rocket.API" version="5.0.0.232" targetFramework="net35" />
3+
<package id="Rocket.API" version="5.0.0.235" targetFramework="net35" />
44
</packages>

0 commit comments

Comments
 (0)