How do you reference EPPlus dll? - visual-studio

Sorry to ask but how do you refernce EPPlus dll in a .NET project
Usually i just do something like using EPPlus; but did not work this time.
my research show
using OfficeOpenXml;
using OfficeOpenXml.Style;
I did not find it.

I fixed this by targeting the .net framework version 4

using OfficeOpenXml; is correct for EPPlus. Check the Object Browser :)

If Visual Studio is giving you grief over the using OfficeOpenXml;. You need to install NuGet Package Manager.
Simply go to the Visual Studio 2010 Menu > Tools
Select Extension Manager, Enter NuGet in the search box and click
Online Gallery. Let it Retrieve information…
Select the retrieved NuGet Package Manager (you may have to do some
scrolling to find it), click Download. Let it Download…
Click Install on the Visual Studio Extension Installer NuGet Package
Manager. Wait for the installation to complete, and answer any
prompts.
After the Package Manager is installed, you need to follow the prompt
at the bottom of the Extension Manager window to restart Visual
Studio.
After it opens back up, go to Visual Studio 2010 Menu > Tools > NuGet Package Manager > Manage NuGet Packages for Solution... And install EPPlus - Create advanced Excel spreadsheets using .NET.
This should get you set up reading Excel files!

Related

Cannot find UnityEngine.InputSystem

I am currently working on a new unity project and to be honest i am new at this.
I need to use the InputSystem package but Visual studio does not recognize it.
This is the version of my VS. Microsoft Visual Studio Community 2019 Version 16.9.3 and the version of Unity is 2020.2.1
As you can see by the picture, my VS already knows that I am working in a Unity project.
So the first thing that I tried doing is to regenerate project files but it didnt work. I also selected my VS as my default external script editor.
This is my external tools.
I re-installed VS using unity hub but nothing happend.
Do you have any suggestions? I followed some tutorials I saw over the internet but I am still getting no positive results and to be honest, I am getting out of ideas.
Just tested out the package installation. I installed the package in a fresh, empty Unity project. Here are the steps that I went through which worked in my case:
Locate the Input System package in the Package Manager
Click install
A warning prompt will appear, click yes
Unity Editor should now get re-launched on it's own, wait for that to happen
If Visual Studio is open, close it
Open Visual studio - right click on the Assets folder and select Open C# project
UnityEngine.InputSystem namespace should now be available, if not, re-open Visual Studio one more time
Let me know if it works for you.
For me works when I install .NET and .NET Core and reboot the computer. (made this on Windows)
https://dotnet.microsoft.com/en-us/download
https://dotnet.microsoft.com/en-us/download/dotnet/3.1

installation of xunit.net in visual studio 2017

i did not find xunit.net Test extensions in visual studio 2017 so what are the other possible ways to find it? or what if i install xUnit.net.TestGenerator?
Here is a complete guide, I only quote the main steps
Open your solution
Right click on the project and select Manage NuGet Packages...
Pick the tab Browse
Search for xunit.
Click install
Additionally, you might want to install xunit.runner.visualstudio. so the test runner will recognize the tests.
while adding a new item search for
x-unit
under the online tab, if you cant find it under the installed tab. Then install the template. After installation again search for xunit under the online tab or you can find the template at online/templates/visual c#/visual studio essentials. This time you were able to use the template.

How do you install the unit test generator extension in Visual Studio 2013 express

Ways of doing this that don't work
'tools' -> 'Extensions and Updates...' and search for it and press download. - The problem with this is it doesn't come up with a unit test generator option.
Download it from http://visualstudiogallery.msdn.microsoft.com/45208924-e7b0-45df-8cff-165b505a38d7 then double click on the download, which auto installs it. - Unfortunately double clicking does nothing, I then installed a zip extractor (the file is a renamed zip file), but that didn't help.
download it, then 'tools' -> 'extensions manager'. - There is no extensions manager option.
There is no extensions folder in the visual studio 2013 folder, but I tried pasting the folder (zipped and unzipped) and the contents in the packages folder.
This is what the unzipped folder looks like
Visual Studio Express does not support 3rd party extensions. Even though this was produced by the VS Rangers it's still considered 3rd party.
Willy-P. Schaub -
The Unit Test Generator extension is supported on Visual Studio Pro, Premium and Ultimate. We do not currently support VS Express.
From the extension's Q & A Tab
This is how I did it on VS 2013 Ultimate, if you have a different edition, it may be missing some options, but I would assume something like Extensions should follow the same process
Go to Tools -> Extensions & Updates -> Online
Search Unit Test Generator, should be top one I think
Click Download
After Download completes accept License and hit Install
Click on Restart Visual Studio on the bottom right of the Extension Manager Window

set property 'system.windows.resourcedictionary.deferrablecontent' threw an exception

