Questions tagged [.net-client-profile]

The .NET Framework Client Profile is an optimized subset of the .NET Framework targeting client applications.

Resources:

74 questions
5
votes
2 answers

Check .NET 4 Full Framework is installed

If the .NET 4 Framework is not installed, the application bring a message, but if only the client framework is installed and the application need the Full Framework, nothing happened and the application starts. Is there a way to check if .NET 4 Full…
MarcelMalik
  • 128
  • 1
  • 4
  • 10
5
votes
1 answer

Do I have to show the .NET EULA if I am bootstraping my install

I am using Wix 3.6 with a BootstraperApplication that will install the .NET 4.0 Client Profile if it is not detected on the users computer. I want to install .NET silently, and only show the progress in my managed UI. I have a checkbox on my…
levarius
  • 1,048
  • 7
  • 15
5
votes
1 answer

How to determine if a DLL requires Full .NET 4 or just Client Profile

When using third party assemblies I need a way to detect if they require full .NET 4 or just the .NET 4 Client Profile. I've seen other ways to detect .NET version referenced Determine .NET Framework version for dll but the ways outlined in that…
Evan
  • 5,925
  • 6
  • 33
  • 35
5
votes
2 answers

Client Profile Application prerequisites

One last question about Client Profile installation. I downloaded the Microsoft .NET Framework Client Profile Online Installer because we want to put it in the installation CD because our end user might not have either .net framework 3.5 or…
Carlo
  • 25,602
  • 32
  • 128
  • 176
5
votes
2 answers

.Net Framework 4 Full and Net Framework 4 Client Profile Targeting

I wanted to target my .net application to .NetFramework 4(Client Profile) but later i recognized that a 3rd party control uses System.Design for implementing custom control. Now im concerned about the users, as most will have .Net Framework 4 Client…
techno
  • 6,100
  • 16
  • 86
  • 192
4
votes
2 answers

LINQ to JSON in .net 4.0 Client Profile

How would I go about about using LINQ to JSON in the .net 4 Client Profile in C#. I'd like to query certain json responses as shown in msdn blog post without having to write out a contract (datacontract, servicecontract, etc). I really only need to…
Eugene
  • 10,957
  • 20
  • 69
  • 97
4
votes
2 answers

In Visual Studio 2012 where does ClickOnce "Publish" expect to find the .Net 4 client profile?

The Publish feature stopped working once I installed Visual Studio 2012. Publish cannot find the prerequisite Microsoft .Net Framework 4 Client Profile (x86 and x64). Previously in Visual Studio 2010 this worked fine. I use 64-bit Windows 7. The…
DeveloperDan
  • 4,626
  • 9
  • 40
  • 65
4
votes
3 answers

How do I make a custom .net client profile installer?

For .net 3.5 SP1, Microsoft have the new client profile which installs only a subset of .net 3.5 SP1 on to Windows XP user's machines. I'm aware of how to make my assemblies client-profile ready. And I've read the articles on how to implement an…
Nidonocu
  • 12,476
  • 7
  • 42
  • 43
3
votes
1 answer

Why does my app require the full .NET 4 Framework?

I have a WinForms app targeting the .NET 4 Client Profile. However, when I try to run it on a machine that has only the Client Profile (and not the full/extended profile), I get ".NET Framework Initialization Error" saying I need to install…
Daniel Schaffer
  • 56,753
  • 31
  • 116
  • 165
3
votes
2 answers

.NET Client Profile on x64

I know that the .NET Client profile does not target x64 or ia64. However I do not know what that means? There are two parts that it affects If I set my application to use the .NET Client Profile in VS, and it is run on x64 will it work? If I set…
Robert MacLean
  • 38,975
  • 25
  • 98
  • 152
3
votes
1 answer

Which version of .net 4.0 should be used for Windows Service (4.0 full or client profile)

With reference to this question, I would like to know which version (.net 4.0 client profile or full version) should be used for Windows service application and why?
JPReddy
  • 63,233
  • 16
  • 64
  • 93
3
votes
2 answers

Visual Studio 2010 and .NET 4.0 Client Profile

We are a .NET component vendor, our product needs to connect to the internet to be activated. In Visual Studio 2010, as soon as you create a new WinForms project the .NET Framework 4.0 Client Profile is selected not providing the necessary support…
abenci
  • 8,422
  • 19
  • 69
  • 134
3
votes
1 answer

Consuming REST service with .NET 4 Client Profile

What's the easiest/best way to consume a RESTful service from a .NET client application using the .NET 4 Client Profile? Everything I have found ends up pushing me towards the full framework: WCF REST Starter Kit. HttpClient class requires full…
karl.r
  • 961
  • 1
  • 11
  • 28
3
votes
1 answer

How large is the download for the .NET 4.0 client profile?

I've seen numbers about the full install size of the framework, but my Google-fu has failed me when it comes to how large the upgrade download will be. For instance, for a user who has 2.0 installed, how much will they have to download to upgrade to…
Ben Straub
  • 5,675
  • 3
  • 28
  • 43
3
votes
1 answer

Clickonce + .NET client profile 4 framework + offline

I have a Windows Forms project using Visual Studio 2010, and I am deploying using ClickOnce. I need the application to work offline as well as online. I have configured the prerequisite - .NET Client Profile 4 and set the location to the same as the…