mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 22:12:25 +00:00
517 lines
No EOL
26 KiB
XML
517 lines
No EOL
26 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
<ProductVersion>9.0.30729</ProductVersion>
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
<ProjectGuid>{21243B63-9CD0-4573-9C58-AF4B4AEF9D57}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
<RootNamespace>Indy.IL2CPU</RootNamespace>
|
|
<AssemblyName>Indy.IL2CPU</AssemblyName>
|
|
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
|
|
<FileAlignment>512</FileAlignment>
|
|
<SccProjectName>SAK</SccProjectName>
|
|
<SccLocalPath>SAK</SccLocalPath>
|
|
<SccAuxPath>SAK</SccAuxPath>
|
|
<SccProvider>SAK</SccProvider>
|
|
<SignAssembly>true</SignAssembly>
|
|
<AssemblyOriginatorKeyFile>Cosmos.snk</AssemblyOriginatorKeyFile>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>full</DebugType>
|
|
<Optimize>false</Optimize>
|
|
<OutputPath>bin\Debug\</OutputPath>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<DebugType>pdbonly</DebugType>
|
|
<Optimize>true</Optimize>
|
|
<OutputPath>bin\Release\</OutputPath>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<DocumentationFile>bin\Release\Indy.IL2CPU.XML</DocumentationFile>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="corapi, Version=2.1.0.0, Culture=neutral, PublicKeyToken=ebb8d478f63174c0, processorArchitecture=MSIL">
|
|
<SpecificVersion>False</SpecificVersion>
|
|
<HintPath>..\libraries\MDbg\corapi.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="raw, Version=2.1.0.0, Culture=neutral, PublicKeyToken=ebb8d478f63174c0, processorArchitecture=MSIL">
|
|
<SpecificVersion>False</SpecificVersion>
|
|
<HintPath>..\libraries\MDbg\raw.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="System" />
|
|
<Reference Include="System.Core">
|
|
<RequiredTargetFramework>3.5</RequiredTargetFramework>
|
|
</Reference>
|
|
<Reference Include="System.Data" />
|
|
<Reference Include="System.Drawing" />
|
|
<Reference Include="System.Xml" />
|
|
<Reference Include="System.Xml.Linq">
|
|
<RequiredTargetFramework>3.5</RequiredTargetFramework>
|
|
</Reference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="CustomImplementation\System\Runtime\CompilerServices\RuntimeHelpers.cs" />
|
|
<Compile Include="Engine.cs" />
|
|
<Compile Include="CustomImplementation\System\ObjectImpl.cs" />
|
|
<Compile Include="CustomImplementation\System\ObjectImplRefs.cs" />
|
|
<Compile Include="ObjectUtilities.cs" />
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
<Compile Include="RuntimeEngineImpl.cs" />
|
|
<Compile Include="RuntimeEngineRefs.cs" />
|
|
<Compile Include="Heap.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\IL2CPU\Cosmos.IL2CPU.Debug\Cosmos.Compiler.Debug.csproj">
|
|
<Project>{9998B4EA-385E-4DA2-8905-2BBEB5B2C6E2}</Project>
|
|
<Name>Cosmos.Compiler.Debug</Name>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="Assembler\Assembler.cs" />
|
|
<Compile Include="Assembler\BaseAssemblerElement.cs" />
|
|
<Compile Include="Assembler\Comment.cs" />
|
|
<Compile Include="Assembler\DataDefine.cs" />
|
|
<Compile Include="Assembler\DataEndIfDefined.cs" />
|
|
<Compile Include="Assembler\DataIfDefined.cs" />
|
|
<Compile Include="Assembler\DataIfNotDefined.cs" />
|
|
<Compile Include="Assembler\DataMember.cs" />
|
|
<Compile Include="Assembler\Define.cs" />
|
|
<Compile Include="Assembler\ElementReference.cs" />
|
|
<Compile Include="Assembler\EndIfDefined.cs" />
|
|
<Compile Include="Assembler\IfDefined.cs" />
|
|
<Compile Include="Assembler\IfNotDefined.cs" />
|
|
<Compile Include="Assembler\x86\ConditionalJump.cs" />
|
|
<Compile Include="Assembler\x86\ConditionalMove.cs" />
|
|
<Compile Include="Assembler\x86\CosmosAssembler.cs" />
|
|
<Compile Include="Assembler\x86\Enums.cs" />
|
|
<Compile Include="Assembler\x86\In.cs" />
|
|
<Compile Include="Assembler\x86\JumpToSegment.cs" />
|
|
<Compile Include="Assembler\x86\Movs.cs" />
|
|
<Compile Include="Assembler\x86\X\RegisterEBX.cs" />
|
|
<Compile Include="Assembler\x86\_Infra\Extensions.cs" />
|
|
<Compile Include="Assembler\x86\_Infra\IInstructionWithCondition.cs" />
|
|
<Compile Include="Assembler\x86\_Infra\IInstructionWithDestination.cs" />
|
|
<Compile Include="Assembler\x86\_Infra\IInstructionWithPrefix.cs" />
|
|
<Compile Include="Assembler\x86\_Infra\IInstructionWithSize.cs" />
|
|
<Compile Include="Assembler\x86\_Infra\IInstructionWithSource.cs" />
|
|
<Compile Include="Assembler\x86\_Infra\Instruction.cs" />
|
|
<Compile Include="Assembler\x86\_Infra\InstructionWithDestination.cs" />
|
|
<Compile Include="Assembler\x86\_Infra\InstructionWithDestinationAndSize.cs" />
|
|
<Compile Include="Assembler\x86\_Infra\InstructionWithDestinationAndSource.cs" />
|
|
<Compile Include="Assembler\x86\_Infra\InstructionWithDestinationAndSourceAndSize.cs" />
|
|
<Compile Include="Assembler\x86\_Infra\InstructionWithSize.cs" />
|
|
<Compile Include="Assembler\_Infra\IDefine.cs" />
|
|
<Compile Include="Assembler\_Infra\IEndIfDefined.cs" />
|
|
<Compile Include="Assembler\_Infra\IIfDefined.cs" />
|
|
<Compile Include="Assembler\_Infra\IIfNotDefined.cs" />
|
|
<Compile Include="Assembler\ImportMember.cs" />
|
|
<Compile Include="Assembler\ImportMethodMember.cs" />
|
|
<Compile Include="Assembler\Instruction.cs" />
|
|
<Compile Include="Assembler\Label.cs" />
|
|
<Compile Include="Assembler\OpCodeAttribute.cs" />
|
|
<Compile Include="Assembler\RawAssembler.cs" />
|
|
<Compile Include="Assembler\ReaderWriterLocker.cs" />
|
|
<Compile Include="Assembler\StackContent.cs" />
|
|
<Compile Include="Assembler\x86\286AndUp\Lgdt.cs" />
|
|
<Compile Include="Assembler\x86\286AndUp\Lidt.cs" />
|
|
<Compile Include="Assembler\x86\386AndUp\Popad.cs" />
|
|
<Compile Include="Assembler\x86\386AndUp\Popfd.cs" />
|
|
<Compile Include="Assembler\x86\386AndUp\Pushad.cs" />
|
|
<Compile Include="Assembler\x86\386AndUp\Pushfd.cs" />
|
|
<Compile Include="Assembler\x86\386AndUp\SignExtendAX.cs" />
|
|
<Compile Include="Assembler\x86\486AndUp\CmpXchg.cs" />
|
|
<Compile Include="Assembler\x86\486AndUp\CpuId.cs" />
|
|
<Compile Include="Assembler\x86\486AndUp\XchgAndAdd.cs" />
|
|
<Compile Include="Assembler\x86\Add.cs" />
|
|
<Compile Include="Assembler\x86\AddWithCarry.cs" />
|
|
<Compile Include="Assembler\x86\And.cs" />
|
|
<Compile Include="Assembler\x86\Assembler.cs" />
|
|
<Compile Include="Assembler\x86\Call.cs" />
|
|
<Compile Include="Assembler\x86\ClrCarryFlag.cs" />
|
|
<Compile Include="Assembler\x86\ClrDirFlag.cs" />
|
|
<Compile Include="Assembler\x86\ClrInterruptFlag.cs" />
|
|
<Compile Include="Assembler\x86\Compare.cs" />
|
|
<Compile Include="Assembler\x86\ConvByteToWord.cs" />
|
|
<Compile Include="Assembler\x86\Dec.cs" />
|
|
<Compile Include="Assembler\x86\Divide.cs" />
|
|
<Compile Include="Assembler\x86\Halt.cs" />
|
|
<Compile Include="Assembler\x86\IDivide.cs" />
|
|
<Compile Include="Assembler\x86\Inc.cs" />
|
|
<Compile Include="Assembler\x86\Interrupt.cs" />
|
|
<Compile Include="Assembler\x86\InterruptReturn.cs" />
|
|
<Compile Include="Assembler\x86\JumpAlways.cs" />
|
|
<Compile Include="Assembler\x86\JumpBase.cs" />
|
|
<Compile Include="Assembler\x86\Move.cs" />
|
|
<Compile Include="Assembler\x86\Multiply.cs" />
|
|
<Compile Include="Assembler\x86\Neg.cs" />
|
|
<Compile Include="Assembler\x86\Noop.cs" />
|
|
<Compile Include="Assembler\x86\Not.cs" />
|
|
<Compile Include="Assembler\x86\Or.cs" />
|
|
<Compile Include="Assembler\x86\Out.cs" />
|
|
<Compile Include="Assembler\x86\Pop.cs" />
|
|
<Compile Include="Assembler\x86\Push.cs" />
|
|
<Compile Include="Assembler\x86\Registers.cs" />
|
|
<Compile Include="Assembler\x86\Stos.cs" />
|
|
<Compile Include="Assembler\x86\Return.cs" />
|
|
<Compile Include="Assembler\x86\RotateThroughCarryRight.cs" />
|
|
<Compile Include="Assembler\x86\SetInterruptFlag.cs" />
|
|
<Compile Include="Assembler\x86\ShiftLeft.cs" />
|
|
<Compile Include="Assembler\x86\ShiftRight.cs" />
|
|
<Compile Include="Assembler\x86\SpecialDebug\DebugStub.cs" />
|
|
<Compile Include="Assembler\x86\SSEAndMMX2\AddSS.cs" />
|
|
<Compile Include="Assembler\x86\SSEAndMMX2\FXSave.cs" />
|
|
<Compile Include="Assembler\x86\SSEAndMMX2\FXStore.cs" />
|
|
<Compile Include="Assembler\x86\SSEAndMMX2\MoveSS.cs" />
|
|
<Compile Include="Assembler\x86\StoreByteInString.cs" />
|
|
<Compile Include="Assembler\x86\StoreSD.cs" />
|
|
<Compile Include="Assembler\x86\StoreWordInString.cs" />
|
|
<Compile Include="Assembler\x86\Sub.cs" />
|
|
<Compile Include="Assembler\x86\SubWithCarry.cs" />
|
|
<Compile Include="Assembler\x86\Test.cs" />
|
|
<Compile Include="Assembler\x86\Xchg.cs" />
|
|
<Compile Include="Assembler\x86\Xor.cs" />
|
|
<Compile Include="Assembler\x86\X\Address.cs" />
|
|
<Compile Include="Assembler\x86\X\AddressDirect.cs" />
|
|
<Compile Include="Assembler\x86\X\AddressIndirect.cs" />
|
|
<Compile Include="Assembler\x86\X\Memory.cs" />
|
|
<Compile Include="Assembler\x86\X\MemoryAction.cs" />
|
|
<Compile Include="Assembler\x86\X\PortNumber.cs" />
|
|
<Compile Include="Assembler\x86\X\Ports.cs" />
|
|
<Compile Include="Assembler\x86\X\Register.cs" />
|
|
<Compile Include="Assembler\x86\X\Register08.cs" />
|
|
<Compile Include="Assembler\x86\X\Register16.cs" />
|
|
<Compile Include="Assembler\x86\X\Register32.cs" />
|
|
<Compile Include="Assembler\x86\X\RegisterAL.cs" />
|
|
<Compile Include="Assembler\x86\X\RegisterDX.cs" />
|
|
<Compile Include="Assembler\x86\X\RegisterEAX.cs" />
|
|
<Compile Include="Assembler\x86\X\RegisterEBP.cs" />
|
|
<Compile Include="Assembler\x86\X\RegisterECX.cs" />
|
|
<Compile Include="Assembler\x86\X\RegisterEDX.cs" />
|
|
<Compile Include="Assembler\x86\X\RegisterESI.cs" />
|
|
<Compile Include="Assembler\x86\X\RegisterESP.cs" />
|
|
<Compile Include="Assembler\x86\X\Y86.cs" />
|
|
<Compile Include="Assembler\_Infra\InfraExtensions.cs" />
|
|
<Compile Include="CustomImplementation\AssemblerImpl.cs" />
|
|
<Compile Include="CustomImplementation\Microsoft\Win32\RegistryKeyImpl.cs" />
|
|
<Compile Include="CustomImplementation\System\ArrayImpl.cs" />
|
|
<Compile Include="CustomImplementation\System\ArrayImplRefs.cs" />
|
|
<Compile Include="CustomImplementation\System\DelegateImpl.cs" />
|
|
<Compile Include="CustomImplementation\System\EnvironmentImpl.cs" />
|
|
<Compile Include="CustomImplementation\System\Globalization\CultureInfoImpl.cs" />
|
|
<Compile Include="CustomImplementation\System\MulticastDelegateImpl.cs" />
|
|
<Compile Include="CustomImplementation\System\RuntimeType.RuntimeTypeCache.cs" />
|
|
<Compile Include="CustomImplementation\System\RuntimeTypeHandle.cs" />
|
|
<Compile Include="CustomImplementation\System\Security\Cryptography\Utils.cs" />
|
|
<Compile Include="CustomImplementation\System\StringImpl.cs" />
|
|
<Compile Include="CustomImplementation\System\RuntimeType.cs" />
|
|
<Compile Include="CustomImplementation\System\StringImplRefs.cs" />
|
|
<Compile Include="DebugSymbol.cs" />
|
|
<Compile Include="DebugSymbolsOld.cs" />
|
|
<Compile Include="GCImplementationRefs.cs" />
|
|
<Compile Include="GCImplementation.cs" />
|
|
<Compile Include="IL\CustomImplementations\System\BooleanImpl.cs" />
|
|
<Compile Include="IL\CustomImplementations\System\ByteImpl.cs" />
|
|
<Compile Include="IL\CustomImplementations\System\CharImpl.cs" />
|
|
<Compile Include="IL\CustomImplementations\System\Drawing1\ColorImpl.cs" />
|
|
<Compile Include="IL\CustomImplementations\System\Drawing1\SRImpl.cs" />
|
|
<Compile Include="IL\CustomImplementations\System\EnumImpl.cs" />
|
|
<Compile Include="IL\CustomImplementations\System\EnvironmentImpl.cs" />
|
|
<Compile Include="IL\CustomImplementations\System\GCImpl.cs" />
|
|
<Compile Include="IL\CustomImplementations\System\Globalization\NumberFormatInfoImpl.cs" />
|
|
<Compile Include="IL\CustomImplementations\System\Int16Impl.cs" />
|
|
<Compile Include="IL\CustomImplementations\System\Int32Impl.cs" />
|
|
<Compile Include="IL\CustomImplementations\System\Int64Impl.cs" />
|
|
<Compile Include="IL\CustomImplementations\System\IntPtrImpl.cs" />
|
|
<Compile Include="IL\CustomImplementations\System\Net\IPAddressImpl.cs" />
|
|
<Compile Include="IL\CustomImplementations\System\Net\SocketAddressImpl.cs" />
|
|
<Compile Include="IL\CustomImplementations\System\NumberImpl.cs" />
|
|
<Compile Include="IL\CustomImplementations\System\ObjectImpl.cs" />
|
|
<Compile Include="IL\CustomImplementations\System\Resource\ResourceManager.cs" />
|
|
<Compile Include="IL\CustomImplementations\System\Runtime\InteropServices\SafeHandleImpl.cs" />
|
|
<Compile Include="IL\CustomImplementations\System\SingleImpl.cs" />
|
|
<Compile Include="IL\CustomImplementations\System\SRImpl.cs" />
|
|
<Compile Include="IL\CustomImplementations\System\Threading\Interlocked.cs" />
|
|
<Compile Include="IL\CustomImplementations\System\UInt16Impl.cs" />
|
|
<Compile Include="IL\CustomImplementations\System\UInt32Impl.cs" />
|
|
<Compile Include="IL\CustomImplementations\System\UInt64Impl.cs" />
|
|
<Compile Include="IL\CustomMethodImplementationOp.cs" />
|
|
<Compile Include="IL\CustomMethodImplementationProxyOp.cs" />
|
|
<Compile Include="IL\Enums.cs" />
|
|
<Compile Include="IL\Extensions.cs" />
|
|
<Compile Include="IL\ILReader.cs" />
|
|
<Compile Include="IL\ILReader.Utilities.cs" />
|
|
<Compile Include="IL\INeedsMethodInfo.cs" />
|
|
<Compile Include="IL\InitVmtImplementationOp.cs" />
|
|
<Compile Include="IL\MainEntryPointOp.cs" />
|
|
<Compile Include="IL\MethodFooterOp.cs" />
|
|
<Compile Include="IL\MethodHeaderOp.cs" />
|
|
<Compile Include="IL\MethodInformation.cs" />
|
|
<Compile Include="IL\Op.cs" />
|
|
<Compile Include="IL\OpCodeAttribute.cs" />
|
|
<Compile Include="IL\OpCodeMap.cs" />
|
|
<Compile Include="IL\PInvokeMethodBodyOp.cs" />
|
|
<Compile Include="IL\TypeInformation.cs" />
|
|
<Compile Include="IL\Utilities.cs" />
|
|
<Compile Include="IL\x86\Add.cs" />
|
|
<Compile Include="IL\x86\Add_Ovf.cs" />
|
|
<Compile Include="IL\x86\Add_Ovf_Un.cs" />
|
|
<Compile Include="IL\x86\And.cs" />
|
|
<Compile Include="IL\x86\Arglist.cs" />
|
|
<Compile Include="IL\x86\Beq.cs" />
|
|
<Compile Include="IL\x86\Bge.cs" />
|
|
<Compile Include="IL\x86\Bge_Un.cs" />
|
|
<Compile Include="IL\x86\Bgt.cs" />
|
|
<Compile Include="IL\x86\Bgt_Un.cs" />
|
|
<Compile Include="IL\x86\Ble.cs" />
|
|
<Compile Include="IL\x86\Ble_Un.cs" />
|
|
<Compile Include="IL\x86\Blt.cs" />
|
|
<Compile Include="IL\x86\Blt_Un.cs" />
|
|
<Compile Include="IL\x86\Bne_Un.cs" />
|
|
<Compile Include="IL\x86\Box.cs" />
|
|
<Compile Include="IL\x86\Br.cs" />
|
|
<Compile Include="IL\x86\Break.cs" />
|
|
<Compile Include="IL\x86\Brfalse.cs" />
|
|
<Compile Include="IL\x86\Brtrue.cs" />
|
|
<Compile Include="IL\x86\Call.cs" />
|
|
<Compile Include="IL\x86\Calli.cs" />
|
|
<Compile Include="IL\x86\Callvirt.cs" />
|
|
<Compile Include="IL\x86\Castclass.cs" />
|
|
<Compile Include="IL\x86\Ceq.cs" />
|
|
<Compile Include="IL\x86\Cgt.cs" />
|
|
<Compile Include="IL\x86\Cgt_Un.cs" />
|
|
<Compile Include="IL\x86\Ckfinite.cs" />
|
|
<Compile Include="IL\x86\Clt.cs" />
|
|
<Compile Include="IL\x86\Clt_Un.cs" />
|
|
<Compile Include="IL\x86\Constrained.cs" />
|
|
<Compile Include="IL\x86\Conv_I.cs" />
|
|
<Compile Include="IL\x86\Conv_I1.cs" />
|
|
<Compile Include="IL\x86\Conv_I2.cs" />
|
|
<Compile Include="IL\x86\Conv_I4.cs" />
|
|
<Compile Include="IL\x86\Conv_I8.cs" />
|
|
<Compile Include="IL\x86\Conv_Ovf_I.cs" />
|
|
<Compile Include="IL\x86\Conv_Ovf_I1.cs" />
|
|
<Compile Include="IL\x86\Conv_Ovf_I1_Un.cs" />
|
|
<Compile Include="IL\x86\Conv_Ovf_I2.cs" />
|
|
<Compile Include="IL\x86\Conv_Ovf_I2_Un.cs" />
|
|
<Compile Include="IL\x86\Conv_Ovf_I4.cs" />
|
|
<Compile Include="IL\x86\Conv_Ovf_I4_Un.cs" />
|
|
<Compile Include="IL\x86\Conv_Ovf_I8.cs" />
|
|
<Compile Include="IL\x86\Conv_Ovf_I8_Un.cs" />
|
|
<Compile Include="IL\x86\Conv_Ovf_I_Un.cs" />
|
|
<Compile Include="IL\x86\Conv_Ovf_U.cs" />
|
|
<Compile Include="IL\x86\Conv_Ovf_U1.cs" />
|
|
<Compile Include="IL\x86\Conv_Ovf_U1_Un.cs" />
|
|
<Compile Include="IL\x86\Conv_Ovf_U2.cs" />
|
|
<Compile Include="IL\x86\Conv_Ovf_U2_Un.cs" />
|
|
<Compile Include="IL\x86\Conv_Ovf_U4.cs" />
|
|
<Compile Include="IL\x86\Conv_Ovf_U4_Un.cs" />
|
|
<Compile Include="IL\x86\Conv_Ovf_U8.cs" />
|
|
<Compile Include="IL\x86\Conv_Ovf_U8_Un.cs" />
|
|
<Compile Include="IL\x86\Conv_Ovf_U_Un.cs" />
|
|
<Compile Include="IL\x86\Conv_R4.cs" />
|
|
<Compile Include="IL\x86\Conv_R8.cs" />
|
|
<Compile Include="IL\x86\Conv_R_Un.cs" />
|
|
<Compile Include="IL\x86\Conv_U.cs" />
|
|
<Compile Include="IL\x86\Conv_U1.cs" />
|
|
<Compile Include="IL\x86\Conv_U2.cs" />
|
|
<Compile Include="IL\x86\Conv_U4.cs" />
|
|
<Compile Include="IL\x86\Conv_U8.cs" />
|
|
<Compile Include="IL\x86\Cpblk.cs" />
|
|
<Compile Include="IL\x86\Cpobj.cs" />
|
|
<Compile Include="IL\x86\CustomImplementations\Diagnostics\BreakAssembler.cs" />
|
|
<Compile Include="IL\x86\CustomImplementations\Diagnostics\DebuggerImpl.cs" />
|
|
<Compile Include="IL\x86\CustomImplementations\Diagnostics\DebugImpl.cs" />
|
|
<Compile Include="IL\x86\CustomImplementations\Diagnostics\DebugImplRefs.cs" />
|
|
<Compile Include="IL\x86\CustomImplementations\Mono\System\StringImpl.cs" />
|
|
<Compile Include="IL\x86\CustomImplementations\System.Runtime.CompilerServices\RuntimeHelpersImpl.cs" />
|
|
<Compile Include="IL\x86\CustomImplementations\System\ArrayImpl.cs" />
|
|
<Compile Include="IL\x86\CustomImplementations\System\Assemblers\Array_InternalCopy.cs" />
|
|
<Compile Include="IL\x86\CustomImplementations\System\Assemblers\Buffer_BlockCopy.cs" />
|
|
<Compile Include="IL\x86\CustomImplementations\System\Assemblers\MulticastDelegate_Invoke.cs" />
|
|
<Compile Include="IL\x86\CustomImplementations\System\Buffer.cs" />
|
|
<Compile Include="IL\x86\CustomImplementations\System\DelegateImpl.cs" />
|
|
<Compile Include="IL\x86\CustomImplementations\System\EnumImpl.cs" />
|
|
<Compile Include="IL\x86\CustomImplementations\System\EventHandlerImpl.cs" />
|
|
<Compile Include="IL\x86\CustomImplementations\System\EventHandlerImplRefs.cs" />
|
|
<Compile Include="IL\x86\CustomImplementations\System\ExceptionImpl.cs" />
|
|
<Compile Include="IL\x86\CustomImplementations\System\MulticastDelegateImpl.cs" />
|
|
<Compile Include="IL\x86\CustomImplementations\System\MulticastDelegateImplRefs.cs" />
|
|
<Compile Include="IL\x86\CustomImplementations\System\ObjectImplRefs.cs" />
|
|
<Compile Include="IL\x86\CustomImplementations\MS\System\StringImpl.cs" />
|
|
<Compile Include="IL\x86\Div.cs" />
|
|
<Compile Include="IL\x86\Div_Un.cs" />
|
|
<Compile Include="IL\x86\Dup.cs" />
|
|
<Compile Include="IL\x86\Endfilter.cs" />
|
|
<Compile Include="IL\x86\Endfinally.cs" />
|
|
<Compile Include="IL\x86\Initblk.cs" />
|
|
<Compile Include="IL\x86\Initobj.cs" />
|
|
<Compile Include="IL\x86\Isinst.cs" />
|
|
<Compile Include="IL\x86\Jmp.cs" />
|
|
<Compile Include="IL\x86\Ldarg.cs" />
|
|
<Compile Include="IL\x86\Ldarga.cs" />
|
|
<Compile Include="IL\x86\Ldc_I4.cs" />
|
|
<Compile Include="IL\x86\Ldc_I8.cs" />
|
|
<Compile Include="IL\x86\Ldc_R4.cs" />
|
|
<Compile Include="IL\x86\Ldc_R8.cs" />
|
|
<Compile Include="IL\x86\Ldelem.cs" />
|
|
<Compile Include="IL\x86\Ldelema.cs" />
|
|
<Compile Include="IL\x86\Ldelem_I.cs" />
|
|
<Compile Include="IL\x86\Ldelem_I1.cs" />
|
|
<Compile Include="IL\x86\Ldelem_I2.cs" />
|
|
<Compile Include="IL\x86\Ldelem_I4.cs" />
|
|
<Compile Include="IL\x86\Ldelem_I8.cs" />
|
|
<Compile Include="IL\x86\Ldelem_R4.cs" />
|
|
<Compile Include="IL\x86\Ldelem_R8.cs" />
|
|
<Compile Include="IL\x86\Ldelem_Ref.cs" />
|
|
<Compile Include="IL\x86\Ldelem_U1.cs" />
|
|
<Compile Include="IL\x86\Ldelem_U2.cs" />
|
|
<Compile Include="IL\x86\Ldelem_U4.cs" />
|
|
<Compile Include="IL\x86\Ldfld.cs" />
|
|
<Compile Include="IL\x86\Ldflda.cs" />
|
|
<Compile Include="IL\x86\Ldftn.cs" />
|
|
<Compile Include="IL\x86\Ldind_I.cs" />
|
|
<Compile Include="IL\x86\Ldind_I1.cs" />
|
|
<Compile Include="IL\x86\Ldind_I2.cs" />
|
|
<Compile Include="IL\x86\Ldind_I4.cs" />
|
|
<Compile Include="IL\x86\Ldind_I8.cs" />
|
|
<Compile Include="IL\x86\Ldind_R4.cs" />
|
|
<Compile Include="IL\x86\Ldind_R8.cs" />
|
|
<Compile Include="IL\x86\Ldind_Ref.cs" />
|
|
<Compile Include="IL\x86\Ldind_U1.cs" />
|
|
<Compile Include="IL\x86\Ldind_U2.cs" />
|
|
<Compile Include="IL\x86\Ldind_U4.cs" />
|
|
<Compile Include="IL\x86\Ldlen.cs" />
|
|
<Compile Include="IL\x86\Ldloc.cs" />
|
|
<Compile Include="IL\x86\Ldloca.cs" />
|
|
<Compile Include="IL\x86\Ldnull.cs" />
|
|
<Compile Include="IL\x86\Ldobj.cs" />
|
|
<Compile Include="IL\x86\Ldsfld.cs" />
|
|
<Compile Include="IL\x86\Ldsflda.cs" />
|
|
<Compile Include="IL\x86\LdStr.cs" />
|
|
<Compile Include="IL\x86\Ldtoken.cs" />
|
|
<Compile Include="IL\x86\Ldvirtftn.cs" />
|
|
<Compile Include="IL\x86\Leave.cs" />
|
|
<Compile Include="IL\x86\Localloc.cs" />
|
|
<Compile Include="IL\x86\Mkrefany.cs" />
|
|
<Compile Include="IL\x86\Mul.cs" />
|
|
<Compile Include="IL\x86\Mul_Ovf.cs" />
|
|
<Compile Include="IL\x86\Mul_Ovf_Un.cs" />
|
|
<Compile Include="IL\x86\Neg.cs" />
|
|
<Compile Include="IL\x86\Newarr.cs" />
|
|
<Compile Include="IL\x86\Newobj.cs" />
|
|
<Compile Include="IL\x86\Nop.cs" />
|
|
<Compile Include="IL\x86\Not.cs" />
|
|
<Compile Include="IL\x86\Op.cs" />
|
|
<Compile Include="IL\x86\Or.cs" />
|
|
<Compile Include="IL\x86\Pop.cs" />
|
|
<Compile Include="IL\x86\Readonly.cs" />
|
|
<Compile Include="IL\x86\Refanytype.cs" />
|
|
<Compile Include="IL\x86\Refanyval.cs" />
|
|
<Compile Include="IL\x86\Rem.cs" />
|
|
<Compile Include="IL\x86\Rem_Un.cs" />
|
|
<Compile Include="IL\x86\Ret.cs" />
|
|
<Compile Include="IL\x86\Rethrow.cs" />
|
|
<Compile Include="IL\x86\Shl.cs" />
|
|
<Compile Include="IL\x86\Shr.cs" />
|
|
<Compile Include="IL\x86\Shr_Un.cs" />
|
|
<Compile Include="IL\x86\Sizeof.cs" />
|
|
<Compile Include="IL\x86\Starg.cs" />
|
|
<Compile Include="IL\x86\Stelem.cs" />
|
|
<Compile Include="IL\x86\Stelem_I.cs" />
|
|
<Compile Include="IL\x86\Stelem_I1.cs" />
|
|
<Compile Include="IL\x86\Stelem_I2.cs" />
|
|
<Compile Include="IL\x86\Stelem_I4.cs" />
|
|
<Compile Include="IL\x86\Stelem_I8.cs" />
|
|
<Compile Include="IL\x86\Stelem_R4.cs" />
|
|
<Compile Include="IL\x86\Stelem_R8.cs" />
|
|
<Compile Include="IL\x86\Stelem_Ref.cs" />
|
|
<Compile Include="IL\x86\Stfld.cs" />
|
|
<Compile Include="IL\x86\Stind_I.cs" />
|
|
<Compile Include="IL\x86\Stind_I1.cs" />
|
|
<Compile Include="IL\x86\Stind_I2.cs" />
|
|
<Compile Include="IL\x86\Stind_I4.cs" />
|
|
<Compile Include="IL\x86\Stind_I8.cs" />
|
|
<Compile Include="IL\x86\Stind_R4.cs" />
|
|
<Compile Include="IL\x86\Stind_R8.cs" />
|
|
<Compile Include="IL\x86\Stind_Ref.cs" />
|
|
<Compile Include="IL\x86\Stloc.cs" />
|
|
<Compile Include="IL\x86\Stobj.cs" />
|
|
<Compile Include="IL\x86\Stsfld.cs" />
|
|
<Compile Include="IL\x86\Sub.cs" />
|
|
<Compile Include="IL\x86\Sub_Ovf.cs" />
|
|
<Compile Include="IL\x86\Sub_Ovf_Un.cs" />
|
|
<Compile Include="IL\x86\Switch.cs" />
|
|
<Compile Include="IL\x86\Throw.cs" />
|
|
<Compile Include="IL\x86\Unaligned.cs" />
|
|
<Compile Include="IL\x86\Unbox.cs" />
|
|
<Compile Include="IL\x86\Unbox_Any.cs" />
|
|
<Compile Include="IL\x86\Volatile.cs" />
|
|
<Compile Include="IL\x86\X86CustomMethodImplementationOp.cs" />
|
|
<Compile Include="IL\x86\X86CustomMethodImplementationProxyOp.cs" />
|
|
<Compile Include="IL\x86\X86InitVmtImplementationOp.cs" />
|
|
<Compile Include="IL\x86\X86MainEntryPointOp.cs" />
|
|
<Compile Include="IL\x86\X86MethodFooterOp.cs" />
|
|
<Compile Include="IL\x86\X86MethodHeaderOp.cs" />
|
|
<Compile Include="IL\x86\X86OpCodeMap.cs" />
|
|
<Compile Include="IL\x86\Xor.cs" />
|
|
<Compile Include="PassedEngineValue.cs" />
|
|
<Compile Include="Plugs\AssemblerMethod.cs" />
|
|
<Compile Include="Plugs\FieldAccessAttribute.cs" />
|
|
<Compile Include="Plugs\PlugAttribute.cs" />
|
|
<Compile Include="Plugs\PlugFieldAttribute.cs" />
|
|
<Compile Include="Plugs\PlugMethodAttribute.cs" />
|
|
<Compile Include="ReadOnlyDictionary.cs" />
|
|
<Compile Include="Utilities.cs" />
|
|
<Compile Include="VTablesImpl.cs" />
|
|
<Compile Include="VTablesImplRefs.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="Cosmos.snk" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<WCFMetadata Include="Service References\" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Folder Include="Assembler\x86\186-188AndUp\" />
|
|
<Folder Include="Assembler\x86\286Exclusive\" />
|
|
<Folder Include="Assembler\x86\386Exclusive\" />
|
|
<Folder Include="Assembler\x86\3DNow!2\Geode\" />
|
|
<Folder Include="Assembler\x86\3DNow!\" />
|
|
<Folder Include="Assembler\x86\8086Exclusive\" />
|
|
<Folder Include="Assembler\x86\AMD-MMX\" />
|
|
<Folder Include="Assembler\x86\AMD-V_AndUp\" />
|
|
<Folder Include="Assembler\x86\Cyrix-EMMX\" />
|
|
<Folder Include="Assembler\x86\K6-2AndUp\" />
|
|
<Folder Include="Assembler\x86\MMX\" />
|
|
<Folder Include="Assembler\x86\PentiumAndUp\" />
|
|
<Folder Include="Assembler\x86\PentiumMMXAndUp\" />
|
|
<Folder Include="Assembler\x86\PentiumProAndUp\" />
|
|
<Folder Include="Assembler\x86\SSE2\" />
|
|
<Folder Include="Assembler\x86\SSE3\" />
|
|
<Folder Include="Assembler\x86\SSE4a\" />
|
|
<Folder Include="Assembler\x86\SSE4dot1\" />
|
|
<Folder Include="Assembler\x86\SSE4dot2\" />
|
|
<Folder Include="Assembler\x86\SSSE3\" />
|
|
<Folder Include="Assembler\x86\VTAndUp\" />
|
|
<Folder Include="Assembler\x86\x87\" />
|
|
<Folder Include="IL\x86\CustomImplementations\Generic\" />
|
|
</ItemGroup>
|
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
|
Other similar extension points exist, see Microsoft.Common.targets.
|
|
<Target Name="BeforeBuild">
|
|
</Target>
|
|
<Target Name="AfterBuild">
|
|
</Target>
|
|
-->
|
|
</Project> |