From f298e9c67f465fb2231551ec480ad9915659004d Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Mon, 7 Dec 2020 23:57:30 +0100 Subject: [PATCH] Add missing Mono binary files --- Source/Platforms/Android/.gitignore | 1 + Source/Platforms/Editor/Windows/.gitignore | 1 + .../Platforms/Editor/Windows/Mono/bin/csc.bat | 2 + .../Editor/Windows/Mono/bin/mono-2.0-sgen.dll | 3 + .../Editor/Windows/Mono/bin/mono.exe | 3 + .../MSBuild/Microsoft.Build.CommonTypes.xsd | 1581 +++++++++++++++++ .../14.0/bin/MSBuild/Microsoft.Build.Core.xsd | 390 ++++ .../14.0/bin/Microsoft.Build.Engine.dll | 3 + .../14.0/bin/Microsoft.Build.Framework.dll | 3 + .../14.0/bin/Microsoft.Build.Tasks.Core.dll | 3 + .../bin/Microsoft.Build.Utilities.Core.dll | 3 + .../mono/xbuild/14.0/bin/Microsoft.Build.dll | 3 + .../mono/xbuild/14.0/bin/Microsoft.Build.xsd | 50 + .../xbuild/14.0/bin/Microsoft.CSharp.targets | 142 ++ .../xbuild/14.0/bin/Microsoft.Common.targets | 961 ++++++++++ .../xbuild/14.0/bin/Microsoft.Common.tasks | 40 + .../14.0/bin/Microsoft.VisualBasic.targets | 120 ++ .../xbuild/14.0/bin/Mono.XBuild.Tasks.dll | 3 + .../Mono/lib/mono/xbuild/14.0/bin/xbuild.exe | 3 + .../Mono/lib/mono/xbuild/14.0/bin/xbuild.rsp | 3 + Source/Platforms/Linux/.gitignore | 1 + Source/Platforms/UWP/.gitignore | 1 + Source/Platforms/Windows/.gitignore | 1 + Source/Platforms/XboxOne/.gitignore | 1 + 24 files changed, 3322 insertions(+) create mode 100644 Source/Platforms/Editor/Windows/Mono/bin/csc.bat create mode 100644 Source/Platforms/Editor/Windows/Mono/bin/mono-2.0-sgen.dll create mode 100644 Source/Platforms/Editor/Windows/Mono/bin/mono.exe create mode 100644 Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/MSBuild/Microsoft.Build.CommonTypes.xsd create mode 100644 Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/MSBuild/Microsoft.Build.Core.xsd create mode 100644 Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.Build.Engine.dll create mode 100644 Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.Build.Framework.dll create mode 100644 Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.Build.Tasks.Core.dll create mode 100644 Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.Build.Utilities.Core.dll create mode 100644 Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.Build.dll create mode 100644 Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.Build.xsd create mode 100644 Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.CSharp.targets create mode 100644 Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.Common.targets create mode 100644 Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.Common.tasks create mode 100644 Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.VisualBasic.targets create mode 100644 Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Mono.XBuild.Tasks.dll create mode 100644 Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/xbuild.exe create mode 100644 Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/xbuild.rsp diff --git a/Source/Platforms/Android/.gitignore b/Source/Platforms/Android/.gitignore index c07cf8bfe..7d37cda84 100644 --- a/Source/Platforms/Android/.gitignore +++ b/Source/Platforms/Android/.gitignore @@ -1,2 +1,3 @@ !Binaries/ +!bin/ !*.* diff --git a/Source/Platforms/Editor/Windows/.gitignore b/Source/Platforms/Editor/Windows/.gitignore index c07cf8bfe..7d37cda84 100644 --- a/Source/Platforms/Editor/Windows/.gitignore +++ b/Source/Platforms/Editor/Windows/.gitignore @@ -1,2 +1,3 @@ !Binaries/ +!bin/ !*.* diff --git a/Source/Platforms/Editor/Windows/Mono/bin/csc.bat b/Source/Platforms/Editor/Windows/Mono/bin/csc.bat new file mode 100644 index 000000000..56fc6823d --- /dev/null +++ b/Source/Platforms/Editor/Windows/Mono/bin/csc.bat @@ -0,0 +1,2 @@ +@echo off +"%~dp0\mono.exe" %MONO_OPTIONS% "%~dp0\..\lib\mono\4.5\csc.exe" %* diff --git a/Source/Platforms/Editor/Windows/Mono/bin/mono-2.0-sgen.dll b/Source/Platforms/Editor/Windows/Mono/bin/mono-2.0-sgen.dll new file mode 100644 index 000000000..241309269 --- /dev/null +++ b/Source/Platforms/Editor/Windows/Mono/bin/mono-2.0-sgen.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:589c52b67e95becffe8ee2283907e612cd212c991eb19e76ecb625c745a77e31 +size 5994496 diff --git a/Source/Platforms/Editor/Windows/Mono/bin/mono.exe b/Source/Platforms/Editor/Windows/Mono/bin/mono.exe new file mode 100644 index 000000000..8288bd168 --- /dev/null +++ b/Source/Platforms/Editor/Windows/Mono/bin/mono.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feff5cbd757e6fb535ce3c13307a5a2172a6aee8aa49dbb6425a4796988c92c4 +size 156160 diff --git a/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/MSBuild/Microsoft.Build.CommonTypes.xsd b/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/MSBuild/Microsoft.Build.CommonTypes.xsd new file mode 100644 index 000000000..148f6bf4f --- /dev/null +++ b/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/MSBuild/Microsoft.Build.CommonTypes.xsd @@ -0,0 +1,1581 @@ + + + + + + + + + + + Reference to an assembly + + + + + + + + + Relative or absolute path to the assembly (optional) + + + + + Friendly display name (optional) + + + + + Fusion name of the assembly (optional) + + + + + Whether only the version in the fusion name should be referenced (optional, boolean) + + + + + Aliases for the reference (optional) + + + + + Whether the reference should be copied to the output folder (optional, boolean) + + + + + + + + Assembly name or filename + + + + + + + + + Reference to a COM component + + + + + + + + + Friendly display name (optional) + + + + + GUID in the form {00000000-0000-0000-0000-000000000000} + + + + + Major part of the version number + + + + + Minor part of the version number + + + + + Locale ID + + + + + Wrapper tool, such as tlbimp + + + + + Is it isolated (boolean) + + + + + + + + COM component name + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Path to native reference + + + + + + + + + Reference to another project + + + + + + + + + Friendly display name (optional) + + + + + Project GUID, in the form {00000000-0000-0000-0000-000000000000} + + + + + + + + + Path to project file + + + + + + + + + Source files for compiler + + + + + + + + + + + Whether file was generated from another file (boolean) + + + + + + Notional path within project to display if the file is physically located outside of the project file's cone (optional) + + + + + + Display in user interface (optional, boolean) + + + + + + + + Semi-colon separated list of source files (wildcards are allowed) + + + + + + + + + Resources to be embedded in the generated assembly + + + + + + + + + + Name of any file generator that is run on this item + + + + + File that was created by any file generator that was run on this item + + + + + Namespace into which any file generator that is run on this item should create code + + + + + Notional path within project to display if the file is physically located outside of the project file's cone (optional) + + + + + Display in user interface (optional, boolean) + + + + + + + + + Semi-colon separated list of resource files (wildcards are allowed) + + + + + + + + + Files that are not compiled, but may be embedded or published + + + + + + + + + + Name of any file generator that is run on this item + + + + + + + Notional path within project to display if the file is physically located outside of the project file's cone (optional) + + + + + + Default, Included, Excluded, DataFile, or Prerequisite + + + + + + Display in user interface (optional, boolean) + + + + + + Copy file to output directory (optional, boolean, default false) + + + + + + + + Semi-colon separated list of content files (wildcards are allowed) + + + + + + + + + Files that should have no role in the build process + + + + + + + + + + + Name of any file generator that is run on this item + + + + + + + Notional path within project to display if the file is physically located outside of the project file's cone (optional) + + + + + Display in user interface (optional, boolean) + + + + + + + + + + + Folder on disk + + + + + Assemblies whose namespaces should be imported by the Visual Basic compiler + + + + + + Name of Web References folder to display in user interface + + + + + Represents a reference to a web service + + + + + + + + + + + + + + + + + + + URL to web service + + + + + + + + + + + + + + + Display in user interface (optional, boolean) + + + + + + + + + + + + + + + + + + + Display in user interface (optional, boolean) + + + + + + (boolean) + + + + + Default, Included, Excluded, DataFile, or Prerequisite + + + + + + + + + + + + + + + integer + + + + + Matches the expression "\d\.\d\.\d\.(\d|\*)" + + + + + Name of folder for Application Designer + + + + + + + Name of output assembly + + + + + + + + + boolean + + + + + + HomeSite, Relative, or Absolute + + + + + + boolean + + + + + + + + + boolean + + + + + + Whether to emit symbols (boolean) + + + + + none, pdbonly, or full + + + + + + + + + Whether DEBUG is defined (boolean) + + + + + Whether TRACE is defined (boolean) + + + + + + + boolean + + + + + + + + + + + + + + + + + + + + + + + + Web, Unc, or Disk + + + + + + + + + + + boolean + + + + + Matches the expression "\d\.\d\.\d\.\d" + + + + + + + + Whether standard libraries (such as mscorlib) should be referenced automatically (boolean) + + + + + Comma separated list of disabled warnings + + + + + boolean + + + + + Should compiler optimize output (boolean) + + + + + Option Compare setting (Text or Binary) + + + + + Should Option Explicit be set (On or Off) + + + + + Should Option Strict be set (On or Off) + + + + + + Path to output folder, with trailing slash + + + + + Type of output to generate (WinExe, Exe, or Library) + + + + + + + + + Command line to be run at the end of build + + + + + Command line to be run at the start of build + + + + + + + + + + + + + Semi-colon separated list of folders to search during reference resolution + + + + + + + + + + + + + + + + + + + + + + + + Type that contains the main entry point + + + + + + + + + boolean + + + + + + boolean + + + + + + Hours, Days, or Weeks + + + + + Foreground or Background + + + + + boolean + + + + + boolean + + + + + + + + + integer between 0 and 4 inclusive + + + + + Comma separated list of warning numbers to treat as errors + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/MSBuild/Microsoft.Build.Core.xsd b/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/MSBuild/Microsoft.Build.Core.xsd new file mode 100644 index 000000000..c8f2aacb1 --- /dev/null +++ b/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/MSBuild/Microsoft.Build.Core.xsd @@ -0,0 +1,390 @@ + + + + + + + + + + + + + + Optional semi-colon separated list of one or more targets that will be built if no targets are otherwise specified + + + + + + + + + + + + + Logs an Error event + + + + + Logs a Warning event + + + + + + + + + + + + + + + + Logs an Error event + + + + + Logs a Warning event + + + + + + + + + + + + + + + + + + + + Groups tasks into a section of the build process + + + + + + + + + + + Name of the target + + + + + Optional semi-colon separated list of targets that should be run before this target + + + + + Optional semi-colon separated list of files that form inputs into this target. Their timestamps will be compared with the timestamps of files in Outputs to determine whether the Target is up to date + + + + + Optional semi-colon separated list of files that form outputs into this target. Their timestamps will be compared with the timestamps of files in Inputs to determine whether the Target is up to date + + + + + Optional expression evaluated to determine whether the Target and the targets it depends on should be run + + + + + + + Groups property definitions + + + + + + + Optional expression evaluated to determine whether the PropertyGroup should be used + + + + + + + Groups item list definitions + + + + + + + Optional expression evaluated to determine whether the ItemGroup should be used + + + + + + + Groups When and Otherwise elements + + + + + + + + + + Groups PropertyGroup and/or ItemGroup elements + + + + + + + + + + + Optional expression evaluated to determine whether the child PropertyGroups and/or ItemGroups should be used + + + + + + + Groups PropertyGroup and/or ItemGroup elements that are used if no Conditions on sibling When elements evaluate to true + + + + + + + + + + + + + Specifies targets to execute in the event of a recoverable error + + + + Optional expression evaluated to determine whether the targets should be executed + + + + + Semi-colon separated list of targets to execute + + + + + + + Logs an informational Message event, with an optional Importance + + + + Optional expression evaluated to determine whether the Message should be logged + + + + + Optional priority level. Allowed values are Low, Normal (default), and High + + + + + Text to log + + + + + + + + Optional expression evaluated to determine whether the text should be logged + + + + + Text to log + + + + + + + Declares where to load a task that will be used in the project + + + + Optional expression evaluated to determine whether the declaration should be evaluated + + + + + Optional name of assembly containing the task. Either AssemblyName or AssemblyFile must be used + + + + + Optional path to assembly containing the task. Either AssemblyName or AssemblyFile must be used + + + + + Name of task class in the assembly + + + + + + + Declares that the contents of another project file should be inserted at this location + + + + Optional expression evaluated to determine whether the import should occur + + + + + Project file to import + + + + + + + Optional section used by MSBuild hosts, that may contain arbitrary XML content that is ignored by MSBuild itself + + + + + + + + + + + + + Optional expression evaluated to determine whether the items should be evaluated + + + + + Semi-colon separated list of files (wildcards are allowed) or other item names to include in this item list + + + + + Semi-colon separated list of files (wildcards are allowed) or other item names to exclude from the Include list + + + + + + + + + + + + + + + + + + + + + + + + + Optional expression evaluated to determine whether the property should be evaluated + + + + + + + + + + + + + + Optional expression evaluated to determine whether the property should be evaluated + + + + + + + + + + + Optional element specifying a specific task output to be gathered + + + + + Task parameter to gather. Matches the name of a .NET Property on the task class that has an [Output] attribute + + + + + Optional name of an item list to put the gathered outputs into. Either ItemName or PropertyName must be specified + + + + + Optional name of a property to put the gathered output into. Either PropertyName or ItemName must be specified + + + + + Optional expression evaluated to determine whether the output should be gathered + + + + + + + + Optional expression evaluated to determine whether the task should be executed + + + + + Optional boolean indicating whether a recoverable task error should be ignored. Default false + + + + + + + + + + + + diff --git a/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.Build.Engine.dll b/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.Build.Engine.dll new file mode 100644 index 000000000..1da4ca5f3 --- /dev/null +++ b/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.Build.Engine.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fff94779f14b8c572827d5f29875468845f6bec02819ad27469285b36ae94148 +size 236032 diff --git a/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.Build.Framework.dll b/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.Build.Framework.dll new file mode 100644 index 000000000..d2264a892 --- /dev/null +++ b/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.Build.Framework.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:207a2c1a8d325c779c835f69958b4f9949c3ac7d96ce88042630db628ac411c3 +size 32768 diff --git a/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.Build.Tasks.Core.dll b/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.Build.Tasks.Core.dll new file mode 100644 index 000000000..b289db861 --- /dev/null +++ b/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.Build.Tasks.Core.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:defb193bab8fe89d4c9db2323832bb0c72ed73911fefc31861614670d4f1561c +size 175104 diff --git a/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.Build.Utilities.Core.dll b/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.Build.Utilities.Core.dll new file mode 100644 index 000000000..35045a234 --- /dev/null +++ b/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.Build.Utilities.Core.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:866441dda8e12c27ec285f4fa313d72065e73d467dbf91aa31bdf37e1cf7ccb9 +size 56320 diff --git a/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.Build.dll b/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.Build.dll new file mode 100644 index 000000000..968c3488f --- /dev/null +++ b/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.Build.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb20011c56c4b60e2027199a4740123d4ad528486fe778145e22e37c753bf47d +size 280064 diff --git a/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.Build.xsd b/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.Build.xsd new file mode 100644 index 000000000..e88f00f0f --- /dev/null +++ b/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.Build.xsd @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.CSharp.targets b/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.CSharp.targets new file mode 100644 index 000000000..2cd20a10c --- /dev/null +++ b/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.CSharp.targets @@ -0,0 +1,142 @@ + + + .cs + C# + + + + false + + + + + + + + $(MSBuildAllProjects);$(MSBuildToolsPath)\Microsoft.CSharp.targets + + + + true + + + + + + + + + + <_ExplicitReference Include="@(_TargetFrameworkDirectories->'%(FullPath)\mscorlib.dll')" Condition="Exists('%(FullPath)\mscorlib.dll')"> + false + + + + <_ExplicitMSCorlibPath>$([Microsoft.Build.Utilities.ToolLocationHelper]::GetPathToStandardLibraries ('$(TargetFrameworkIdentifier)', '$(TargetFrameworkVersion)', '$(TargetFrameworkProfile)'))\mscorlib.dll + + + <_ExplicitReference Include="@(_TargetFrameworkDirectories->'%(FullPath)\mscorlib.dll')" Condition="Exists('%(FullPath)\mscorlib.dll')"> + false + + + + <_ExplicitReference Include="$(_ExplicitMSCorlibPath)" Condition="Exists('$(_ExplicitMSCorlibPath)')"> + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $(ResolveAssemblyReferencesDependsOn);_AddCorlibReference + + + + +// <autogenerated /> +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute("$(TargetFrameworkMoniker)", FrameworkDisplayName = "$(TargetFrameworkMonikerDisplayName)")] + + + + diff --git a/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.Common.targets b/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.Common.targets new file mode 100644 index 000000000..43e416188 --- /dev/null +++ b/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.Common.targets @@ -0,0 +1,961 @@ + + + + + true + true + + + + + + + + Exe + .exe + .exe + .dll + .netmodule + + + + $(MSBuildProjectDirectory)\ + + + + + 14.0 + + + + $(MSBuildProjectName) + $(OutputPath)\ + bin\Debug\ + + .NETFramework + v4.0 + + $(TargetFrameworkIdentifier),Version=$(TargetFrameworkVersion),Profile=$(TargetFrameworkProfile) + $(TargetFrameworkIdentifier),Version=$(TargetFrameworkVersion) + + + + $(OutputPath) + $(OutDir)\ + + <_OriginalConfiguration>$(Configuration) + Debug + $(Configuration) + + <_OriginalPlatform>$(Platform) + AnyCPU + $(Platform) + + + + + true + System.Core;$(AdditionalExplicitAssemblyReferences) + + + + true + + + + obj\ + $(BaseIntermediateOutputPath)\ + $(MSBuildProjectFile).FilesWrittenAbsolute.txt + + + + $(BaseIntermediateOutputPath)$(Configuration)\ + $(BaseIntermediateOutputPath)$(PlatformName)\$(Configuration)\ + + + + $(IntermediateOutputPath)\ + + + + + + + <_OutDirItem Include="$(OutDir)"/> + + + + $(AssemblyName) + $(TargetName)$(TargetExt) + @(_OutDirItem->'%(FullPath)') + @(_OutDirItem->'%(FullPath)\$(TargetFileName)') + $(MSBuildAllProjects);$(MSBuildProjectFullPath);$(MSBuildToolsPath)\Microsoft.Common.targets + $(AssemblyOriginatorKeyFile) + true + + + + + + + + + + + + + AssignLinkMetadata + + + + + + + + + + + + + + + + + + + + + + + + + <_EmbeddedResourceWithLinkAssigned Remove="@(_EmbeddedResourceWithLinkAssigned)" /> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <_TargetFrameworkDirectories Include="$(_TargetFrameworkDirectories);$(TargetFrameworkDirectory)" KeepDuplicates="false" /> + + + @(_TargetFrameworkDirectories) + + + + + + <_DesignTimeFacadeAssemblies Include="%(DesignTimeFacadeDirectories.Identity)\*.dll"/> + + + + $(TargetFrameworkDirectory);@(DesignTimeFacadeDirectories) + + + + + + + .exe; + .dll + + + + .exe.mdb; + .dll.mdb; + .pdb; + .xml + + + + {CandidateAssemblyFiles}; + $(ReferencePath); + @(AdditionalReferencePath); + {HintPathFromItem}; + {TargetFrameworkDirectory}; + {PkgConfig}; + {GAC}; + {RawFileName}; + $(OutDir) + + + + BeforeResolveReferences; + ResolveProjectReferences; + ResolveAssemblyReferences; + AfterResolveReferences + + + + GetFrameworkPaths; + GetReferenceAssemblyPaths; + PrepareForBuild + + + + + $(IntermediateOutputPath)$(TargetFrameworkMoniker).AssemblyAttribute$(DefaultLanguageSourceExtension) + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + BuildOnlySettings; + BeforeBuild; + CoreBuild; + AfterBuild + + + + + + + + + + + + PrepareForBuild; + GetFrameworkPaths; + GetReferenceAssemblyPaths; + PreBuildEvent; + ResolveReferences; + CopyFilesMarkedCopyLocal; + PrepareResources; + Compile; + PrepareForRun; + DeployOutputFiles; + _RecordCleanFile; + PostBuildEvent + + + + + + + + + + + + + ResolveReferences; + GenerateTargetFrameworkMonikerAttribute; + BeforeCompile; + _TimestampBeforeCompile; + CoreCompile; + _TimestampAfterCompile; + AfterCompile + + + + + + + + + + + DeployOutputFiles + + + + + + + AssignTargetPaths; + SplitResourcesByCulture; + CreateManifestResourceNames; + CopyNonResxEmbeddedResources; + GenerateResources; + GenerateSatelliteAssemblies; + CompileLicxFiles + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + BeforeRebuild; + Clean; + $(MSBuildProjectDefaultTargets); + AfterRebuild; + + + + BeforeRebuild; + Clean; + Build; + AfterRebuild; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + BeforeClean; + CleanReferencedProjects; + CoreClean; + AfterClean + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + + + $(ResolveReferencesDependsOn); + ImplicitlyExpandDesignTimeFacades + + + + $(ImplicitlyExpandDesignTimeFacadesDependsOn); + GetReferenceAssemblyPaths + + + + + + + + <_HasReferenceToSystemRuntime Condition="'$(DependsOnSystemRuntime)' == 'true' or '%(_ResolvedProjectReferencePaths.TargetPlatformIdentifier)' == 'Portable'">true + + + + + + + false + false + ImplicitlyExpandDesignTimeFacades + + <_ResolveAssemblyReferenceResolvedFiles Include="@(ReferencePath)" Condition="'%(ReferencePath.ResolvedFrom)' == 'ImplicitlyExpandDesignTimeFacades'" /> + + + + + + + + diff --git a/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.Common.tasks b/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.Common.tasks new file mode 100644 index 000000000..54d9caab7 --- /dev/null +++ b/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.Common.tasks @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.VisualBasic.targets b/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.VisualBasic.targets new file mode 100644 index 000000000..cf35f8251 --- /dev/null +++ b/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Microsoft.VisualBasic.targets @@ -0,0 +1,120 @@ + + + .vb + VB + + + + + + + + CONFIG="$(Configuration)" + $(FinalDefineConstants),DEBUG=-1 + $(FinalDefineConstants),TRACE=-1 + $(FinalDefineConstants),_MyType="$(MyType)" + $(FinalDefineConstants),PLATFORM="$(Platform)" + $(FinalDefineConstants),PLATFORM="AnyCPU" + $(FinalDefineConstants),$(DefineConstants) + + <_NoWarnings Condition=" '$(WarningLevel)' == '0' ">true + <_NoWarnings Condition=" '$(WarningLevel)' == '1' ">false + + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + vbnc.exe + + + diff --git a/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Mono.XBuild.Tasks.dll b/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Mono.XBuild.Tasks.dll new file mode 100644 index 000000000..10ba057b7 --- /dev/null +++ b/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/Mono.XBuild.Tasks.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:429c79e7de73424cb957a8ab7ad802c4ec4190c53ade5e3d779f5e52db197715 +size 36864 diff --git a/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/xbuild.exe b/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/xbuild.exe new file mode 100644 index 000000000..ddcbdf1e3 --- /dev/null +++ b/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/xbuild.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53c130a08b01a8d4ac99eea796fa71f4029ff26f2e3e394f27f019f2bbe96a7e +size 62976 diff --git a/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/xbuild.rsp b/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/xbuild.rsp new file mode 100644 index 000000000..9b9ce7087 --- /dev/null +++ b/Source/Platforms/Editor/Windows/Mono/lib/mono/xbuild/14.0/bin/xbuild.rsp @@ -0,0 +1,3 @@ +# xbuild command line options specified here will be used +# by xbuild on every build, unless /noautoresponse is passed +# on the command line. diff --git a/Source/Platforms/Linux/.gitignore b/Source/Platforms/Linux/.gitignore index c07cf8bfe..7d37cda84 100644 --- a/Source/Platforms/Linux/.gitignore +++ b/Source/Platforms/Linux/.gitignore @@ -1,2 +1,3 @@ !Binaries/ +!bin/ !*.* diff --git a/Source/Platforms/UWP/.gitignore b/Source/Platforms/UWP/.gitignore index c07cf8bfe..7d37cda84 100644 --- a/Source/Platforms/UWP/.gitignore +++ b/Source/Platforms/UWP/.gitignore @@ -1,2 +1,3 @@ !Binaries/ +!bin/ !*.* diff --git a/Source/Platforms/Windows/.gitignore b/Source/Platforms/Windows/.gitignore index c07cf8bfe..7d37cda84 100644 --- a/Source/Platforms/Windows/.gitignore +++ b/Source/Platforms/Windows/.gitignore @@ -1,2 +1,3 @@ !Binaries/ +!bin/ !*.* diff --git a/Source/Platforms/XboxOne/.gitignore b/Source/Platforms/XboxOne/.gitignore index c07cf8bfe..7d37cda84 100644 --- a/Source/Platforms/XboxOne/.gitignore +++ b/Source/Platforms/XboxOne/.gitignore @@ -1,2 +1,3 @@ !Binaries/ +!bin/ !*.*