The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
0answers
34 views

How to enable crystal reports viewer in toolbox vs2010

im using visual studio professional 2010. And i can't seem to enable the crystal reports viewer inside the toolbox. I already change the target framework into .NET FRAMEWORK 4 instead of .NET ...
0
votes
0answers
52 views

System.AccessViolationException in .NET 4.0 while connecting to SQL Database

I have created following code Dim ConnectionString As String = ConfigurationManager.ConnectionStrings("default").ConnectionString Dim con As New SqlConnection(ConnectionString) con.Open() ...
-1
votes
1answer
46 views

Which .NET Frameworks better to use [closed]

I made a class library that can be made either using .NET Framework 2 either .NET Framework 4 without making any change in code. Which one is better to use?
0
votes
1answer
57 views

What are the Equivalent methods to CopyTo() and WriteTo() in .Net Framework 3.5 and below?

I need to use .NetFramework3.5 for my application, but CopyTo() and WriteTo() methods are not available in 3.5. what are the equivalent methods in 3.5? when I run the code with 3.5 it is throwing ...
2
votes
1answer
93 views

Can application built with .NET 4.5 run on .NET 4.0?

My project is targeting to .NET 4.5. It doesn't use any new 4.5 methods, so it actually works fine on the machine with only .NET 4.0 installed. This is all good until I added some extension methods ...
1
vote
2answers
96 views

Alternative to Microsoft.Practices.EnterpriseLibrary.Data

Does anyone know an alternative to Microsoft.Practices.EnterpriseLibrary.Data which has since been deprecated and now when I bring it in to VS2010 for the 1st time it wont even compile. Even if i ...
1
vote
1answer
74 views

Visual Studio 2010 and .NET Framework 1.1.4.322

Is it possible to use visual studio 2010 and .NET Framework 1.4.322 on Windows 7? When I create a new project I can only choose .NET framework v2.0 or later. Is it possible to use v1.1.4.322 and where ...
4
votes
2answers
97 views

Is there a recommended approach to configuring a NuGet package targeting multiple frameworks in TeamCity using MSBuild?

I've read a handful of posts (see references below) and have yet to find a guide on best practices that is specific to my tech stack. The goal: Create a single NuGet package targeting multiple .NET ...
0
votes
0answers
18 views

Recurring invalid ISupportInitialize casts generated by VS2010 designer targeting .NET 2.0

I am working on a C++/CLI project in Visual Studio 2010 (version 10.0.40219.1 SP1Rel) targeting .NET 2.0. Several forms in the project make heavy use of SplitContainer objects. Every time I make a ...
1
vote
0answers
23 views

Errors while opening VS 2005 (framework 2.0) solution in visual 2010

we have a 2005 solution running on framework 2.0. I am trying to convert it into 2010. I opened it in 2010 and then kept targeted framework version 2.0 for all projects under my solution. While ...
0
votes
0answers
27 views

.NET Framework issue for conversion

I have downloaded one User control over net, which has developed by using .net framework 2.0. Now i am using VS2010. It is working good. But when i change the target framework 2.0 to 4.0, it says ...
1
vote
0answers
99 views

VS 2012 project load error, incompatible .Net version

I'm getting an error when I try to load a project in VS 2012. This project was created on the same machine and it was working fine but now it has started to complain about project target framework. ...
0
votes
0answers
187 views

Error Installing SharePoint Server 2013 for .Net FrameWork 4.5

I am installing the SharePointServer 2013 in my Windows Server 2012. I installed all the pre-requisites before installing the SharePoint. And all the pre-installations were successfully installed in ...
1
vote
0answers
422 views

Can't install .Net framework 3.5

I downloaded .Net framework 3.5.1 sp1 on windows server 2008 R2, 64 bit OS and every time i run the exe file i got an error message "You must use the Role Management Tool to install or configure ...
1
vote
1answer
201 views

How can I resolve this error: Loading the include file 'EF.Utility.CS.ttinclude' returned a null or empty string

How can I resolve these errors: Loading the include file 'EF.Utility.CS.ttinclude' returned a null or empty string. Value does not fall within the expected range. Tools Used: VS 2012, Entity ...
0
votes
1answer
361 views

New .NET 2.0 C++/CLI project has implicit dependency on mscorlib v4?

