Tampa
Tampa
I setup an xmlrpc server in the controller: ``` public function query() { $this->load->library('xmlrpc_raw'); $this->load->library('xmlrpcs_raw'); $config['functions']['datarequest'] = array('function' => 'mainapi.datarequest'); $this->xmlrpcs_raw->initialize($config); $this->xmlrpcs_raw->serve(); } public function datarequest($request) { $this->load->library('xmlrpc_raw'); $this->load->library('xmlrpcs_raw'); $param...
I can do the building if you give me instructions, not sure about testing given my time constraints though.
Getting the same compiling on older framework version, this is not okay, should not break backwards compatibility! "/usr/lib/mono/msbuild/Current/bin/Microsoft.Common.CurrentVersion.targets(2101,5): error MSB3248: Parameter "AssemblyFiles" has invalid value "/usr/lib/mono/4.6-api/mscorlib.dll". Could not load file...
The following packages will be upgraded: msbuild msbuild-sdkresolver msbuild --version Microsoft (R) Build Engine version 16.10.1 for Mono Copyright (C) Microsoft Corporation. All rights reserved. 16.10.1.31701 Seems like somewhere along...
As I suspected, the stable release is missing the correct version of msbuild, which is supplied by the preview branch: apt-cache policy msbuild msbuild: Installed: 1:16.10.1+xamarinxplat.2021.05.26.14.00-0xamarin2+ubuntu2004b1 Candidate: 1:16.10.1+xamarinxplat.2021.05.26.14.00-0xamarin2+ubuntu2004b1 Version table:...
Try remove and purge of mono-complete and mono-devel specifically then install again, might also have to clean your project files.
echo "deb https://download.mono-project.com/repo/ubuntu preview-focal main" >> /etc/apt/sources.list.d/mono-official-preview.list Need both stable-focal and preview-focal in there, then apt update and check policy, hopefully then provides the correct latest version of msbuild.
https://download.mono-project.com/repo/ubuntu/dists/stable-focal/main/binary-amd64/Packages The packages file needs fixing, the wrong version of msbuild is listed there, should be an easy fix. Randomly checking on other distros and versions, yeah they all need...
You can view the package lists directly: https://download.mono-project.com/repo/ubuntu/dists/preview-focal/main/binary-amd64/Packages https://download.mono-project.com/repo/ubuntu/dists/stable-focal/main/binary-amd64/Packages After adding the additional repo run apt update && apt dist-upgrade, that should install it. You can check whether you have...
The packages lists have been fixed up now so stable should be proper, you can remove the preview repo from apt now.