mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 14:02:19 +00:00
128 lines
No EOL
5.8 KiB
XML
128 lines
No EOL
5.8 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>{239E33A7-F0C3-4801-85CA-4D8F89A31DC0}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
<RootNamespace>Cosmos.IL2CPU</RootNamespace>
|
|
<AssemblyName>Cosmos.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>
|
|
</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>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
|
<Reference Include="Microsoft.VisualStudio.TeamSystem.Data.UnitTesting, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
|
<Reference Include="System" />
|
|
<Reference Include="System.Configuration" />
|
|
<Reference Include="System.Core">
|
|
<RequiredTargetFramework>3.5</RequiredTargetFramework>
|
|
</Reference>
|
|
<Reference Include="System.Xml.Linq">
|
|
<RequiredTargetFramework>3.5</RequiredTargetFramework>
|
|
</Reference>
|
|
<Reference Include="System.Data.DataSetExtensions">
|
|
<RequiredTargetFramework>3.5</RequiredTargetFramework>
|
|
</Reference>
|
|
<Reference Include="System.Data" />
|
|
<Reference Include="System.Xml" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="Assembler\Assembler.cs" />
|
|
<Compile Include="Assembler\BaseAssemblerElement.cs" />
|
|
<Compile Include="Assembler\Comment.cs" />
|
|
<Compile Include="Assembler\DataEndIfDefined.cs" />
|
|
<Compile Include="Assembler\DataIfDefined.cs" />
|
|
<Compile Include="Assembler\DataIfNotDefined.cs" />
|
|
<Compile Include="Assembler\DataMember.cs" />
|
|
<Compile Include="Assembler\ElementReference.cs" />
|
|
<Compile Include="ElfHash.cs" />
|
|
<Compile Include="Assembler\IDefine.cs" />
|
|
<Compile Include="Assembler\IEndIfDefined.cs" />
|
|
<Compile Include="Assembler\IIfDefined.cs" />
|
|
<Compile Include="Assembler\IIfNotDefined.cs" />
|
|
<Compile Include="ILOp.cs" />
|
|
<Compile Include="ILOpCode.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="Assembler\InfraExtensions.cs" />
|
|
<Compile Include="Assembler\Instruction.cs" />
|
|
<Compile Include="Assembler\Label.cs" />
|
|
<Compile Include="Assembler\MethodAndTypeLabelsHolder.cs" />
|
|
<Compile Include="MethodInfo.cs" />
|
|
<Compile Include="Assembler\MethodInfoLabelGenerator.cs" />
|
|
<Compile Include="OpCodeAttribute.cs" />
|
|
<Compile Include="PlugInfo.cs" />
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
<Compile Include="ILScanner.cs" />
|
|
<Compile Include="StackContents.cs" />
|
|
<Compile Include="Assembler\TypeComparer.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="ReadMe.txt" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\..\source\Compiler\Indy.IL2CPU.Assembler\Indy.IL2CPU.Assembler.csproj">
|
|
<Project>{5A1E9D16-BF71-4D8E-9389-3476056E4566}</Project>
|
|
<Name>Indy.IL2CPU.Assembler</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\..\..\source\Compiler\Indy.IL2CPU.X86\Indy.IL2CPU.X86.csproj">
|
|
<Project>{5E70F7D9-388A-43C2-8D9B-A4C382A8278D}</Project>
|
|
<Name>Indy.IL2CPU.X86</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\..\..\source\Indy.IL2CPU\Indy.IL2CPU.csproj">
|
|
<Project>{21243B63-9CD0-4573-9C58-AF4B4AEF9D57}</Project>
|
|
<Name>Indy.IL2CPU</Name>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="Cosmos.snk" />
|
|
</ItemGroup>
|
|
<Import Project="$(MSBuildToolsPath)\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> |