Where can I find the "Work Offline" option in SSIS location - ssis

I was having trouble finding the work offline option in SSIS. I was receiving a suggestion from visual studio that I should try to set Work Offline to off. I am going to answer this myself.

Make sure you are on the control flow tab and right click and you will see the option to work offline or not.
They took away the dropdown of SSIS in my version of visual studio (Installed September 2021). I know it might seem simple but it took me some time to find it and the internet was not helpful in my searchings.

Related

Telerik KendoUI Mvc SSRS Slow

So I recently installed Telerik UI for ASP.NET MVC and it seems to have totally bodged my SSDT/SSRS projects in visual studio. The projects work but can take upwards of 20-30 seconds to save making them basically unusable.
Originally we thought this issue may have been have been something to do with ReSharper however having contacted their support and done some captures they said that it looked like Telerik was the culprit.
Extract from the capture trace here...
Having uninstalled Telerik completely low and behold my save speeds go back to normal (less than a second).
Now full disclaimer - we are not using the most up to date version of Telerik (it's a slightly older version 2018.2.620) as this is the version we are licensed for which I would like to think wouldn't make a difference but putting it here just in case!
Has anyone else experienced this issue with SSRS projects? It's strange as, as far as I can tell, there is nothing in the project that should be referencing any MVC/Telerik code.
We have tried this on multiple machines and all seem to suffering the same problem although looking at Google I can't find anyone else reporting the same issue... Annoyingly I can't post of the telerik forums directly as they only let you do that if you have an active account...
If anyone can assist I would really appreciate it!

BIML - How to set .NET Framework version in a Script project using BIMLExpress

I'm creating script tasks in SSIS packages using the free BIMLExpress. Since we have different versions of .NET Framework installed in our environment I really need to be able to set the Framework version for the script project. Although I know how to change it manually, it would be very difficult to change it manually.
I have already tried looking for a solution and this answer suggests to use TargetFrameworkVersion property but I don't see that property at all, I've tried using it with no effect. I don't know if it only works with BimlStudio the paid version.
I'm using BIMLExpress 5.0.61915.0 with Visual Studio 2015.
Any help is greatly appreciated.
Thanks
I opened the generated .dtsx package and found that the TargetFrameworkVersion node placed inside of a separate PropertyGroup node. After I had moved it out to the first PropertyGroup of the same arrayElement node, then reopened my package in Visual Studio again, issue was gone! So you can write a script to move TargetFrameworkVersion node into the proper place for now.
Varigence support team told me that a public preview release is coming late next week which will include a fix for that.

Visual Studio will not run things in browser and certain shortcuts do nothing

I'm new to JavaScript (/html in general) and to visual studio. I seem to have two different issues: I'm having trouble running code in browsers, and some of the keyboard shortcuts are broken.
I've recently installed Visual Studio 2017. Everything seems great except I need a way to test my open file. I've looked online at certain guides which tell me to configure the task runner to be able to do so. The problem is, to get to the tasks.json which I need to edit, I have to open the command palette with ctrl + shift + p, which doesn't seem to work. Additionally, I can't find any other way to open the command palette using the bar at the top nor can I find any other way to open tasks.json. Also, I noticed that I should be able to run code in browser using the "View in Browser (Google Chrome)" and "Browse With..." options under "file". The keyboard shortcut doesn't work for View in Browser, and when I click on both options, I get a dialogue box with the error "The operation could not be completed. Class not registered".
How can I set things up properly, or at least be able to properly test my code?
I think what you need is Visual Studio Code, not Microsoft Visual Studio.
Both were similar but target different programming platform.
If you want to develop web application, HTML/CSS/ts/js etc, better if you use VS Code.

Resharper 8 slows down the vs 2013 razor editor

I having problems with resharper in visual studio 2013 razor editor. Trying to move to another line of code with mouse gets about 1 sec to complete. Moving with arrows is a bit faster. Intelisense and code completion is very slow also.
I'm using an Core i7, 12GB DDR3, RAID0 SSDs PC.
Any help would be appreciated.
Thank you.
I had the same problem. I manage to solve this by following the steps in this blog.
I didn't have to do all of the steps. The step that "saved" me was
Disable "Rich client visual experience" in the "Options -
Environment". Here's how that settings page should look:screenshot
I hope this will solve your problem.
The solution (Disable "Rich client visual experience" ) does not work for me.
I noticed that the problem only occurs when a document is reopened. If the document is already open when you open the Solution not the problem occurs.
Devexpress published an update to their vs menu integration (i think) which solves the problem.
https://www.devexpress.com/Support/Center/Question/Details/Q561434
Thank you all.

"Post build event error"

I am using Visual Studio 2008 to build my projects.
I often take existing sample code and edit it and toy around with it, as I am just learning and I'd like to advance my skill.. it's nice to have a template to work with.
That being said, I often get the build error "Post build event failed". This is often accompanied by a "could not find xxx.sbr file" or something. I do not know what an sbr file is, not a "post-build event". Re-building doesn't seem to help, and clearing all the files out before tying another build does not help either.
That being said, the executable still always gets built.
I was wondering:
What is a post build event and what are the implications/causes of its failure?
What is an sbr file? I tried researching this a bit.. a "Source Browse File"? This site seemed pretty informative: http://www.ehow.com/facts_5657521_file-extension-sbr_.html
The problem is, I don't understand why the compiler would complain about not finding this (isn't it supposed to MAKE this?) and what EXACTLY it does ("enables Microsoft Visual Studio to access your source code" - can't it do this anyway?)
Thanks!
R
post build event is just a command you can have visual studio run after it's finished - maybe to kick off tests or build an installer.
It's in properties->build events in the menu - right click on the project.
The SBR file is used by visual studio to browse sources and lookup which function is in which file. I have had problems where somehow it's internal list of dependencies gets screwed up and it always rebuilds one of them.
Try a clean and rebuild, then try quitting visual studio and deleting the .ncb file