forked from fast-pack/CSharpFastPFOR
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCSharpFastPFOR.csproj
More file actions
103 lines (103 loc) · 4.49 KB
/
CSharpFastPFOR.csproj
File metadata and controls
103 lines (103 loc) · 4.49 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" 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>{4A4835E7-CBF6-4CA3-812C-38C42AB9CF43}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>CSharpFastPFOR</RootNamespace>
<AssemblyName>CSharpFastPFOR</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<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' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<StartupObject />
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
</ItemGroup>
<ItemGroup>
<Compile Include="BinaryPacking.cs" />
<Compile Include="BitPacking.cs" />
<Compile Include="ByteIntegerCODEC.cs" />
<Compile Include="Composition.cs" />
<Compile Include="DeltaZigzagBinaryPacking.cs" />
<Compile Include="DeltaZigzagEncoding.cs" />
<Compile Include="DeltaZigzagVariableByte.cs" />
<Compile Include="Differential\Delta.cs" />
<Compile Include="Differential\IntegratedBinaryPacking.cs" />
<Compile Include="Differential\IntegratedBitPacking.cs" />
<Compile Include="Differential\IntegratedByteIntegerCODEC.cs" />
<Compile Include="Differential\IntegratedComposition.cs" />
<Compile Include="Differential\IntegratedIntCompressor.cs" />
<Compile Include="Differential\IntegratedIntegerCODEC.cs" />
<Compile Include="Differential\IntegratedVariableByte.cs" />
<Compile Include="Differential\SkippableIntegratedComposition.cs" />
<Compile Include="Differential\SkippableIntegratedIntegerCODEC.cs" />
<Compile Include="Differential\XorBinaryPacking.cs" />
<Compile Include="FastPFOR.cs" />
<Compile Include="FastPFOR128.cs" />
<Compile Include="IntCompressor.cs" />
<Compile Include="IntegerCODEC.cs" />
<Compile Include="IntWrapper.cs" />
<Compile Include="JustCopy.cs" />
<Compile Include="NewPFD.cs" />
<Compile Include="NewPFDS16.cs" />
<Compile Include="NewPFDS9.cs" />
<Compile Include="OptPFD.cs" />
<Compile Include="OptPFDS16.cs" />
<Compile Include="OptPFDS9.cs" />
<Compile Include="Port\Arrays.cs" />
<Compile Include="Port\BitSet.cs" />
<Compile Include="Port\ByteBuffer.cs" />
<Compile Include="Port\ByteOrder.cs" />
<Compile Include="Port\IntBuffer.cs" />
<Compile Include="Port\Integer.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="S16.cs" />
<Compile Include="S9.cs" />
<Compile Include="Simple16.cs" />
<Compile Include="Simple9.cs" />
<Compile Include="SkippableComposition.cs" />
<Compile Include="SkippableIntegerCODEC.cs" />
<Compile Include="Synth\ClusteredDataGenerator.cs" />
<Compile Include="Synth\UniformDataGenerator.cs" />
<Compile Include="Util.cs" />
<Compile Include="VariableByte.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<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>