1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
|
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>10.0.20624</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{AA18A245-E342-4368-A474-83178311A742}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>IronRuby.Libraries.Yaml</RootNamespace>
<AssemblyName>IronRuby.Libraries.Yaml</AssemblyName>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<SccProjectName>SAK</SccProjectName>
<SccLocalPath>SAK</SccLocalPath>
<SccAuxPath>SAK</SccAuxPath>
<SccProvider>SAK</SccProvider>
<AssemblyOriginatorKeyFile>..\..\..\..\..\Main\Support\MSSharedLibKey.snk</AssemblyOriginatorKeyFile>
<SignAssembly Condition="'$(SignAssembly)' == '' And Exists('$(AssemblyOriginatorKeyFile)')">true</SignAssembly>
<SignedSym Condition="'$(SignAssembly)' == 'true'">SIGNED</SignedSym>
<DelaySign>true</DelaySign>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\..\..\Main\Bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE;$(SignedSym)</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\..\..\Main\Bin\Release\</OutputPath>
<DefineConstants>TRACE;$(SignedSym)</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<Compile Include="BuiltinsOps.cs" />
<Compile Include="Engine\NodeProvider.cs" />
<Compile Include="Initializer.Generated.cs" />
<Compile Include="MutableStringReader.cs" />
<Compile Include="MutableStringWriter.cs" />
<Compile Include="Engine\BaseConstructor.cs" />
<Compile Include="Engine\Composer.cs" />
<Compile Include="Engine\Emitter.cs" />
<Compile Include="Engine\Events.cs" />
<Compile Include="Engine\Exceptions.cs" />
<Compile Include="Engine\LiteralParser.cs" />
<Compile Include="Engine\Nodes.cs" />
<Compile Include="Engine\Parser.cs" />
<Compile Include="Engine\PrivateType.cs" />
<Compile Include="Engine\ReferenceEqualityComparer.cs" />
<Compile Include="Engine\Representer.cs" />
<Compile Include="Engine\Resolver.cs" />
<Compile Include="Engine\ResolverScanner.cs" />
<Compile Include="Engine\Scanner.cs" />
<Compile Include="Engine\Serializer.cs" />
<Compile Include="Engine\Tokens.cs" />
<Compile Include="Engine\YamlConfig.cs" />
<Compile Include="RubyConstructor.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="RubyIOReader.cs" />
<Compile Include="RubyIOWriter.cs" />
<Compile Include="RubyRepresenter.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="RubyYaml.cs" />
<Compile Include="YamlStream.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\..\..\..\ndp\fx\src\Core\Microsoft\Scripting\Microsoft.Scripting.Core.csproj">
<Project>{2AE75F5A-CD1F-4925-9647-AF4D1C282FB4}</Project>
<Name>Microsoft.Scripting.Core</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\Main\Languages\Ruby\Libraries.LCA_RESTRICTED\IronRuby.Libraries.csproj">
<Project>{77323B06-15A2-4CF4-8A7A-86EAA2B66498}</Project>
<Name>IronRuby.Libraries</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\Main\Languages\Ruby\Ruby\Ruby.csproj">
<Project>{7F6984B4-EE6D-4E6F-ABB1-E210D7DC4FDD}</Project>
<Name>Ruby %28Languages\Ruby\Ruby%29</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\Main\Runtime\Microsoft.Scripting\Microsoft.Scripting.csproj">
<Project>{EB66B766-6354-4208-A3D4-AACBDCB5C3B3}</Project>
<Name>Microsoft.Scripting</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="Engine\resolver_scanner.rl" />
</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>
|