Questions tagged [.net-client-profile]

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

Resources:

74 questions
3
votes
0 answers

Wpf .Net 4.0 client profile and caching

according to msdn System.runtime.caching is not available to the client profile. currently this caching works for .net full. where my application is going to be deployed only supports the client profile so retargeting is not a option. is there a…
BBotond
  • 31
  • 3
2
votes
1 answer

WiX-Generated installer shows bootstrapper EULA dialog in quiet mode

I'm using WiX to generate an installer with a bootstrapper for the .NET 4 Client Profile. However, while the individual components each have a "quiet" mode (the generated MSI and the .NET 4 installer), attempting to install using the generated…
Daniel Schaffer
  • 56,753
  • 31
  • 116
  • 165
2
votes
1 answer

.Net 4.0 App targeting the client profile still prompts the user to download full profile

I have a .NET Winform application that targets the '.NET Framework 4 Client Profile', it uses four more class library assemblies but they are also all targeting the client profile. When I test this on a vanilla Windows XP box with just the 4.0…
Peter Hahndorf
  • 10,767
  • 4
  • 42
  • 58
2
votes
2 answers

Supporting .NET Framework 3.5 SP1 Client Profile?

Are there any design considerations that need to be made when targeting the .NET Framework 3.5 SP1 Client Profile? I know it's a subset of the full framework, but what is missing and how will I know if my application will require the Client Profile…
Jon Tackabury
  • 47,710
  • 52
  • 130
  • 168
2
votes
0 answers

How to pass "user information" to "HubConnectionBuilder()"

Microsoft show us how to connect to SignalR with the following code connection = new HubConnectionBuilder() .WithUrl("http://localhost:53353/ChatHub") .Build(); but when you connect like this the…
2
votes
2 answers

GetSmoObject Error: Attempt to retrieve data for object failed for ManagedCompter

I am trying to write a PowerShell script that will enable the TCP/IP and Named Pipes Server Protocols, but my server is unable to find them. Here is the code I am using to connect to the…
Lotzi11
  • 477
  • 1
  • 13
  • 26
2
votes
1 answer

Data Annotations on object model shared between 2 apps

I have a class library that contains my object model. I'd like each object to have data annotations to place validation rules into my model so that validation can be shared across 2 apps. One is an MVC 2 app and the other is a Windows forms app. I…
Josh
  • 16,286
  • 25
  • 113
  • 158
2
votes
3 answers

What is the .Net Client Profile PREVIEW?

I understand what the .Net Client Profile is, but what does "PREVIEW" mean? (http://www.microsoft.com/downloads/details.aspx?familyid=8CEA6CD1-15BC-4664-B27D-8CEBA808B28B&displaylang=en) Is this like a beta release? Is it safe to deploy alongside my…
Walt D
  • 4,491
  • 6
  • 33
  • 43
2
votes
1 answer

When is the right time to use .NET Framework 4 rather than .NET Framework 4 Client Profile?

Perhaps the issue here is that I don't fully understand the differences between the Client Profile of .NET 4 and the (regular?) version of .NET 4... When I begin a new project in Visual Studio 2010, it defaults to a target framework of .NET…
Michael Mankus
  • 4,628
  • 9
  • 37
  • 63
1
vote
0 answers

StackPanel and the .NET 4 Client Profile

I have an old WinForms app that needs a few new forms, which would benefit greatly from WPF. Following this tutorial: http://www.switchonthecode.com/tutorials/wpf-tutorial-using-wpf-in-winforms The project currently targets the .NET 4 Client…
Eric J.
  • 147,927
  • 63
  • 340
  • 553
1
vote
3 answers

Urlencode large amount of text in .net 4 client C#

What's the best way to urlencode (escape) a large string (50k - 200k characters) in the .net 4 client profile? System.Net.Uri.EscapeDataString() is limited to 32766 characters. HttpUtility.UrlEncode is not available in .net 4 client. The encoded…
Eugene
  • 10,957
  • 20
  • 69
  • 97
1
vote
1 answer

.NET Framework 3.5 Client Profile - Missing method System.Windows.Threading.Dispatcher.BeginInvoke(System.Delegate, System.Object[])

My application targets the .NET Framework 3.5 client profile and my setup is configured to install this framework using the online installer, but sometimes (at 3 users out of 12000) the application throws the following exception: Method not found:…
1
vote
2 answers

C++/CLI: is it possible to target the .NET 3.5 Client Profile using Visual Studio 2008?

I have a C++/CLI library that I'd like to target the .NET 3.5 SP1 Client Profile, but the client profile does not appear in the list of available frameworks. Is it possible to do this?
anthony
  • 40,424
  • 5
  • 55
  • 128
1
vote
0 answers

How do I determine if a particular assembly is available in Client Profile?

Given a particular reference assembly, what is the best way of determining whether it is available in a client profile or not?
Dmitri Nesteruk
  • 23,067
  • 22
  • 97
  • 166
1
vote
2 answers

IOC Container that can target .NET Framework Client Profile?

On our current WPF project, we've been performing dependency injection using the Ninject IOC tool. We want to target the .NET Framework Client Profile for a better download/install experience. The problem is that Ninject seems to reference…
Rox Wen
  • 253
  • 1
  • 4
  • 12