[GH-ISSUE #325] client can work on net 2.0 #153

Closed
opened 2026-02-27 15:49:06 +03:00 by kerem · 1 comment
Owner

Originally created by @AlexNowhere on GitHub (Aug 11, 2015).
Original GitHub issue: https://github.com/quasar/Quasar/issues/325

if you interesting client whith some fixes can work on not 2.0
at first change solution properties to net.2.0)))
install linqbridge (https://bitbucket.org/raboof/linqbridge) by nuget for client solution.
it`s dll add linq support to net2.0 nothing to fix in code)))
after it install json.net(newtown) and fix JsonUtil.cs to this code:
using System.IO;
using System.Text;
using Newtonsoft.Json;

namespace xClient.Core.Recovery.Utilities
{
public static class JsonUtil
{
public static string Serialize(T o)
{

        return JsonConvert.SerializeObject(o);
    }

    public static T Deserialize<T>(string json)
    {
        return JsonConvert.DeserializeObject<T>(json);
    }
}

}

ps all depencies install from nuget.
now client can work on ald windows xp machines)

Originally created by @AlexNowhere on GitHub (Aug 11, 2015). Original GitHub issue: https://github.com/quasar/Quasar/issues/325 if you interesting client whith some fixes can work on not 2.0 at first change solution properties to net.2.0))) install linqbridge (https://bitbucket.org/raboof/linqbridge) by nuget for client solution. it`s dll add linq support to net2.0 nothing to fix in code))) after it install json.net(newtown) and fix JsonUtil.cs to this code: using System.IO; using System.Text; using Newtonsoft.Json; namespace xClient.Core.Recovery.Utilities { public static class JsonUtil { public static string Serialize<T>(T o) { ``` return JsonConvert.SerializeObject(o); } public static T Deserialize<T>(string json) { return JsonConvert.DeserializeObject<T>(json); } } ``` } ps all depencies install from nuget. now client can work on ald windows xp machines)
kerem closed this issue 2026-02-27 15:49:06 +03:00
Author
Owner

@MaxXor commented on GitHub (Aug 11, 2015):

No downgrade to .NET Framework 2.0. Just install .NET Framework 3.5 CP on Windows XP.

<!-- gh-comment-id:129917000 --> @MaxXor commented on GitHub (Aug 11, 2015): No downgrade to .NET Framework 2.0. Just install .NET Framework 3.5 CP on Windows XP.
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/Quasar#153
No description provided.