This repository was archived by the owner on Oct 31, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathXevle.Core.csproj
More file actions
85 lines (85 loc) · 3.76 KB
/
Xevle.Core.csproj
File metadata and controls
85 lines (85 loc) · 3.76 KB
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
<?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>
<ProjectGuid>{4D90F3D7-F459-4272-A2FB-7A6B6987EA2D}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>Xevle.Core</RootNamespace>
<AssemblyName>Xevle.Core</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Interfaces\ICopy.cs" />
<Compile Include="Generics\Pair.cs" />
<Compile Include="Various\StopTimer.cs" />
<Compile Include="Various\StopTimerState.cs" />
<Compile Include="Extensions\IntegerArithmeticsExtensions.cs" />
<Compile Include="Extensions\StringExtensions.cs" />
<Compile Include="Extensions\StringSplitExtensions.cs" />
<Compile Include="Collections\Bitfield.cs" />
<Compile Include="Collections\Parameters.cs" />
<Compile Include="Collections\Generic\LongHashSet.cs" />
<Compile Include="Collections\Generic\LongList.cs" />
<Compile Include="Collections\Generic\PriorityQueue.cs" />
<Compile Include="Collections\Generic\ReadOnlyList.cs" />
<Compile Include="Collections\Internal\ParametersToPDLConverter.cs" />
<Compile Include="Collections\Internal\PDLParser.cs" />
<Compile Include="Exceptions\TextParserException.cs" />
<Compile Include="Events\ThreadSafeEvent.cs" />
<Compile Include="DataTypes\UInt128.cs" />
<Compile Include="DataTypes\BitOrder.cs" />
<Compile Include="DataTypes\Bits.cs" />
<Compile Include="DataTypes\ByteOrder.cs" />
<Compile Include="DataTypes\BitConverter.cs" />
<Compile Include="Various\IDGenerator.cs" />
<Compile Include="Various\Assembly.cs" />
<Compile Include="Extensions\IListExtensions.cs" />
<Compile Include="Exceptions\ItemNotFoundException.cs" />
<Compile Include="Exceptions\NotSupportedCompressionException.cs" />
<Compile Include="Helper\DebugHelper.cs" />
<Compile Include="Extensions\XmlDocumentExtensions.cs" />
<Compile Include="Helper\CommandLineHelpers.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<Folder Include="Interfaces\" />
<Folder Include="Generics\" />
<Folder Include="Various\" />
<Folder Include="Extensions\" />
<Folder Include="Collections\" />
<Folder Include="Collections\Generic\" />
<Folder Include="Collections\Internal\" />
<Folder Include="Exceptions\" />
<Folder Include="Events\" />
<Folder Include="DataTypes\" />
<Folder Include="Helper\" />
</ItemGroup>
</Project>