-
Notifications
You must be signed in to change notification settings - Fork 0
/
NetCore.csproj
125 lines (125 loc) · 6.61 KB
/
NetCore.csproj
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{F2AA2C89-FC14-47AF-8B3E-478CD4EA6843}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NetCore</RootNamespace>
<AssemblyName>NetCore</AssemblyName>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</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="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Collections\Collection.cs" />
<Compile Include="Collections\Collections\AbstractCollection.cs" />
<Compile Include="Collections\Collections\SelectCollection.cs" />
<Compile Include="Collections\Dictionary.cs" />
<Compile Include="Collections\Enumerables\AbstractEnumerable.cs" />
<Compile Include="Collections\Enumerators\AbstractEnumerator.cs" />
<Compile Include="Collections\Enumerators\ArraySliceEnumerator.cs" />
<Compile Include="Collections\Enumerators\SkipEnumerator.cs" />
<Compile Include="Collections\Enumerators\TakeEnumerator.cs" />
<Compile Include="Collections\ICollection.cs" />
<Compile Include="Collections\IMap.cs" />
<Compile Include="Collections\IRange.cs" />
<Compile Include="Collections\ISet.cs" />
<Compile Include="Collections\Map.cs" />
<Compile Include="Collections\Maps\AbstractMap.cs" />
<Compile Include="Collections\Maps\DictionaryMap.cs" />
<Compile Include="Collections\Maps\WhereMap.cs" />
<Compile Include="Collections\Mutables\IMutableSeq.cs" />
<Compile Include="Collections\Mutables\IMutableSet.cs" />
<Compile Include="Collections\Mutables\MutableSet.cs" />
<Compile Include="Collections\Mutables\Sets\SetWrapper.cs" />
<Compile Include="Collections\ObservableMutables\IObservableMutableSeq.cs" />
<Compile Include="Collections\ObservableMutables\IObservableMutableSet.cs" />
<Compile Include="Collections\ObservableMutables\MutableObservableSet.cs" />
<Compile Include="Collections\ObservableMutables\Sets\ObservableMutableSet.cs" />
<Compile Include="Collections\ObservableMutables\Sets\WhereObservableMutableSet.cs" />
<Compile Include="Collections\Observables\Collections\OrderByObservableCollection.cs" />
<Compile Include="Collections\Observables\Collections\SelectObservableCollection.cs" />
<Compile Include="Collections\Observables\IObservableSeq.cs" />
<Compile Include="Collections\Observables\IObservableCollection.cs" />
<Compile Include="Collections\Observables\IObservableSet.cs" />
<Compile Include="Collections\Observables\ISeqChange.cs" />
<Compile Include="Collections\Observables\ICollectionChange.cs" />
<Compile Include="Collections\Observables\ObservableCollection.cs" />
<Compile Include="Collections\Observables\Collections\CollectionChange.cs" />
<Compile Include="Collections\Observables\ObservableSet.cs" />
<Compile Include="Collections\Observables\Sets\WhereObservableSet.cs" />
<Compile Include="Collections\Observables\Seqs\SeqChange.cs" />
<Compile Include="Collections\Seqs\AbstractSeq.cs" />
<Compile Include="Collections\Seqs\ArraySeq.cs" />
<Compile Include="Collections\Collections\CollectionWrapper.cs" />
<Compile Include="Collections\Collections\SelectManyCollection.cs" />
<Compile Include="Collections\Seqs\SubSeq.cs" />
<Compile Include="Collections\Enumerators\ArrayEnumerator.cs" />
<Compile Include="Collections\Enumerators\SelectEnumerator.cs" />
<Compile Include="Collections\Enumerators\SelectManyEnumerator.cs" />
<Compile Include="Collections\Enumerators\WhereEnumerator.cs" />
<Compile Include="Collections\Enumerable.cs" />
<Compile Include="Collections\Enumerator.cs" />
<Compile Include="Collections\Enumerators\EmptyEnumerator.cs" />
<Compile Include="Collections\Enumerators\SingletonEnumerator.cs" />
<Compile Include="Collections\IOption.cs" />
<Compile Include="Collections\ISeq.cs" />
<Compile Include="Collections\Options\None.cs" />
<Compile Include="Collections\Option.cs" />
<Compile Include="Collections\Seqs\SelectSeq.cs" />
<Compile Include="Collections\Seq.cs" />
<Compile Include="Collections\Options\Some.cs" />
<Compile Include="Collections\Set.cs" />
<Compile Include="Collections\Sets\AbstractSet.cs" />
<Compile Include="Collections\Sets\SetWrapper.cs" />
<Compile Include="Collections\Test\Test.cs" />
<Compile Include="Collections\Sets\WhereSet.cs" />
<Compile Include="Observables\Observer.cs" />
<Compile Include="Observables\Signal.cs" />
<Compile Include="Utils\IMonoid.cs" />
<Compile Include="Observables\ITransaction.cs" />
<Compile Include="Observables\ITransactionObserable.cs" />
<Compile Include="Observables\Transaction.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Utils\IFunc.cs" />
<Compile Include="Utils\ITuple.cs" />
<Compile Include="Utils\Tuple.cs" />
<Compile Include="Utils\Tuples\AbstractTuple.cs" />
<Compile Include="Utils\Tuples\Tuple.cs" />
<Compile Include="Utils\Utils.cs" />
</ItemGroup>
<ItemGroup />
<ItemGroup>
<None Include="README.md" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>