mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-10 02:02:30 +00:00
343 lines
No EOL
15 KiB
XML
343 lines
No EOL
15 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
|
<PropertyGroup>
|
|
<MinimumVisualStudioVersion>14.0</MinimumVisualStudioVersion>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
<ProjectGuid>{A9F6ABE9-07E9-40EB-A370-019F1878296F}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
<RootNamespace>Cosmos.IL2CPU</RootNamespace>
|
|
<AssemblyName>Cosmos.IL2CPU</AssemblyName>
|
|
<DefaultLanguage>en-US</DefaultLanguage>
|
|
<FileAlignment>512</FileAlignment>
|
|
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
|
<TargetFrameworkProfile>
|
|
</TargetFrameworkProfile>
|
|
<TargetFrameworkVersion>v5.0</TargetFrameworkVersion>
|
|
</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>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<SignAssembly>true</SignAssembly>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<AssemblyOriginatorKeyFile>..\..\Cosmos.snk</AssemblyOriginatorKeyFile>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<None Include="..\..\Cosmos.snk">
|
|
<Link>Cosmos.snk</Link>
|
|
</None>
|
|
<None Include=".editorconfig" />
|
|
<None Include="ILOpCodes\.editorconfig" />
|
|
<None Include="Cosmos.IL2CPU.project.json" />
|
|
<!-- A reference to the entire .NET Framework is automatically included -->
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="AppAssembler.cs" />
|
|
<Compile Include="AppAssemblerRingsCheck.cs" />
|
|
<Compile Include="CompilerEngine.cs" />
|
|
<Compile Include="CompilerExtensionAttribute.cs" />
|
|
<Compile Include="CompilerExtensionBase.cs" />
|
|
<Compile Include="CompilerHelpers.cs" />
|
|
<Compile Include="CosmosAssembler.cs" />
|
|
<Compile Include="ElfHash.cs" />
|
|
<Compile Include="ExceptionHelper.cs" />
|
|
<Compile Include="Extensions.cs" />
|
|
<Compile Include="Extensions\ExceptionRegionExtensions.cs" />
|
|
<Compile Include="Extensions\ModuleExtensions.cs" />
|
|
<Compile Include="GCImplementationRefs.cs" />
|
|
<Compile Include="Heap.cs" />
|
|
<Compile Include="ILOp.cs" />
|
|
<Compile Include="ILOpCode.cs" />
|
|
<Compile Include="ILOpCodes\BoxOfT.cs" />
|
|
<Compile Include="ILOpCodes\NullRef.cs" />
|
|
<Compile Include="ILOpCodes\OpBranch.cs" />
|
|
<Compile Include="ILOpCodes\OpDouble.cs" />
|
|
<Compile Include="ILOpCodes\OpField.cs" />
|
|
<Compile Include="ILOpCodes\OpInt.cs" />
|
|
<Compile Include="ILOpCodes\OpInt64.cs" />
|
|
<Compile Include="ILOpCodes\OpMethod.cs" />
|
|
<Compile Include="ILOpCodes\OpNone.cs" />
|
|
<Compile Include="ILOpCodes\OpSig.cs" />
|
|
<Compile Include="ILOpCodes\OpSingle.cs" />
|
|
<Compile Include="ILOpCodes\OpString.cs" />
|
|
<Compile Include="ILOpCodes\OpSwitch.cs" />
|
|
<Compile Include="ILOpCodes\OpToken.cs" />
|
|
<Compile Include="ILOpCodes\OpType.cs" />
|
|
<Compile Include="ILOpCodes\OpVar.cs" />
|
|
<Compile Include="ILReader.cs" />
|
|
<Compile Include="ILScanner.cs" />
|
|
<Compile Include="IL\Add.cs" />
|
|
<Compile Include="IL\Add_Ovf.cs" />
|
|
<Compile Include="IL\Add_Ovf_Un.cs" />
|
|
<Compile Include="IL\And.cs" />
|
|
<Compile Include="IL\Arglist.cs" />
|
|
<Compile Include="IL\Box.cs" />
|
|
<Compile Include="IL\Br.cs" />
|
|
<Compile Include="IL\Branch.cs" />
|
|
<Compile Include="IL\Break.cs" />
|
|
<Compile Include="IL\Brfalse.cs" />
|
|
<Compile Include="IL\Brtrue.cs" />
|
|
<Compile Include="IL\Call.cs" />
|
|
<Compile Include="IL\Calli.cs" />
|
|
<Compile Include="IL\Callvirt.cs" />
|
|
<Compile Include="IL\Castclass.cs" />
|
|
<Compile Include="IL\Ceq.cs" />
|
|
<Compile Include="IL\Cgt.cs" />
|
|
<Compile Include="IL\Cgt_Un.cs" />
|
|
<Compile Include="IL\Ckfinite.cs" />
|
|
<Compile Include="IL\Clt.cs" />
|
|
<Compile Include="IL\Clt_Un.cs" />
|
|
<Compile Include="IL\Constrained.cs" />
|
|
<Compile Include="IL\Conv_I.cs" />
|
|
<Compile Include="IL\Conv_I1.cs" />
|
|
<Compile Include="IL\Conv_I2.cs" />
|
|
<Compile Include="IL\Conv_I4.cs" />
|
|
<Compile Include="IL\Conv_I8.cs" />
|
|
<Compile Include="IL\Conv_Ovf_I.cs" />
|
|
<Compile Include="IL\Conv_Ovf_I1.cs" />
|
|
<Compile Include="IL\Conv_Ovf_I1_Un.cs" />
|
|
<Compile Include="IL\Conv_Ovf_I2.cs" />
|
|
<Compile Include="IL\Conv_Ovf_I2_Un.cs" />
|
|
<Compile Include="IL\Conv_Ovf_I4.cs" />
|
|
<Compile Include="IL\Conv_Ovf_I4_Un.cs" />
|
|
<Compile Include="IL\Conv_Ovf_I8.cs" />
|
|
<Compile Include="IL\Conv_Ovf_I8_Un.cs" />
|
|
<Compile Include="IL\Conv_Ovf_I_Un.cs" />
|
|
<Compile Include="IL\Conv_Ovf_U.cs" />
|
|
<Compile Include="IL\Conv_Ovf_U1.cs" />
|
|
<Compile Include="IL\Conv_Ovf_U1_Un.cs" />
|
|
<Compile Include="IL\Conv_Ovf_U2.cs" />
|
|
<Compile Include="IL\Conv_Ovf_U2_Un.cs" />
|
|
<Compile Include="IL\Conv_Ovf_U4.cs" />
|
|
<Compile Include="IL\Conv_Ovf_U4_Un.cs" />
|
|
<Compile Include="IL\Conv_Ovf_U8.cs" />
|
|
<Compile Include="IL\Conv_Ovf_U8_Un.cs" />
|
|
<Compile Include="IL\Conv_Ovf_U_Un.cs" />
|
|
<Compile Include="IL\Conv_R4.cs" />
|
|
<Compile Include="IL\Conv_R8.cs" />
|
|
<Compile Include="IL\Conv_R_Un.cs" />
|
|
<Compile Include="IL\Conv_U.cs" />
|
|
<Compile Include="IL\Conv_U1.cs" />
|
|
<Compile Include="IL\Conv_U2.cs" />
|
|
<Compile Include="IL\Conv_U4.cs" />
|
|
<Compile Include="IL\Conv_U8.cs" />
|
|
<Compile Include="IL\Cpblk.cs" />
|
|
<Compile Include="IL\Cpobj.cs" />
|
|
<Compile Include="IL\Div.cs" />
|
|
<Compile Include="IL\Div_Un.cs" />
|
|
<Compile Include="IL\Dup.cs" />
|
|
<Compile Include="IL\Endfilter.cs" />
|
|
<Compile Include="IL\Endfinally.cs" />
|
|
<Compile Include="IL\FieldInfo.cs" />
|
|
<Compile Include="IL\Initblk.cs" />
|
|
<Compile Include="IL\Initobj.cs" />
|
|
<Compile Include="IL\Isinst.cs" />
|
|
<Compile Include="IL\Jmp.cs" />
|
|
<Compile Include="IL\Ldarg.cs" />
|
|
<Compile Include="IL\Ldarga.cs" />
|
|
<Compile Include="IL\Ldc_I4.cs" />
|
|
<Compile Include="IL\Ldc_I8.cs" />
|
|
<Compile Include="IL\Ldc_R4.cs" />
|
|
<Compile Include="IL\Ldc_R8.cs" />
|
|
<Compile Include="IL\Ldelem.cs" />
|
|
<Compile Include="IL\Ldelema.cs" />
|
|
<Compile Include="IL\Ldelem_I.cs" />
|
|
<Compile Include="IL\Ldelem_I1.cs" />
|
|
<Compile Include="IL\Ldelem_I2.cs" />
|
|
<Compile Include="IL\Ldelem_I4.cs" />
|
|
<Compile Include="IL\Ldelem_I8.cs" />
|
|
<Compile Include="IL\Ldelem_R4.cs" />
|
|
<Compile Include="IL\Ldelem_R8.cs" />
|
|
<Compile Include="IL\Ldelem_Ref.cs" />
|
|
<Compile Include="IL\Ldelem_U1.cs" />
|
|
<Compile Include="IL\Ldelem_U2.cs" />
|
|
<Compile Include="IL\Ldelem_U4.cs" />
|
|
<Compile Include="IL\Ldfld.cs" />
|
|
<Compile Include="IL\Ldflda.cs" />
|
|
<Compile Include="IL\Ldftn.cs" />
|
|
<Compile Include="IL\Ldind_I.cs" />
|
|
<Compile Include="IL\Ldind_I1.cs" />
|
|
<Compile Include="IL\Ldind_I2.cs" />
|
|
<Compile Include="IL\Ldind_I4.cs" />
|
|
<Compile Include="IL\Ldind_I8.cs" />
|
|
<Compile Include="IL\Ldind_R4.cs" />
|
|
<Compile Include="IL\Ldind_R8.cs" />
|
|
<Compile Include="IL\Ldind_Ref.cs" />
|
|
<Compile Include="IL\Ldind_U1.cs" />
|
|
<Compile Include="IL\Ldind_U2.cs" />
|
|
<Compile Include="IL\Ldind_U4.cs" />
|
|
<Compile Include="IL\Ldlen.cs" />
|
|
<Compile Include="IL\Ldloc.cs" />
|
|
<Compile Include="IL\Ldloca.cs" />
|
|
<Compile Include="IL\Ldnull.cs" />
|
|
<Compile Include="IL\Ldobj.cs" />
|
|
<Compile Include="IL\Ldsfld.cs" />
|
|
<Compile Include="IL\Ldsflda.cs" />
|
|
<Compile Include="IL\Ldstr.cs" />
|
|
<Compile Include="IL\Ldtoken.cs" />
|
|
<Compile Include="IL\Ldvirtftn.cs" />
|
|
<Compile Include="IL\Leave.cs" />
|
|
<Compile Include="IL\Localloc.cs" />
|
|
<Compile Include="IL\Mkrefany.cs" />
|
|
<Compile Include="IL\Mul.cs" />
|
|
<Compile Include="IL\Mul_Ovf.cs" />
|
|
<Compile Include="IL\Mul_Ovf_Un.cs" />
|
|
<Compile Include="IL\Neg.cs" />
|
|
<Compile Include="IL\Newarr.cs" />
|
|
<Compile Include="IL\Newobj.cs" />
|
|
<Compile Include="IL\Nop.cs" />
|
|
<Compile Include="IL\Not.cs" />
|
|
<Compile Include="IL\Or.cs" />
|
|
<Compile Include="IL\Pop.cs" />
|
|
<Compile Include="IL\Readonly.cs" />
|
|
<Compile Include="IL\Refanytype.cs" />
|
|
<Compile Include="IL\Refanyval.cs" />
|
|
<Compile Include="IL\Rem.cs" />
|
|
<Compile Include="IL\Rem_Un.cs" />
|
|
<Compile Include="IL\Ret.cs" />
|
|
<Compile Include="IL\Rethrow.cs" />
|
|
<Compile Include="IL\Shl.cs" />
|
|
<Compile Include="IL\Shr.cs" />
|
|
<Compile Include="IL\Shr_Un.cs" />
|
|
<Compile Include="IL\Sizeof.cs" />
|
|
<Compile Include="IL\Starg.cs" />
|
|
<Compile Include="IL\Stelem.cs" />
|
|
<Compile Include="IL\Stelem_I.cs" />
|
|
<Compile Include="IL\Stelem_I1.cs" />
|
|
<Compile Include="IL\Stelem_I2.cs" />
|
|
<Compile Include="IL\Stelem_I4.cs" />
|
|
<Compile Include="IL\Stelem_I8.cs" />
|
|
<Compile Include="IL\Stelem_R4.cs" />
|
|
<Compile Include="IL\Stelem_R8.cs" />
|
|
<Compile Include="IL\Stelem_Ref.cs" />
|
|
<Compile Include="IL\Stfld.cs" />
|
|
<Compile Include="IL\Stind_I.cs" />
|
|
<Compile Include="IL\Stind_I1.cs" />
|
|
<Compile Include="IL\Stind_I2.cs" />
|
|
<Compile Include="IL\Stind_I4.cs" />
|
|
<Compile Include="IL\Stind_I8.cs" />
|
|
<Compile Include="IL\Stind_R4.cs" />
|
|
<Compile Include="IL\Stind_R8.cs" />
|
|
<Compile Include="IL\Stind_Ref.cs" />
|
|
<Compile Include="IL\Stloc.cs" />
|
|
<Compile Include="IL\Stobj.cs" />
|
|
<Compile Include="IL\Stsfld.cs" />
|
|
<Compile Include="IL\Sub.cs" />
|
|
<Compile Include="IL\Sub_Ovf.cs" />
|
|
<Compile Include="IL\Sub_Ovf_Un.cs" />
|
|
<Compile Include="IL\Switch.cs" />
|
|
<Compile Include="IL\Throw.cs" />
|
|
<Compile Include="IL\Unaligned.cs" />
|
|
<Compile Include="IL\Unbox.cs" />
|
|
<Compile Include="IL\Unbox_Any.cs" />
|
|
<Compile Include="IL\Volatile.cs" />
|
|
<Compile Include="IL\Xor.cs" />
|
|
<Compile Include="MethodBaseComparer.cs" />
|
|
<Compile Include="MethodInfo.cs" />
|
|
<Compile Include="OpCodeAttribute.cs" />
|
|
<Compile Include="Optimizer.cs" />
|
|
<Compile Include="OurHashSet.cs" />
|
|
<Compile Include="PlugInfo.cs" />
|
|
<Compile Include="PlugManager.cs" />
|
|
<Compile Include="Plugs\Diagnostics\DebuggerImpl.cs" />
|
|
<Compile Include="Plugs\Diagnostics\DebugImpl.cs" />
|
|
<Compile Include="Plugs\System\EnvironmentImpl.cs" />
|
|
<Compile Include="Plugs\System\EventHandlerImpl.cs" />
|
|
<Compile Include="Plugs\System\ExceptionImpl.cs" />
|
|
<Compile Include="Plugs\System\GCImpl.cs" />
|
|
<Compile Include="Plugs\System\Globalization\CultureInfoImpl.cs" />
|
|
<Compile Include="Plugs\System\Globalization\NumberFormatInfoImpl.cs" />
|
|
<Compile Include="Plugs\System\ObjectImpl.cs" />
|
|
<Compile Include="Plugs\System\OutOfMemoryExceptionImpl.cs" />
|
|
<Compile Include="Plugs\System\Resource\ResourceManager.cs" />
|
|
<Compile Include="Plugs\System\RuntimeType.cs" />
|
|
<Compile Include="Plugs\System\RuntimeType.RuntimeTypeCache.cs" />
|
|
<Compile Include="Plugs\System\RuntimeTypeHandle.cs" />
|
|
<Compile Include="Plugs\System\Runtime\CompilerServices\RuntimeHelpers.cs" />
|
|
<Compile Include="Plugs\System\Runtime\CompilerServices\RuntimeHelpersImpl.cs" />
|
|
<Compile Include="Plugs\System\Runtime\InteropServices\SafeHandleImpl.cs" />
|
|
<Compile Include="Plugs\System\Threading\Interlocked.cs" />
|
|
<Compile Include="Plugs\System\Threading\ThreadImpl.cs" />
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
<Compile Include="ReflectionUtilities.cs" />
|
|
<Compile Include="RuntimeEngineImpl.cs" />
|
|
<Compile Include="RuntimeEngineRefs.cs" />
|
|
<Compile Include="SkipList.cs" />
|
|
<Compile Include="VTablesImpl.cs" />
|
|
<Compile Include="VTablesImpl.Debug.cs" />
|
|
<Compile Include="VTablesImplRefs.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="ReadMe.txt" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Cosmos.Assembler\Cosmos.Assembler.csproj">
|
|
<Project>{c29ccc1c-5af2-4ce5-96e5-86e083bc03bd}</Project>
|
|
<Name>Cosmos.Assembler</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\Cosmos.Build.Common\Cosmos.Build.Common.csproj">
|
|
<Project>{0462e82b-8c29-41a9-8265-9c89038adb29}</Project>
|
|
<Name>Cosmos.Build.Common</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\Cosmos.Common\Cosmos.Common.csproj">
|
|
<Project>{b0957633-03c5-4531-9358-14d520f7ff78}</Project>
|
|
<Name>Cosmos.Common</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\Cosmos.Core.Common\Cosmos.Core.Common.csproj">
|
|
<Project>{5a38be55-d402-4de6-bb2b-f0360da1c1bd}</Project>
|
|
<Name>Cosmos.Core.Common</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\Cosmos.Debug.DebugStub\Cosmos.Debug.DebugStub.csproj">
|
|
<Project>{72eefbfe-af88-4e16-ad6c-7d9857cdc32c}</Project>
|
|
<Name>Cosmos.Debug.DebugStub</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\Cosmos.Debug.Kernel\Cosmos.Debug.Kernel.csproj">
|
|
<Project>{dc93aed0-a9bf-42c4-ac7b-fa9b2063e5d1}</Project>
|
|
<Name>Cosmos.Debug.Kernel</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\Cosmos.Debug.Symbols\Cosmos.Debug.Symbols.csproj">
|
|
<Project>{2e740096-911f-47d0-a46d-998dbb76fc5d}</Project>
|
|
<Name>Cosmos.Debug.Symbols</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\Cosmos.IL2CPU.Plugs\Cosmos.IL2CPU.Plugs.csproj">
|
|
<Project>{12a519aa-7af2-4873-8ad1-fab5a76448b1}</Project>
|
|
<Name>Cosmos.IL2CPU.Plugs</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\Cosmos.System\Cosmos.System.csproj">
|
|
<Project>{19d31813-caf2-42d9-a1e3-448913de6ce2}</Project>
|
|
<Name>Cosmos.System</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\XSharp.Common\XSharp.Common.csproj">
|
|
<Project>{73428975-9677-48a6-8481-6d5c39c64e4a}</Project>
|
|
<Name>XSharp.Common</Name>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.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> |