visual-studio-2015

Can I use an existing dataset in SSRS?

吃可爱长大的小学妹 提交于 2020-01-17 06:18:29
问题 Related to a question I've asked earlier regarding SSRS, could anyone please tell me - Is it possible to reuse an existing dataset in SSRS? I know we can have shared datasets and we can convert a dataset to a shared one too. Currently we are using Crystal Reports. We are trying to migrate to SSRS. So we were trying to reuse the existing dataset which we've used to create Crystal Reports. There is no option I could see to convert this dataset to a shared dataset so that I can reuse it. I could

Can I use an existing dataset in SSRS?

不想你离开。 提交于 2020-01-17 06:18:27
问题 Related to a question I've asked earlier regarding SSRS, could anyone please tell me - Is it possible to reuse an existing dataset in SSRS? I know we can have shared datasets and we can convert a dataset to a shared one too. Currently we are using Crystal Reports. We are trying to migrate to SSRS. So we were trying to reuse the existing dataset which we've used to create Crystal Reports. There is no option I could see to convert this dataset to a shared dataset so that I can reuse it. I could

How do I enable native debugging from an asp.net core project in Visual Studio 2015?

喜夏-厌秋 提交于 2020-01-17 05:45:10
问题 In other VS 2015 C# project types the Property Page for the project contains a checkbox under the Debug tab which enables native debugging. I cannot see this in an Asp.Net Core project and am therefore unable to step into a C++ Dll dependency which I have the code for. 回答1: It would have a limitation for native debugging directly. Reference: No native code debugging in CoreCLR console application projects in VS2015? One workaround is that using the "Attach to process". 来源: https:/

visual studio 2015 WPF designer not loading stating System.ArgumentException An item with the same key has already been added

China☆狼群 提交于 2020-01-17 03:22:07
问题 can someone please help me keep getting this error when trying to create my WPF solution and I need to beable to use my deigner for my studies thanks heaps. System.ArgumentException An item with the same key has already been added. at System.ThrowHelper.ThrowArgumentException(ExceptionResource resource) at System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add) at System.Collections.Generic.Dictionary`2.Add(TKey key, TValue value) at Microsoft.VisualStudio

Ripple emulator failing to emulate

守給你的承諾、 提交于 2020-01-17 01:48:47
问题 I have been using Ripple via Visual Studio 2015 to debug my Ionic app but it has stopped working for me. I get a message saying that it looks like the zombie apocalypse has started and two options - "Wait" or "Fire". The "Fire" is supposed to purge Ripple's settings. Neither works. I created a new app using the Ionic tabs template, and it fails to emulate too, so I don't think the problem is in my app. Any advice on how I can get Ripple working again? Edit I opened the Javascript console

Where is the template for applicationHost.config file stored

余生颓废 提交于 2020-01-17 01:42:08
问题 When I create a new Web application using VS2015, I get an applicationHost file created in the new .vs folder. This file contains configuration information for IIS Express. Where is the template for this file located? 回答1: I see the files at 2 locations (32Bit and 64Bit Program Folder) in my Windows 10 + VS2015: "C:\Program Files\IIS Express\config\templates\PersonalWebServer\applicationhost.config" "C:\Program Files (x86)\IIS Express\config\templates\PersonalWebServer\applicationhost.config"

Linking against third-party libraries when doing cross-platform build in Visual Studio 2015

若如初见. 提交于 2020-01-17 01:26:08
问题 I am trying to compile a Shared Object (.so) with Visual Studio 2015 RC. I am linking against the Opus Codec libs in my stdafx.h: #pragma comment(lib, "..\\..\\opus-1.1-beta\\win32\\VS2010\\Win32\\Debug\\celt.lib") #pragma comment(lib, "..\\..\\opus-1.1-beta\\win32\\VS2010\\Win32\\Debug\\opus.lib") #pragma comment(lib, "..\\..\\opus-1.1-beta\\win32\\VS2010\\Win32\\Debug\\silk_common.lib") #pragma comment(lib, "..\\..\\opus-1.1-beta\\win32\\VS2010\\Win32\\Debug\\silk_fixed.lib") #pragma

Visual Studio 2015 / Win10: appcrt140.dll missing

青春壹個敷衍的年華 提交于 2020-01-16 08:51:26
问题 I'm currently converting a solution of command line executables linking against static libs from VS2013 to VS2015. Everything compiles and linkes fine, however, when executing the command line executable the new appcrt140.dll is not found: I installed both the x86 and x64 VC redistributable. From what I read online, it should be part of Windows10, however, I'm not able to detect this file on my system. Also, the desktopcrt140.dll is missing on my system; both of which should be part of the

Looping through tables in Entity Framework 6

徘徊边缘 提交于 2020-01-16 06:28:49
问题 sorry for the simple question. I'm new at this. I have an entity model with several tables and I'd like to get a list of the tables, then I'd like to get the contents of a column from the tables. For example, I have tables of subjects: Biology, Chemistry and Physics, each with a column className (among other columns). I'd like to loop through the tables, get the name then get the contents under that column since I need to ToList() it. I want to do something like this: for each (table in

How do I exclude the .cs files within an artifact from a vs-team-services CI build?

谁说我不能喝 提交于 2020-01-16 04:37:08
问题 I'm new to vs-team services, right now I have a CI build setup that will have a copy publish artifact step to upload the artifact to the vsts server. And there is an option for me to filter out the Contents of the artifact, which I've put in the path relative to the root because under my repository I have multiple projects, and this build is only targeting one of them. Now my question is, the artifact is being published, but it includes everything under that path, meaning all the .cs files