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 installer for ClickOnce or MSI.
But I've been using Inno Setup for my project so far and I'...
I've recently been looking into targeting the .NET Client Profile for a WPF application I am building. However, I was frustrated to notice that the Client Profile is only valid for the following OS configurations:
Windows XP SP2+
Windows Server 2003 Edit: Appears the Client Profile will not install on Windows Server 2003.
In additio...
What does "Client-only Framework subset" in Visual Studio 2008 do?
...
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 application?
Thanks.
...
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 internet. So we want to be able to handle both cases.
In the prerequisites I'm able to select the...
Microsoft .NET Framework Client Profile Offline Installer - 255.6 MB. Shouldn't it be 27MB or so?
Here list of biggest files within package (size in bytes).
dotnetfx35.exe (242 743 296)
DotNetFx20Client_Package_x86.exe (14 466 600)
DotNetFx30Client_Package_x86.exe (8 328 232)
DotNetFx35Client_Package_x86.exe (935 976)
So may be r...
I'm building a WinForms application where I'll need it to work "locally" (just like Microsoft Word, saving and opening files from the file system) and also in a multi-user environment (communicating with a server in the network, via TCP/IP).
In terms of architecture I'm thinking of these logical layers:
Presentation (windows forms)
Se...
The title said it all.
...
My understanding of the client profile preview is that it's a stripped down version of .NET focusing on fulfiling the needs of client applications.
However it would be useful to know what is included and excluded from this? Does anyone know?
...
I'm writing a program that is targeting the .NET 3.5 Client Profile and using NLog. I configure my logger programmatically on start up (no config file.)
It works perfectly on Vista and Windows 7, but when running on a fresh install of XP SP3 with the .NET Client Profile installed, it will not log any of the variables in the layout stri...
I have been unable to edit and continue in a project that targets the 4.0 Client Profile however i can if i am targetting the full 4.0 Framework.
I want to release against the client profile to limit the download required to install.
Is there anyway i can build against the client profile but debug agains the full version?
...
When will the .NET 4 Client Profile be pushed out over Windows Update? Is there a published timeframe, or do we have any educated guesses?
Scott Hanselman said "later this year."
...
In Visual Studio 2008, the target framework settings for a project are
.NET Framework 2.0
.NET Framework 3.0
.NET Framework 3.5
However, in Visual Studio 2010 they are
.NET Framework 2.0
.NET Framework 3.0
.NET Framework 3.5
.NET Framework 3.5 Client Profile
.NET Framework 4
.NET Framework 4 Client Profile
What do the Client Prof...
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 4.0CP?
...
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 libararies such as System.Web which are NOT in the Client Profile.
Can anyone recommend an IOC c...
Given a particular reference assembly, what is the best way of determining whether it is available in a client profile or not?
...
I am trying to write a windows client application that calls a web site for data. To keep the install to a minimum I am trying only use dlls in the .NET Framework Client Profile. Trouble is that I need to UrlEncode some parameters, is there an easy way to do this without importing System.Web.dll which is not part of the Client Pofile?
...
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 need to be able to validate the object model manually from code using the data annotatio...
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 for internet connections.
Despite this arguable Default chioce, is there something we can ...