mirror of
https://github.com/iminet/xmlrpcwsc-dotnet.git
synced 2024-11-14 04:22:38 +01:00
ef79a1c2c1
Initial develop commit
49 lines
2.0 KiB
XML
49 lines
2.0 KiB
XML
<?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>{B5FA7348-6454-4545-AC0C-5E94FE53FB6C}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<RootNamespace>XmlRpc</RootNamespace>
|
|
<AssemblyName>xmlrpcwsc</AssemblyName>
|
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>full</DebugType>
|
|
<Optimize>false</Optimize>
|
|
<OutputPath>..\build\</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>..\build\</OutputPath>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<ConsolePause>false</ConsolePause>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="System" />
|
|
<Reference Include="System.Xml" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
<Compile Include="ComponentInfo.cs" />
|
|
<Compile Include="XmlRpcClient.cs" />
|
|
<Compile Include="XmlRpcParameter.cs" />
|
|
<Compile Include="XmlRpcRequest.cs" />
|
|
<Compile Include="XmlRpcResponse.cs" />
|
|
<Compile Include="WebServiceException.cs" />
|
|
<Compile Include="WebServiceTimeoutException.cs" />
|
|
<Compile Include="WebServiceConnection.cs" />
|
|
<Compile Include="RequestFactory.cs" />
|
|
<Compile Include="ResponseFactory.cs" />
|
|
<Compile Include="FactoryException.cs" />
|
|
</ItemGroup>
|
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
|
</Project> |