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

UserGuideExamples.csproj « UserGuideExamples « Mono.C5 « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f2559711fd92644b15912caef0821b6531bfbb55 (plain)
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
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProductVersion>8.0.50727</ProductVersion>
    <SchemaVersion>2.0</SchemaVersion>
    <ProjectGuid>{B2A29FF2-A5C5-4F07-8CE7-FF5D744D7562}</ProjectGuid>
    <OutputType>Library</OutputType>
    <RootNamespace>UserGuideExamples</RootNamespace>
    <AssemblyName>UserGuideExamples</AssemblyName>
    <WarningLevel>4</WarningLevel>
    <StartupObject>
    </StartupObject>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <DebugSymbols>true</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>false</Optimize>
    <OutputPath>.\bin\Debug\</OutputPath>
    <DefineConstants>DEBUG;TRACE</DefineConstants>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <DebugSymbols>false</DebugSymbols>
    <Optimize>true</Optimize>
    <OutputPath>.\bin\Release\</OutputPath>
    <DefineConstants>TRACE</DefineConstants>
  </PropertyGroup>
  <ItemGroup>
    <Compile Include="AnagramHashBag.cs" />
    <Compile Include="Anagrams.cs" />
    <Compile Include="AnagramStrings.cs" />
    <Compile Include="AnagramTreeBag.cs" />
    <Compile Include="Antipatterns.cs" />
    <Compile Include="Cloning.cs" />
    <Compile Include="CollectionCollection.cs" />
    <Compile Include="CollectionSanity.cs" />
    <Compile Include="EventPatterns.cs" />
    <Compile Include="GettingStarted.cs" />
    <Compile Include="Graph.cs" />
    <Compile Include="Fileindex.cs" />
    <Compile Include="GCHForm.cs">
      <SubType>Form</SubType>
    </Compile>
    <Compile Include="GConvexHull.cs" />
    <Compile Include="GNfaToDfa.cs" />
    <Compile Include="HashCodes.cs" />
    <Compile Include="Jobqueue.cs" />
    <Compile Include="KeywordRecognition.cs" />
    <Compile Include="ListPatterns.cs" />
    <Compile Include="Locking.cs" />
    <Compile Include="MultiCollection.cs" />
    <Compile Include="MultiDictionary.cs" />
    <Compile Include="PointLocation.cs" />
    <Compile Include="RandomSelection.cs" />
    <Compile Include="ReadOnlyPatterns.cs" />
    <Compile Include="Sets.cs" />
    <Compile Include="SortedIterationPatterns.cs" />
    <Compile Include="SortingPermutation.cs" />
    <Compile Include="TestSortedArray.cs" />
    <Compile Include="ThisFun.cs" />
    <Compile Include="Toposort.cs" />
    <Compile Include="TreeTraversal.cs" />
    <Compile Include="Try.cs" />
    <Compile Include="ViewPatterns.cs" />
    <Compile Include="Views.cs" />
    <Compile Include="WrappedArray.cs" />
  </ItemGroup>
  <ItemGroup>
    <EmbeddedResource Include="GCHForm.resx">
      <DependentUpon>GCHForm.cs</DependentUpon>
    </EmbeddedResource>
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\C5\C5.csproj">
      <Project>{D70489CD-ABDA-48FF-BD1E-BE3F7495BE71}</Project>
      <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package>
      <Name>C5</Name>
    </ProjectReference>
  </ItemGroup>
  <ItemGroup>
    <None Include="Makefile" />
  </ItemGroup>
  <ItemGroup>
    <Reference Include="System" />
    <Reference Include="System.Drawing" />
    <Reference Include="System.Windows.Forms" />
  </ItemGroup>
  <Import Project="$(MSBuildBinPath)\Microsoft.CSHARP.Targets" />
</Project>