Move to new project system

This commit is contained in:
Adrian Ehrsam 2018-01-23 08:03:30 +01:00
parent c2a9f6f237
commit 86636ff570
7 changed files with 40 additions and 57 deletions

BIN
build/net35/xmlrpcwsc.dll Normal file

Binary file not shown.

BIN
build/net45/xmlrpcwsc.dll Normal file

Binary file not shown.

View File

@ -0,0 +1,23 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v2.0",
"signature": "da39a3ee5e6b4b0d3255bfef95601890afd80709"
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v2.0": {
"xmlrpcwsc/1.0.0": {
"runtime": {
"xmlrpcwsc.dll": {}
}
}
}
},
"libraries": {
"xmlrpcwsc/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}

Binary file not shown.

Binary file not shown.

View File

@ -23,21 +23,11 @@ using System.Runtime.CompilerServices;
// Information about this assembly is defined by the following attributes.
// Change them to the values specific to your project.
[assembly: AssemblyTitle("XmlRpc Web Service Client")]
[assembly: AssemblyDescription("XmlRpc Web Service Client")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("xmlrpcwsc")]
[assembly: AssemblyCopyright("Copyright (c) 2016 Saúl Piña")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
[assembly: AssemblyVersion("1.3.0")]
// The following attributes are used to specify the signing key for the assembly,
// if desired. See the Mono documentation for more information about signing.

View File

@ -1,49 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Label="Globals">
<SccProjectName>SAK</SccProjectName>
<SccProvider>SAK</SccProvider>
<SccAuxPath>SAK</SccAuxPath>
<SccLocalPath>SAK</SccLocalPath>
<AssemblyTitle>XmlRpc Web Service Client</AssemblyTitle>
<AssemblyCompany></AssemblyCompany>
<AssemblyVersion>1.4.0</AssemblyVersion>
<Product>xmlrpcwsc</Product>
</PropertyGroup>
<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>
<TargetFrameworks>netcoreapp2.0;net35;net45</TargetFrameworks>
<OutputPath>..\build</OutputPath>
</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>
</Project>