I'm running Visual Studio 2012, when I add a new File/Reference to a project the message box appears showing the error message
set property 'system.windows.resourcedictionary.deferrablecontent' threw an exception
I read an MSDN article suggesting to run the command devenv /resetuserdata on visual studio command prompt to resolve this problem, tried it but didn't work for me. In fact the command prompt shows the Unknown Error message.
Some addins cause this issue for me so have had to workaround it whenever it occurs:
In Vis studio -
Tools > Options > Environment > Add-in Security, uncheck 'Allow Add-in components to load', OK
Restart vis studio
The error shouldn't occur anymore, so go back to
Tools > Options > Environment > Add-in Security and re-check Allow Add-in components to load, OK
To be specific, I get this error when trying to add files to projects and manage Nuget Packages.
Update
I now make a point of opening
'Tools > Nuget package manager > Manage nuget packages for solution'
whenever I open up a new instance of Vis studio, before loading a solution, just to make sure the window loads properly
That way I know I won't get this issue.
In my case it was a style with the same key defined twice in a ResourceDictionary (WPF)
I have Windows azure tools for Microsoft VisulStudio 2013- v2.2 and Windows azure tools for Microsoft lightswitch VisulStudio 2013- v2.2.
I uninstall only Windows azure tools for microsoft lightswitch vs 2013 .
It's working fine...
I fixed it. The resolution was to remove the Windows Azure Tools for Visual Studio 2012 which I was not actually using, and the error went straight away.
In my case it was to first launch Visual Studio in safe mode. You can create a shortcut for visual studio with a target like this:
'"F:\Program Files\Visual Studio\VS2013\Common7\IDE\devenv.exe" -safemode'
Once launched in safe mode, you can remove the problematic extension via the Addin Manager. However, this wont work for some extensions, as the uninstall option might be disabled for certain extensions when running in safe mode, particularly if you have already uninstalled another extension in the same session.
In My case the problem was caused by Paradox Game engine, in which I had uninstalled it via 'Programs and Features' - which in return did not remove the extension which was originally installed via Nuget package. Uninstalling Paradox via "Programs And Features" left the extension itself still registered in Visual Studio, presumably causing a hidden NullReferenceException.
This issue can be caused by any extension that may have an error in it, or by extensions that were not properly uninstalled.
Also, see this article...
The mentioned issue can be resolved by simply restart the Visual Studio. :P
Also seem to be able to get around this by closing the project and vis studio instance, re-opening, then when the start page/open project screen appears selecting Tools > Extensions and Updates..., then pressing Close
Now open the project and the error doesn't get thrown when trying add files or manage nuget packages, weird.
Just annoying you have to remember to open Extensions and Updates each time...
Other wise make sure given Resourcedictionary.xaml path is correct or not
I had to remove Xamarin from Add/Remove Programs in Control panel and restart Visual studio to fix this.
I had this problem with My Devexpress Project in VS 2015
What finally worked for me was.
Close my solution,
Close Visual Studio,
Open Visual Studio,
Create a New dummy project,
Add a form to it,
Close and save the new project,
Reopen original project and all was ok.
for everyone else who are working in silverlight sdk environment with windows phone8 sdk.
The versions of sliverlight which are compatible with visual studio versions -
vs2012- sliverlight sdk 4
vs2013- silverlight sdk 5
I was integrating in vs2013 and as soon as I updated it with silverlight sdk 5, The errors went away.
In my case it was the Line Endings: you can have different formatting and by copy pasting some code one file got a different Line Ending. It was enough to File > Save As and then click the little arrow next to the save button.
Then click on save with encoding and choose the one you are using in all other files.
See Andrew Truckle's answer.
I hope this helps

Cannot control startup projects in Visual Studio

Visual Studio 2012 will not allow me to set multiple startup projects.
I have tried:
Right-click the solution / Set StartUp Projects...
Result: Nothing happens.
View / Property Pages
Result: Popup "Object reference not set to an instance of an object."
I have no add-ins running, and disabled all extensions that can be disabled without uninstalling. Active extensions are
Microsoft Web Developer Tools
NuGet Package Manager
Visual Studio Extensions for Windows Library for JavaScript (1.0.8377.0 AND 1.0.9200.20512
VisualSVN
Is this a known issue? Is there a fix/work-around? Can I specify the startup projects by editing the .sln/.csproj file if the VS2012 UI continues to fail?
I'm pretty sure this has to do with NuGet Package Manager. I did as described here.
Uninstalled NuGet Package Manager in Tools => Extensions and Updates... and restarted Visual Studio 2012/Visual Studio 2013 Preview. Now I can happily configure my solution properties again!
Installed NuGet Package Manager again and the problem reappeared. :(
This is a palliative answer. If there's a definitive answer, please share it! :)
Make sure you vote on this Connect Bug.
Found this post while searching for a related issue I was having. I thought it would be helpful for others to know what I found.
My problem was trying to switch between start up projects, IIS Express would always load the same project. My solution was to edit the project properties >Web> assign a different port number for each project. Now when I select Set as StartUp Project... it actually works
Note** I did not have any issues with NuGet probably because I'm using the released version of 2013

Resources