-
Notifications
You must be signed in to change notification settings - Fork 8
/
XSharpx.csproj
66 lines (66 loc) · 2.94 KB
/
XSharpx.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
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>10.0.0</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{A6645649-6388-4A53-9D81-C99ABC23A1A1}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>XSharpx</RootNamespace>
<AssemblyName>XSharpx</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>dist\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
<Optimize>false</Optimize>
<OutputPath>dist\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
</ItemGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.cs" />
<Compile Include="src\XSharpx\Option.cs" />
<Compile Include="src\XSharpx\Pair.cs" />
<Compile Include="src\XSharpx\ListBuffer.cs" />
<Compile Include="src\XSharpx\List.cs" />
<Compile Include="src\XSharpx\FuncExtension.cs" />
<Compile Include="src\XSharpx\Semigroup.cs" />
<Compile Include="src\XSharpx\Monoid.cs" />
<Compile Include="src\XSharpx\Reducer.cs" />
<Compile Include="src\XSharpx\NonEmptyList.cs" />
<Compile Include="src\XSharpx\ListZipper.cs" />
<Compile Include="src\XSharpx\Store.cs" />
<Compile Include="src\XSharpx\Either.cs" />
<Compile Include="src\XSharpx\Tree.cs" />
<Compile Include="src\XSharpx\Iteratee.cs" />
<Compile Include="src\XSharpx\Unit.cs" />
<Compile Include="src\XSharpx\Terminal.cs" />
<Compile Include="src\XSharpx\DiffList.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ProjectExtensions>
<MonoDevelop>
<Properties>
<Policies>
<TextStylePolicy FileWidth="120" TabWidth="2" RemoveTrailingWhitespace="True" EolMarker="Unix" inheritsSet="VisualStudio" inheritsScope="text/plain" scope="text/x-csharp" />
<CSharpFormattingPolicy inheritsSet="Mono" inheritsScope="text/x-csharp" scope="text/x-csharp" />
<TextStylePolicy FileWidth="120" TabWidth="2" RemoveTrailingWhitespace="True" EolMarker="Unix" inheritsSet="VisualStudio" inheritsScope="text/plain" scope="text/plain" />
</Policies>
</Properties>
</MonoDevelop>
</ProjectExtensions>
</Project>