-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGearman.csproj
82 lines (82 loc) · 3.22 KB
/
Gearman.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
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.21022</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{727D715F-70CD-408D-9DF4-BFFD66DB6FA1}</ProjectGuid>
<OutputType>Library</OutputType>
<AssemblyName>Gearman.net</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<RootNamespace>Gearman</RootNamespace>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>3.5</OldToolsVersion>
<UpgradeBackupLocation />
</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>none</DebugType>
<Optimize>False</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.Core">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="log4net">
<HintPath>lib\log4net.dll</HintPath>
</Reference>
<Reference Include="nunit.framework">
<HintPath>lib\nunit.framework.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.cs" />
<Compile Include="src\Client.cs" />
<Compile Include="src\Packet.cs" />
<Compile Include="src\PacketType.cs" />
<Compile Include="src\Worker.cs" />
<Compile Include="src\Connection.cs" />
<Compile Include="tests\WorkerTest.cs" />
<Compile Include="tests\BackgroundTest.cs" />
<Compile Include="tests\TimeoutTest.cs" />
<Compile Include="src\Packets\Worker.cs" />
<Compile Include="src\Packets\Client.cs" />
<Compile Include="tests\LoadTest.cs" />
<Compile Include="src\Common\Job.cs" />
<Compile Include="src\Packets\Server.cs" />
<Compile Include="src\Packets\RequestPacket.cs" />
<Compile Include="src\Packets\ResponsePacket.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<Folder Include="src\" />
<Folder Include="tests\" />
<Folder Include="docs\" />
<Folder Include="src\Packets\" />
</ItemGroup>
<ItemGroup>
<None Include="Gearman.net.dll.config">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="docs\protocol.txt" />
<None Include="LICENSE.txt" />
</ItemGroup>
</Project>