I created a new C++/CLI project in Visual Studio 2012, with .NET 2.0 selected as the framework on the project creation page. I have verified the "External Dependencies" (mscorlib.dll, System.Data.dll, ...
5
votes
1answer
324 views

Can a build server with .NET 4.5 installed successfully deploy a project targeting 4.0 to a server with only .NET 4.0 installed?

We've recently installed .NET 4.5 onto our continuous integration build server so that it can support new projects that utilize features of .NET 4.5. This build server is also used to build and deploy ...
0
votes
0answers
95 views

Fail to load any of the projects in a solution

Yesterday I opened the solution and everything was OK. Today I tried opening it and I'm getting the same error for all the projects: error : Could not load file or assembly ...
1
vote
0answers
48 views

AQTime can't profile code coverage on a unit test project based on .NET 4 and NUnit

I recently encounter a problem with AQtime when try to use it to profile code coverage on a unit test project which is based on .NET framework 4 and asserted by NUnit. Your comments and ideas are ...
-3
votes
1answer
127 views

Why do we need MSIL in .net Framework [closed]

I wanna know when we compile .net source code it gets first converted to MSIL and then into binary executable code. I know MSIL is machine and language independent code. But why it is converted to ...
0
votes
1answer
61 views

Can installutil be used to install a service written with a newer version of the .NET Framework

Can the installutil be used to install a service written with a newer version of the .NET Framework? For example can the version from .NET Framework 2.0 be used to install a service written in .NET ...
1
vote
2answers
978 views

Windows RT .NET compatability

I just need to know if I need the same framework to develop an app for Windows 8 for Tablets (Windows RT) and PCs or the tablet one still uses .NET compact framework.
0
votes
0answers
63 views

.NET Framework 4 keeps disappearing

I've built a winforms program targeting .NET Framework 4 Client Profile and installed it as a standalone exe on a Windows XP computer (not the one I built it on). I installed the framework and the ...
1
vote
0answers
61 views

How to manipulate a control without any pattern implemented?

I'm trying to implement the automation test via UIAutomation for our project. But lots of the controls are not standrad, and proper patterns are also not implemented for that controls. How should I to ...
2
votes
1answer
87 views

Targeting app to .NET Framework using Visual Studio 2010 / ClickOnce: Installing for “current user” not “all users”

Is there any way to tell the ClickOnce installer that if the targeted framework isn't available on the PC, to install it ONLY FOR THE CURRENT USER, not all users? The ClickOnce install of the .NET ...
0
votes
2answers
104 views

Alternatives for System.Xml.Linq to match Xpath

I have used System.Xml.Linq; to match Xpath from xml document. XElement and SaveOptions both get from System.Xml.Linq;. XmlNamespaceManager nsmgr = new XmlNamespaceManager(new ...
0
votes
1answer
487 views

Can't find target .NET Framework 4.0

I am trying on the project with mvcMusicStore, and installed framework v4.0 client. and when I am trying to target framework to v4.0 from the project it cant be found, where was the problem ?
0
votes
1answer
154 views

Error "Could not resolve mscorlib for target framework '

I am trying to add an entity of my database, MS 2012 web express return the error "Could not resolve mscorlib for target framework '.NETFramework,Version=v4.0'. This can happen if the target ...
4
votes
2answers
1k views

ERROR: Cannot find all types required by the 'async' modifier. Are you targeting the wrong framework version, or missing a reference to an assembly?

I have following configuration of my PC: Windows 8 Visual Studio 2012 .NET Framework 4.5 My Project Configuration is: WP 7.1 Silverlight 4.0 .NET Framework 4.0 CTP ASYNC (installed, using async ...
6
votes
3answers
1k views

Targeting .NET Framework 4 when Framework 4.5 is installed

I have VS2010 and VS2012 installed on my computer and had the .NET Framework 4.0 which I then upgraded to .NET Framework 4.5. However, I am still developing apps that need to work on .NET Framework ...
1
vote
1answer
607 views

What is the property reference for checking for .NET Framework 4.5 in WiX?

I am using WiX Toolset 3.7, and I need to check for the installation of .NET Framework 4.5 in my installer. However, the Documentation does not seem to be updated to include 4.5 properties. There is ...
3
votes
4answers
130 views

Is compiling Release and Debug going to generate different IL code + different machine code?

I heard compiling in Release mode generates optimized code than in Debug mode, which is fine. But is this optimization in the IL? is it in the machine code once the CLR runs it? is the metadata ...
0
votes
1answer
196 views

wix boodstrapper uninstalling .net framework but it shouldn't

I have a wix bootstrapper that is checking if .net framework 4.0 is installed and if it isn't it should install it. This works. but now i want to uninstall the program but it wants to uninstall the ...
1
vote
0answers
128 views

mscorlib replacement & native code generation

My problem is, I mainly create terminal applications (console applications) and send them to other people, run them on servers, on backup stores and more. When I create a new console app in Visual ...
0
votes
0answers
73 views

Install .Net framework 4.0 with silent installer for a windows application on client machine

I have a windows application targeting .Net Framework 4.0. The silent installer for this when installed on some other system require that the framework be available on that system for this application ...
1
vote
0answers
85 views

Prevent Anonymous Access to Content of the folder in .Net Framework 4.5

I have this following section in my web.config file in ASP.Net 4.5 project. I've added couple of .doc files into that folder. Whenever I run the project (either logged in or logged out) through VS ...
0
votes
2answers
680 views

Is It Safe to Install .NET Framework 4.5 on Windows Server 2008 Running .NET Framework 2.0?

I currently am running an ASP.NET MVC2 web application on my Windows 2008 R2 server and I'd like to upgrade my application to MVC4. This will of course require the installation of the later .NET ...
1
vote
1answer
3k views

Set up couldn't find update.inf file

I need to install a software build in .net platform that requires .net framework 4. Actually my problem is that I have a new laptop and I need to install a .net framework but while installation it ...
0
votes
1answer
126 views

.NET 2.0 Runtime DLL versions

I recently edited a resource file in VS2008 on a new project (that I've never worked on before -- it was in source control), and noticed that the runtime version changed from 2.0.50727.5456 to ...
0
votes
0answers
143 views

how can i add system.data.Entity.dll references for silverlight project

Now i am planing to use MergeOption in entity model(silverlight). For this i need to add system.data.entity.dll file. when i try to add system.data.entity dll file to my silverlight project it is ...
6
votes
4answers
33k views

redistributable offline .NET Framework 3.5 installer for Windows 8

Our company was testing our product (compiled for .NET Framework 3.5) on Windows 8. We have discovered that there is no .NET Framework 3.5 on Windows 8 and there are two possibilities to resolve this ...
3
votes
1answer
651 views

Generic dictionary with value type keys and reference type values

What code do you write to constrain a generic dictionary named MyDictionary to have value-type keys with reference type values? I think this was my answer: public class ...
1
vote
1answer
534 views

Installing of .net framework 4 after installing plesk 11

I have a windows 2008 server with plesk 11. I installed plesk and after adding few hosts I realized that .Net 4 is missing so I download and Installed .Net 4 but now Plesk does not have .Net 4 in host ...
0
votes
3answers
70 views

Changing framework from 3.5 to 4.0 at Server

I know my Question is little bit basic but have to ask about this: i have my website build in Visual Studio 2008 with .Net framework 3.5 that site is hosted on my server. now because of some ...
0
votes
0answers
146 views

vs2003 install project launch condition to check for .net framework 4.0 installed

I have a VS2003 deployment project which need to add a launch condition to check if .Net framework 4.0 installed in the target machine. I did the following try: 1- add .Net framework launch ...
1
vote
0answers
87 views

Moving solutions from 32bit XP to 64bit Win7 --> compile error

I developed some solutions (C#, VB.Net) with VS2008/VS2010 on a XP-computer (32bit). The solutions uses .NET Framework 2.0 and 3.5 and references to 32bit Com-objects (dll, exe). The solutions are ...
4
votes
0answers
292 views

SInglePageApplication - DbDataController and HttpControllerConfigurationAttribute error

I am trying to work through the example from Steve Sandersons SPA video. http://channel9.msdn.com/Events/TechDays/Techdays-2012-the-Netherlands/2159 Much like the fellow in this question - Could not ...
-3
votes
5answers
139 views

How delete items from Dictionary

I have Dictionary<string, List<string>> Dic = new Dictionary<string, List<string>>(); How delete first 1,2,3 elements From Dic. I dont know how make it with "foreach" ...
-3
votes
1answer
120 views

Target Framework and C# version queries

Is the C# version related in any way to the targeted framework? How do I know which C# version I'm using? How can I change the C# version I'm using? What would I lose by going from .NET Framework 4 ...
2
votes
1answer
393 views

How can I change the target-framework in Visual Studio 2010 (unit-Test)?

I developed a small webpart. Now I want to create a unit-test for this webpart. I used this tutorial to create the unit-test. The presenter change the target framework from .Net 4.0 to 3.5, but I ...

1 2 3