.net-client-profile

A complete WiX 3.6 bundle example bootstrapping a .NET 4 Client Profile

醉酒当歌 提交于 2019-11-30 06:27:34
I tried to construct a working example of a WiX 3.6 installation script. We currently use WiX 3.5 and now we would like to begin installing the .NET 4 Client Profile framework as a pre-requisite for our MSI file that our product.wxs script creates. WiX 3.6 seems like the best way forward. Is there a functional example of how to do this with WiX 3.6? Here is our 3.5 script we use today: <?xml version="1.0" encoding="utf-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension"> <!-- Version change handling --> <?define UpgradeCode="##

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

最后都变了- 提交于 2019-11-29 14:32:41
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 exact Visual Studio 2012 error message reads: Error 104 - To enable 'Download prerequisites from the same location as my application' in the Prerequisites dialog box, you must download file 'DotNetFX40Client\dotNetFx40_Client_x86_x64.exe' for item 'Microsoft .NET Framework 4 Client Profile (x86 and x64)' to your local machine. For more information, see

A complete WiX 3.6 bundle example bootstrapping a .NET 4 Client Profile

谁说我不能喝 提交于 2019-11-29 01:48:56
问题 I tried to construct a working example of a WiX 3.6 installation script. We currently use WiX 3.5 and now we would like to begin installing the .NET 4 Client Profile framework as a pre-requisite for our MSI file that our product.wxs script creates. WiX 3.6 seems like the best way forward. Is there a functional example of how to do this with WiX 3.6? Here is our 3.5 script we use today: <?xml version="1.0" encoding="utf-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util=

.NET Framework 4 Client Profile + System.Web.dll?

可紊 提交于 2019-11-27 07:40:25
问题 I'm currently developing an application for .NET 4 Client Profile, as this is the version that will be present on most home computers through Windows Update. However, I cannot add a reference to System.Web.dll as it does not exist in this version - what should I do? Is it a good idea to deploy System.Web.dll along with my application, or won't that work? I really need HTTP connections and all, so I cannot modify my application as a workaround. Is targeting my application to .NET 4 (no client

How do you UrlEncode without using System.Web?

℡╲_俬逩灬. 提交于 2019-11-26 18:05:27
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? ToddBFisher System.Uri.EscapeUriString() can be problematic with certain characters, for me it was a number / pound '#' sign in the string. If that is an issue for you, try: System.Uri.EscapeDataString() //Works excellent with individual values Here is a SO

How do you UrlEncode without using System.Web?

孤街醉人 提交于 2019-11-26 06:12:49
问题 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? 回答1: System.Uri.EscapeUriString() can be problematic with certain characters, for me it was a number / pound '#' sign in the string. If that is an issue for you

Differences between Microsoft .NET 4.0 full Framework and Client Profile

蓝咒 提交于 2019-11-26 00:18:56
问题 The Microsoft .NET Framework 4.0 full installer (32- and 64-bit) is 48.1 MB and the Client Profile installer is 41.0 MB. The extracted installation files are 237 MB and 194 MB respectively, and once installed, they are 537 MB and 427 MB. This is a difference of 110 MB. What difference is there between the two packages? When is it preferable to install the Client Profile instead of the full .NET Framework? 回答1: What's new in .NET Framework 4 Client Profile RTM explains many of the differences: