Cosmos/source2/IL2PCU/Cosmos.IL2CPU/Cosmos.IL2CPU.csproj
kudzu_cp e6dffc1c69
2009-08-30 21:24:16 +00:00

108 lines
No EOL
4.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>
</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.cs" />
<Compile Include="BaseAssemblerElement.cs" />
<Compile Include="Comment.cs" />
<Compile Include="DataMember.cs" />
<Compile Include="ElementReference.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="Instruction.cs" />
<Compile Include="Label.cs" />
<Compile Include="MethodInfo.cs" />
<Compile Include="MethodInfoLabelGenerator.cs" />
<Compile Include="OpCodeAttribute.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="ILScanner.cs" />
<Compile Include="ReaderWriterLocker.cs" />
<Compile Include="StackContents.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>
</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>