Move modules/mono/glue/cs_files to modules/mono/glue/Managed/Files
Added dummy MSBuild project and solution to get tooling help when editing these files.
This commit is contained in:
parent
5e57beebb1
commit
995a40e8ef
45 changed files with 181 additions and 1 deletions
|
@ -77,7 +77,7 @@ env_mono.add_source_files(env.modules_sources, 'utils/*.cpp')
|
|||
if env['tools']:
|
||||
env_mono.add_source_files(env.modules_sources, 'editor/*.cpp')
|
||||
# NOTE: It is safe to generate this file here, since this is still executed serially
|
||||
make_cs_files_header('glue/cs_files', 'glue/cs_compressed.gen.h', 'glue/cs_glue_version.gen.h')
|
||||
make_cs_files_header('glue/Managed/Files', 'glue/cs_compressed.gen.h', 'glue/cs_glue_version.gen.h')
|
||||
|
||||
vars = Variables()
|
||||
vars.Add(BoolVariable('mono_glue', 'Build with the mono glue sources', True))
|
||||
|
|
21
modules/mono/glue/Managed/IgnoredFiles/Enums.cs
Normal file
21
modules/mono/glue/Managed/IgnoredFiles/Enums.cs
Normal file
|
@ -0,0 +1,21 @@
|
|||
|
||||
namespace Godot
|
||||
{
|
||||
public enum Margin
|
||||
{
|
||||
Left = 0,
|
||||
Top = 1,
|
||||
Right = 2,
|
||||
Bottom = 3
|
||||
}
|
||||
|
||||
public enum Error
|
||||
{
|
||||
Ok = 0
|
||||
}
|
||||
|
||||
public enum PropertyHint
|
||||
{
|
||||
None = 0
|
||||
}
|
||||
}
|
17
modules/mono/glue/Managed/IgnoredFiles/FuncRef.cs
Normal file
17
modules/mono/glue/Managed/IgnoredFiles/FuncRef.cs
Normal file
|
@ -0,0 +1,17 @@
|
|||
using System;
|
||||
|
||||
namespace Godot
|
||||
{
|
||||
public partial class FuncRef
|
||||
{
|
||||
public void SetInstance(Object instance)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public void SetFunction(string name)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
}
|
28
modules/mono/glue/Managed/IgnoredFiles/Node.cs
Normal file
28
modules/mono/glue/Managed/IgnoredFiles/Node.cs
Normal file
|
@ -0,0 +1,28 @@
|
|||
|
||||
using System;
|
||||
|
||||
namespace Godot
|
||||
{
|
||||
public partial class Node
|
||||
{
|
||||
public Node GetChild(int idx)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public Node GetNode(NodePath path)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public Node GetOwner()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public Node GetParent()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
}
|
7
modules/mono/glue/Managed/IgnoredFiles/Resource.cs
Normal file
7
modules/mono/glue/Managed/IgnoredFiles/Resource.cs
Normal file
|
@ -0,0 +1,7 @@
|
|||
namespace Godot
|
||||
{
|
||||
public partial class Resource
|
||||
{
|
||||
|
||||
}
|
||||
}
|
12
modules/mono/glue/Managed/IgnoredFiles/ResourceLoader.cs
Normal file
12
modules/mono/glue/Managed/IgnoredFiles/ResourceLoader.cs
Normal file
|
@ -0,0 +1,12 @@
|
|||
using System;
|
||||
|
||||
namespace Godot
|
||||
{
|
||||
public partial class ResourceLoader
|
||||
{
|
||||
public static Resource Load(string path, string typeHint = "", bool pNoCache = false)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
}
|
7
modules/mono/glue/Managed/IgnoredFiles/WeakRef.cs
Normal file
7
modules/mono/glue/Managed/IgnoredFiles/WeakRef.cs
Normal file
|
@ -0,0 +1,7 @@
|
|||
namespace Godot
|
||||
{
|
||||
public partial class WeakRef
|
||||
{
|
||||
|
||||
}
|
||||
}
|
40
modules/mono/glue/Managed/Managed.csproj
Normal file
40
modules/mono/glue/Managed/Managed.csproj
Normal file
|
@ -0,0 +1,40 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
|
||||
<ProjectGuid>{DAA3DEF8-5112-407C-A5E5-6C608CF5F955}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>Managed</RootNamespace>
|
||||
<AssemblyName>Managed</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug</OutputPath>
|
||||
<DefineConstants>DEBUG;</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<ExternalConsole>true</ExternalConsole>
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release</OutputPath>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<ExternalConsole>true</ExternalConsole>
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Files\**\*.cs" />
|
||||
<Compile Include="IgnoredFiles\**\*.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
17
modules/mono/glue/Managed/Managed.sln
Normal file
17
modules/mono/glue/Managed/Managed.sln
Normal file
|
@ -0,0 +1,17 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 2012
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Managed", "Managed.csproj", "{DAA3DEF8-5112-407C-A5E5-6C608CF5F955}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|x86 = Debug|x86
|
||||
Release|x86 = Release|x86
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{DAA3DEF8-5112-407C-A5E5-6C608CF5F955}.Debug|x86.ActiveCfg = Debug|x86
|
||||
{DAA3DEF8-5112-407C-A5E5-6C608CF5F955}.Debug|x86.Build.0 = Debug|x86
|
||||
{DAA3DEF8-5112-407C-A5E5-6C608CF5F955}.Release|x86.ActiveCfg = Release|x86
|
||||
{DAA3DEF8-5112-407C-A5E5-6C608CF5F955}.Release|x86.Build.0 = Release|x86
|
||||
EndGlobalSection
|
||||
EndGlobal
|
26
modules/mono/glue/Managed/Properties/AssemblyInfo.cs
Normal file
26
modules/mono/glue/Managed/Properties/AssemblyInfo.cs
Normal file
|
@ -0,0 +1,26 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
// Information about this assembly is defined by the following attributes.
|
||||
// Change them to the values specific to your project.
|
||||
|
||||
[assembly: AssemblyTitle("Managed")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("")]
|
||||
[assembly: AssemblyCopyright("")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
|
||||
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
||||
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
||||
|
||||
[assembly: AssemblyVersion("1.0.*")]
|
||||
|
||||
// The following attributes are used to specify the signing key for the assembly,
|
||||
// if desired. See the Mono documentation for more information about signing.
|
||||
|
||||
//[assembly: AssemblyDelaySign(false)]
|
||||
//[assembly: AssemblyKeyFile("")]
|
5
modules/mono/glue/Managed/README.md
Normal file
5
modules/mono/glue/Managed/README.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
The directory `Files` contains C# files from the core assembly project that are not part of the generated API. Any file with the `.cs` extension in this directory will be added to the core assembly project.
|
||||
|
||||
A dummy solution and project is provided to get tooling help while editing these files, like code completion and name refactoring.
|
||||
|
||||
The directory `IgnoredFiles` contains C# files that are needed to build the dummy project but must not be added to the core assembly project. They contain placeholders for the declarations that are part of the generated API.
|
Loading…
Reference in a new issue