Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/ikvm-fork.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjfrijters <jfrijters>2010-01-25 08:29:31 +0300
committerjfrijters <jfrijters>2010-01-25 08:29:31 +0300
commit198c9d70eac5d6d88718bfedee19314edf77661b (patch)
treecf6e13cb042f93d214c145fd405fefc19cb21b59 /reflect/IKVM.Reflection.csproj
parent2966abd1dcb1eaa8fe692094f657943a9f2d21be (diff)
New IKVM.Reflection implementation.
Diffstat (limited to 'reflect/IKVM.Reflection.csproj')
-rw-r--r--reflect/IKVM.Reflection.csproj140
1 files changed, 140 insertions, 0 deletions
diff --git a/reflect/IKVM.Reflection.csproj b/reflect/IKVM.Reflection.csproj
new file mode 100644
index 00000000..4ae0a54f
--- /dev/null
+++ b/reflect/IKVM.Reflection.csproj
@@ -0,0 +1,140 @@
+<?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>{4CB170EF-DFE6-4A56-9E1B-A85449E827A7}</ProjectGuid>
+ <OutputType>Library</OutputType>
+ <AppDesignerFolder>Properties</AppDesignerFolder>
+ <RootNamespace>IKVM.Reflection</RootNamespace>
+ <AssemblyName>IKVM.Reflection</AssemblyName>
+ <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
+ <FileAlignment>512</FileAlignment>
+ <TargetFrameworkSubset>
+ </TargetFrameworkSubset>
+ <SccProjectName>
+ </SccProjectName>
+ <SccLocalPath>
+ </SccLocalPath>
+ <SccAuxPath>
+ </SccAuxPath>
+ <SccProvider>
+ </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>
+ <Compile Include="AmbiguousMatchException.cs" />
+ <Compile Include="Assembly.cs" />
+ <Compile Include="AssemblyName.cs" />
+ <Compile Include="BadImageFormatException.cs" />
+ <Compile Include="Binder.cs" />
+ <Compile Include="ConstructorInfo.cs" />
+ <Compile Include="CustomAttributeData.cs" />
+ <Compile Include="CustomAttributeNamedArgument.cs" />
+ <Compile Include="CustomAttributeTypedArgument.cs" />
+ <Compile Include="Emit\AssemblyBuilder.cs" />
+ <Compile Include="Emit\ConstructorBuilder.cs" />
+ <Compile Include="Emit\CustomAttributeBuilder.cs" />
+ <Compile Include="Emit\EnumBuilder.cs" />
+ <Compile Include="Emit\Enums.cs" />
+ <Compile Include="Emit\EventBuilder.cs" />
+ <Compile Include="Emit\FieldBuilder.cs" />
+ <Compile Include="Emit\ILGenerator.cs" />
+ <Compile Include="Emit\MethodBuilder.cs" />
+ <Compile Include="Emit\ModuleBuilder.cs" />
+ <Compile Include="Emit\OpCode.cs" />
+ <Compile Include="Emit\OpCodes.cs" />
+ <Compile Include="Emit\ParameterBuilder.cs" />
+ <Compile Include="Emit\PropertyBuilder.cs" />
+ <Compile Include="Emit\SignatureHelper.cs" />
+ <Compile Include="Emit\Tokens.cs" />
+ <Compile Include="Emit\TypeBuilder.cs" />
+ <Compile Include="Enums.cs" />
+ <Compile Include="EventInfo.cs" />
+ <Compile Include="ExceptionHandlingClause.cs" />
+ <Compile Include="FieldInfo.cs" />
+ <Compile Include="FieldSignature.cs" />
+ <Compile Include="GenericWrappers.cs" />
+ <Compile Include="Impl\CryptoConvert.cs" />
+ <Compile Include="Impl\CryptoHack.cs" />
+ <Compile Include="Impl\ITypeOwner.cs" />
+ <Compile Include="Impl\MdbWriter.cs" />
+ <Compile Include="Impl\PdbWriter.cs" />
+ <Compile Include="Impl\SymbolSupport.cs" />
+ <Compile Include="InterfaceMapping.cs" />
+ <Compile Include="LocalVariableInfo.cs" />
+ <Compile Include="ManifestResourceInfo.cs" />
+ <Compile Include="MarshalSpec.cs" />
+ <Compile Include="MemberInfo.cs" />
+ <Compile Include="Metadata\CliHeader.cs" />
+ <Compile Include="Metadata\MetadataRW.cs" />
+ <Compile Include="Metadata\Tables.cs" />
+ <Compile Include="MethodBase.cs" />
+ <Compile Include="MethodBody.cs" />
+ <Compile Include="MethodImplMap.cs" />
+ <Compile Include="MethodInfo.cs" />
+ <Compile Include="MethodSignature.cs" />
+ <Compile Include="Module.cs" />
+ <Compile Include="ParameterInfo.cs" />
+ <Compile Include="ParameterModifier.cs" />
+ <Compile Include="PropertyInfo.cs" />
+ <Compile Include="PropertySignature.cs" />
+ <Compile Include="Reader\AssemblyReader.cs" />
+ <Compile Include="Reader\ByteReader.cs" />
+ <Compile Include="Reader\EventInfoImpl.cs" />
+ <Compile Include="Reader\Field.cs" />
+ <Compile Include="Reader\GenericTypeParameter.cs" />
+ <Compile Include="Reader\MetadataReader.cs" />
+ <Compile Include="Reader\Method.cs" />
+ <Compile Include="Reader\ModuleReader.cs" />
+ <Compile Include="Reader\PEReader.cs" />
+ <Compile Include="Reader\PropertyInfoImpl.cs" />
+ <Compile Include="Reader\ResourceModule.cs" />
+ <Compile Include="Reader\TypeDefImpl.cs" />
+ <Compile Include="Signature.cs" />
+ <Compile Include="StandAloneMethodSig.cs" />
+ <Compile Include="StrongNameKeyPair.cs" />
+ <Compile Include="Type.cs" />
+ <Compile Include="Properties\AssemblyInfo.cs" />
+ <Compile Include="TypeNameParser.cs" />
+ <Compile Include="Universe.cs" />
+ <Compile Include="Util.cs" />
+ <Compile Include="Writer\ByteBuffer.cs" />
+ <Compile Include="Writer\Heaps.cs" />
+ <Compile Include="Writer\MetadataWriter.cs" />
+ <Compile Include="Writer\ModuleWriter.cs" />
+ <Compile Include="Writer\PEWriter.cs" />
+ <Compile Include="Writer\ResourceSection.cs" />
+ <Compile Include="Writer\TextSection.cs" />
+ <Compile Include="Writer\VersionInfo.cs" />
+ </ItemGroup>
+ <ItemGroup>
+ <Reference Include="System" />
+ </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> \ No newline at end of file