-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathxml-rpc.csproj
99 lines (99 loc) · 4.28 KB
/
xml-rpc.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
<?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>{27772995-B6AF-4F8F-8600-63AA577C0345}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>xmlrpc</RootNamespace>
<AssemblyName>xml-rpc</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
</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>
</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>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Web" />
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="XmlRpcBeginAttribute.cs" />
<Compile Include="XmlRpcMethodAttribute.cs" />
<Compile Include="AssemblyBuildNumber.cs" />
<Compile Include="AssemblyDesc.cs" />
<Compile Include="DateTime8601.cs" />
<Compile Include="GuidEx.cs" />
<Compile Include="IHttpRequest.cs" />
<Compile Include="IHttpRequestHandler.cs" />
<Compile Include="IHttpResponse.cs" />
<Compile Include="IXmlRpcProxy.cs" />
<Compile Include="RequestResponseLogger.cs" />
<Compile Include="SystemMethodsBase.cs" />
<Compile Include="Tracer.cs" />
<Compile Include="util.cs" />
<Compile Include="XmlRpcAsyncResult.cs" />
<Compile Include="XmlRpcBoolean.cs" />
<Compile Include="XmlRpcClientFormatterSink.cs" />
<Compile Include="XmlRpcClientFormatterSinkProvider.cs" />
<Compile Include="XmlRpcClientProtocol.cs" />
<Compile Include="XmlRpcDateTime.cs" />
<Compile Include="XmlRpcDocWriter.cs" />
<Compile Include="XmlRpcDouble.cs" />
<Compile Include="XmlRpcEndAttribute.cs" />
<Compile Include="XmlRpcException.cs" />
<Compile Include="XmlRpcFaultException.cs" />
<Compile Include="XmlRpcHttpRequest.cs" />
<Compile Include="XmlRpcHttpResponse.cs" />
<Compile Include="XmlRpcHttpServerProtocol.cs" />
<Compile Include="XmlRpcInt.cs" />
<Compile Include="XmlRpcListenerRequest.cs" />
<Compile Include="XmlRpcListenerResponse.cs" />
<Compile Include="XmlRpcListenerService.cs" />
<Compile Include="XmlRpcLogger.cs" />
<Compile Include="XmlRpcMemberAttribute.cs" />
<Compile Include="XmlRpcMethodInfo.cs" />
<Compile Include="XmlRpcMissingMappingAttribute.cs" />
<Compile Include="XmlRpcNonStandard.cs" />
<Compile Include="XmlRpcParameterAttribute.cs" />
<Compile Include="XmlRpcParameterInfo.cs" />
<Compile Include="XmlRpcProxyCodeGen.cs" />
<Compile Include="XmlRpcProxyGen.cs" />
<Compile Include="XmlRpcRequest.cs" />
<Compile Include="XmlRpcRequestEventArgs.cs" />
<Compile Include="XmlRpcResponse.cs" />
<Compile Include="XmlRpcResponseEventArgs.cs" />
<Compile Include="XmlRpcReturnValueAttribute.cs" />
<Compile Include="XmlRpcSerializer.cs" />
<Compile Include="XmlRpcServerFormatterSink.cs" />
<Compile Include="XmlRpcServerFormatterSinkProvider.cs" />
<Compile Include="XmlRpcServerProtocol.cs" />
<Compile Include="XmlRpcService.cs" />
<Compile Include="XmlRpcServiceAttribute.cs" />
<Compile Include="XmlRpcServiceInfo.cs" />
<Compile Include="XmlRpcStruct.cs" />
<Compile Include="XmlRpcUrlAttribute.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<None Include="XmlRpcClientProtocol.resx" />
</ItemGroup>
</Project>