visual-studio-2012

How to copy a work item and its tasks

对着背影说爱祢 提交于 2019-12-30 16:27:11
问题 I would like to make a copy of a work item and all of its task. I'm using this version of the product: 11.0.50727.1 I'm using Scrum 2.0 template for the project If this is possible, how can I do it? 回答1: Have you tried Excel? It's your best friend when doing mass editing of work items. You can copy/paste a number of work items. by selecting all columns except the ID column. Copy them and then paste them at the bottom of the open query in Excel. You need to ensure you're using a Tree based

CUDA and C++ simple project

让人想犯罪 __ 提交于 2019-12-30 12:25:13
问题 I am trying to create a CUDA + C++ project. Basically a .cpp project that calls for some CUDA kernel. So I simply followed the example here, which basically adds two vectors. The kernel does the summation job: http://blog.norture.com/2012/10/gpu-parallel-programming-in-vs2012-with-nvidia-cuda/ Here is the code, #include <iostream> #include "cuda_runtime.h" #include "cuda.h" #include "device_launch_parameters.h" using namespace std; __global__ void saxpy(int n, float a, float *x, float *y) {

CUDA and C++ simple project

╄→гoц情女王★ 提交于 2019-12-30 12:25:09
问题 I am trying to create a CUDA + C++ project. Basically a .cpp project that calls for some CUDA kernel. So I simply followed the example here, which basically adds two vectors. The kernel does the summation job: http://blog.norture.com/2012/10/gpu-parallel-programming-in-vs2012-with-nvidia-cuda/ Here is the code, #include <iostream> #include "cuda_runtime.h" #include "cuda.h" #include "device_launch_parameters.h" using namespace std; __global__ void saxpy(int n, float a, float *x, float *y) {

Unable to add Xamarin.Android and Xamarin.iOS to PCL

≯℡__Kan透↙ 提交于 2019-12-30 10:57:06
问题 I'm trying to workout a sample project using MvvmCross, but I'm stuck with the first step of adding the frameworks in VS2012. When I try to add Xamarin.Android and Xamarin.iOS framework in a PCL project, it is showing an error There is no available functionality that is portable between the frameworks you have selected I tried following the steps in this answer, but it didn't worked. Can someone shed some light on this issue. Thanks. 回答1: Recent (mainly good) changes from Microsoft mean that

retrieving data from SQL in VB (part 2)

瘦欲@ 提交于 2019-12-30 10:53:02
问题 I am trying to populate a listbox by retrieving data from a database through sql. I have asked this question earlier but i was using a different configuration and the one i'm using now isn't giving any results. retrieving data in VB from SQL That is my old post. I will now provide the code to the newer version of my attempt. Imports System.Data.Sql Imports System.Data.SqlClient Public Class Form1 Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load Dim conn As New

.dll Plugin that uses functions defined in the main executable

99封情书 提交于 2019-12-30 10:04:20
问题 I have a Main executable that loads . dll / .so Plugins, which works just fine in Linux but on windows(Visual Studio 2012), it fails with undefined reference errors. The plugin uses functions like session->SendLine("bla") which are defined in the Main executable. (class of session ans methods defined in a .h included in the plugin, but the actual function in a .cpp compiled in main exec). tl;dr: "I need the windows linker to ignore undefined references in plugins, defined in the main

.dll Plugin that uses functions defined in the main executable

允我心安 提交于 2019-12-30 10:02:46
问题 I have a Main executable that loads . dll / .so Plugins, which works just fine in Linux but on windows(Visual Studio 2012), it fails with undefined reference errors. The plugin uses functions like session->SendLine("bla") which are defined in the Main executable. (class of session ans methods defined in a .h included in the plugin, but the actual function in a .cpp compiled in main exec). tl;dr: "I need the windows linker to ignore undefined references in plugins, defined in the main

MySQL Connector for Visual Studio 2012 Update 3

戏子无情 提交于 2019-12-30 09:37:48
问题 since I've installed mysql connector 6.7.4 and Update 3 for Visual Studio 2012 the MySQL Connector is gone away from the Connection Manager dialog. It was a working project, so the data source configuration is correct. But when I open my existing *.edmx file I get an error (see the picture below). I've tried to reinstall the connector with rebooting between each installation step, controlled the GAC but I cannot get the connector working back again. I believe it is related to the Update 3, as

How to exclude certain folders from Visual Studio 2012 detected changes list?

你说的曾经没有我的故事 提交于 2019-12-30 08:12:47
问题 In Visual Studio 2012 / Team Explorer / Pending Changes there is a link to list of files with detected changes inside the solution. How can I make Visual Studio NOT to detect pending changes in _ReSharper.* and Packages folders? 回答1: You can manually add a .tfignore file to your solution to ignore specific files, extensions or folders. The items defined in that file will not be considered as a change. If you click on the 'detected changes' you can also ignore items from within Visual studio

No syntax highlighting or intellisense for C# files in VS 2012

帅比萌擦擦* 提交于 2019-12-30 08:06:09
问题 I've just installed the RTM version of VS2012 Premium from MSDN (11.0.50727.1). I have created an C# ASP.NET MVC 4 application, and a C# console application, but neither give me syntax highlighting or Intellisense for the following file types: cs cshtml BUT all other file types seem to work fine, including: html js XML CSS config I am running on Windows 7, virtualized in VMWare Fusion 5, on Mac OSX Lion. I also have VS 2010 installed in the same VM, which has and still does run fine. I have