Is SQL Server Compact discontinued from Visual Studio 2013?

Yes, SQL Server Compact has been deprecated (see the comments on this Connect item). You should be using SQL Server Express or SQL LocalDB. Some posts: http://blogs.msdn.com/b/sqlexpress/archive/2011/07/12/introducing-localdb-a-better-sql-express.aspx http://blogs.msdn.com/b/jerrynixon/archive/2012/02/26/sql-express-v-localdb-v-sql-compact-edition.aspx http://erikej.blogspot.com/2011/01/comparison-of-sql-server-compact-4-and.html http://erikej.blogspot.com/2012/07/the-state-and-near-future-of-sql-server.html

Publish Multiple Projects to Different Locations on Azure Website

Go to the Configure tab for the site in Azure portal. Scroll all the way to the bottom then add a new application where ever you want like Project2 below. Basically the ‘Project2’ part is the URL after the root “https://stackoverflow.com/” and the ‘site\wwwroot\Project2’ is where the actual folder should live under the site root … Read more

“There was an error running the selected code generator” in VS 2013 scaffolding

VS2013 Error: There was an error running the selected code generator: ‘ A configuration for type ‘SolutionName.Model.SalesOrder’ has already been added …’ I had this problem while working through a Pluralsight Course “Parent-Child Data with EF, MVC, Knockout, Ajax, and Validation”. I was trying to add a New Scaffolded Item using the template MVC 5 … Read more

How can I set the dpiAware property in a Windows application manifest to “per monitor” in Visual Studio?

New in Windows 10 is dpiAwareness as well as dpiAware, so we need to update this example a bit. Now, it is fine because if dpiAwareness does not exist, then the settings will be inherited from dpiAware. To enable DPI awareness in full, with the latest Win10 support (see Ref URL for other possible options), … Read more

Visual Studio 2013 and ASP.NET Web Configuration Tool

On the console, copy and paste exactly what is written here: “C:\Program Files\IIS Express\iisexpress.exe” /path:c:\windows\Microsoft.NET\Framework\v4.0.30319\ASP.NETWebAdminFiles /vpath:”/asp.netwebadminfiles” /port:8089 /clr:4.0 /ntlm It doesn’t matter if you open cmd.exe with administrator privileges or not, just copy paste the above code on the console and don’t exit with “q” until you’re done! Then open a browser window and write … Read more

External VS2013 build error “error MSB4019: The imported project was not found”

I had the same issue and find an easier solution It is due to Vs2012 adding the following to the csproj file: <PropertyGroup> <VisualStudioVersion Condition=”‘$(VisualStudioVersion)’ == ””>10.0</VisualStudioVersion> <VSToolsPath Condition=”‘$(VSToolsPath)’ == ””>$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath> </PropertyGroup> You can safely remove that part and your solution will build. As Sielu pointed out you have to ensure that the .proj file … Read more

Ignore Typescript Errors “property does not exist on value of type”

I know the question is already closed but I’ve found it searching for same TypeScriptException, maybe some one else hit this question searching for this problem. The problem lays in missing TypeScript typing: var coordinates = outerElement[0].getBBox(); Throws The property ‘getBBox’ does not exist on value of type ‘HTMLElement’. The easiest way is to explicitly … Read more

Installer with Online Registration for Windows Application

One-Shot Setups: “A setup is run once, an application can be started again – in order to resolve and debug problems interactively – with meaningful error messages show to the user.“ Hence: avoid license validation in the setup. Short version on licensing. License Key: Preferring to deal with license keys in your application seems logical … Read more

Difference between std::regex_match & std::regex_search?

regex_match only returns true when the entire input sequence has been matched, while regex_search will succeed even if only a sub-sequence matches the regex. Quoting from N3337, ยง28.11.2/2 regex_match [re.alg.match] Effects: Determines whether there is a match between the regular expression e, and all of the character sequence [first,last). … Returns true if such a … Read more