mirror of
https://github.com/quasar/Quasar.git
synced 2026-04-26 07:45:57 +03:00
[GH-ISSUE #477] Compile client for windows xp (.net framework 2.0) #252
Labels
No labels
bug
bug
cant-reproduce
discussion
duplicate
easy
enhancement
help wanted
improvement
invalid
need more info
pull-request
question
wont-add
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/Quasar#252
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @ghost on GitHub (Jul 7, 2016).
Original GitHub issue: https://github.com/quasar/Quasar/issues/477
when i change the Target framework to ".NET framework 2.0"
the compiler get about 91 error most of them is
The type or namespace name 'Linq' does not exist in the namespace 'System' (are you missing an assembly reference?)is there is anyway to do that
@MaxXor commented on GitHub (Jul 7, 2016):
Compiling for other frameworks than 4.0 is not supported. You can fully replace all instructions from the Linq namespace manually by foreach loops. Anyways you can install .NET Framework 4.0 on Windwos XP.
@ghost commented on GitHub (Jul 7, 2016):
ok i can do that, but i dont know how to resolve this error
Cannot define a new extension method because the compiler required type 'System.Runtime.CompilerServices.ExtensionAttributein
private static bool IsNameOrValueNull(this string keyName, RegistryKey key)@MaxXor commented on GitHub (Jul 7, 2016):
.NET 2.0 doesn't support extension methods. You'll need to replace them all with static helper methods. Anyways I don't give support for downgrading Quasar to an outdated framework version.
~Closed