Skip to content

Commit f67f276

Browse files
committed
moved using, csproj update
1 parent caf3d00 commit f67f276

File tree

5 files changed

+44
-41
lines changed

5 files changed

+44
-41
lines changed

IronPythonModule/IPModule.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.IO;
4-
using System.Reflection;
5-
using Fougerite;
6-
7-
namespace IronPythonModule
1+
namespace IronPythonModule
82
{
3+
using System;
4+
using System.Collections.Generic;
5+
using System.IO;
6+
using System.Reflection;
7+
using Fougerite;
8+
99
public class IPModule : Fougerite.Module
1010
{
1111
public override string Name { get { return "IPModule"; } }

IronPythonModule/IPPlugin.cs

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
using System;
2-
using System.Linq;
3-
using System.Reflection;
4-
using System.Globalization;
5-
using System.ComponentModel;
6-
using System.Collections.Generic;
7-
using System.Collections;
8-
using System.IO;
9-
using Fougerite;
10-
using Fougerite.Events;
11-
using Microsoft.Scripting.Hosting;
12-
13-
namespace IronPythonModule
1+
namespace IronPythonModule
142
{
3+
using System;
4+
using System.Linq;
5+
using System.Reflection;
6+
using System.Globalization;
7+
using System.ComponentModel;
8+
using System.Collections.Generic;
9+
using System.Collections;
10+
using System.IO;
11+
using Fougerite;
12+
using Fougerite.Events;
13+
using Microsoft.Scripting.Hosting;
14+
1515
public class IPPlugin {
1616

1717
public readonly string Name;

IronPythonModule/IPTimedEvent.cs

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Runtime.CompilerServices;
4-
using System.Threading;
5-
using System.Timers;
1+
namespace IronPythonModule {
2+
3+
using System;
4+
using System.Collections.Generic;
5+
using System.Runtime.CompilerServices;
6+
using System.Threading;
7+
using System.Timers;
68

7-
namespace IronPythonModule {
89
public class IPTimedEvent {
910

1011
private Dictionary<string, object> _args;

IronPythonModule/IronPythonModule.csproj

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -32,33 +32,35 @@
3232
</PropertyGroup>
3333
<ItemGroup>
3434
<Reference Include="System" />
35-
<Reference Include="Fougerite">
36-
<HintPath>references\Fougerite.dll</HintPath>
37-
</Reference>
38-
<Reference Include="uLink">
39-
<HintPath>references\uLink.dll</HintPath>
40-
</Reference>
41-
<Reference Include="UnityEngine">
42-
<HintPath>references\UnityEngine.dll</HintPath>
43-
</Reference>
4435
<Reference Include="Assembly-CSharp">
45-
<HintPath>references\Assembly-CSharp.dll</HintPath>
36+
<HintPath>ref\Assembly-CSharp.dll</HintPath>
4637
</Reference>
4738
<Reference Include="Facepunch.ID">
48-
<HintPath>references\Facepunch.ID.dll</HintPath>
39+
<HintPath>ref\Facepunch.ID.dll</HintPath>
4940
</Reference>
50-
<Reference Include="Microsoft.Contracts">
51-
<HintPath>references\Microsoft.Contracts.dll</HintPath>
41+
<Reference Include="Fougerite">
42+
<HintPath>ref\Fougerite.dll</HintPath>
5243
</Reference>
5344
<Reference Include="IronPython.Deps">
54-
<HintPath>references\IronPython.Deps.dll</HintPath>
45+
<HintPath>ref\IronPython.Deps.dll</HintPath>
46+
</Reference>
47+
<Reference Include="uLink">
48+
<HintPath>ref\uLink.dll</HintPath>
49+
</Reference>
50+
<Reference Include="UnityEngine">
51+
<HintPath>ref\UnityEngine.dll</HintPath>
5552
</Reference>
5653
</ItemGroup>
5754
<ItemGroup>
5855
<Compile Include="Properties\AssemblyInfo.cs" />
59-
<Compile Include="IPEngine.cs" />
6056
<Compile Include="IPPlugin.cs" />
6157
<Compile Include="IPTimedEvent.cs" />
58+
<Compile Include="LookUp.cs" />
59+
<Compile Include="IPModule.cs" />
60+
<Compile Include="FougeriteEx\DestroyEvent.cs" />
6261
</ItemGroup>
6362
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
63+
<ItemGroup>
64+
<Folder Include="FougeriteEx\" />
65+
</ItemGroup>
6466
</Project>
3.75 MB
Binary file not shown.

0 commit comments

Comments
 (0)