Quantcast
Channel: Visual Studio General Questions forum
Viewing all 21115 articles
Browse latest View live

Visual Studio 2017/ VS Installer fail to launch due to "Unknown Hard Error"

$
0
0
Hi, since two or three weeks I am unable to start some of my programs on my private laptop. I am using Windows 10.

tl;dr; I've managed to answer my question but I still decided to leave this open for future reference or troubleshooting tips.

I've tried to launch Visual Studio 2017 15.7 (but to be honest I am almost certain that it is not a version issue) while in safe mode(safe boot) and I saw critical pop-up saying "Unknown Hard Error".
I've tried to launch Visual Studio installer in order to repair the installation, but it was very much the same. (same error occurred).
Lastly, I've tried to launch Event Viewer in order to see any application errors only to realize that same error.

I read around internet and found where the log files of Visual Studio reside and managed to read them:
08/18/2018 12:22:36 : Information : Log configuration: $SERVICEHUBTRACELEVEL=""
08/18/2018 12:22:36 : Error : Error starting service 'RemoteSettingsProviderService' requested by RemoteSettingsClient (pid: 9388): Hub host 'desktopClr', PID: 8036 exited. code: '2148734214'.
08/18/2018 12:22:36 : Error : Error starting service 'SetupEngine.ProductsProvider' requested by ProductsProvider (pid: 9388): Hub host 'desktopClr', PID: 8036 exited. code: '2148734214'.
08/18/2018 12:22:36 : Error : Error starting service 'SetupEngine.Installer' requested by Installer (pid: 9388): Hub host 'desktopClr', PID: 8036 exited. code: '2148734214'.
Searched this error a bit in internet but, there was nothing related to this specific exit code so I am at dead end I am afraid.

After reading a bit about the "Unknown Hard Error" most of the places mention that this might be caused due to corruption of Windows registries which I think I can relate, since I was playing around with some of them while doing one of my school projects.

I had to do some drawing so I've decided to use SIMD instructions and I found these two scripts in one of the dotnet-examples repositories of github.
@echo off
setlocal

:: This will remove the markers that enabled RyuJIT & SIMD 
reg delete HKCU\SOFTWARE\Microsoft\.NETFramework /v AltJit /f /reg:64 > NUL
reg delete HKCU\SOFTWARE\Microsoft\.NETFramework /v FeatureSIMD /f /reg:64 > NUL

and 

@echo off
setlocal

:: This will enable RyuJIT

reg add HKCU\SOFTWARE\Microsoft\.NETFramework /v AltJit /t REG_SZ /d "*" /f /reg:64 > NUL

:: This will enable SIMD

reg add HKCU\SOFTWARE\Microsoft\.NETFramework /v FeatureSIMD /t REG_DWORD /d 1 /f /reg:64 > NUL

While writing this question I again I used script for "disabling" which turns out it fixed the problem, however I think I will leave the question open(if you decide close it) for future reference of the exit code. (might be helpful for the next guy that tries to track it) also I am still not sure if this script is broken or there is a bug into desktopCLR, maybe you can tell me?

Visual studio crash when updating a database table

$
0
0
Hi

I want to create a simple data base Windows Form App.

I add a Service-based Database to my Project, so far so good.

Now I want to add a table to this DB so I go to Server Explorer> Data Connections >MyDataBase>Tables 
and right clic and select add new table, the dbo.table design view is shown and I added some columns to my table. 
Then I press the Update button and every time I did this my Visual Studio closes and restart and the tables are not created.

Any ideas of what I'm doing wrong? o what could be happening?

so far I've tried in two machines and the results is the same.

regards,

Carlos


VS 2017 Timer

$
0
0
Why don't I have a timer in my toolbox?

tac

Build errors for ARM64 intrinsics on Visual Studio 2017 Preview

$
0
0

Hi,

I am trying to a C++ program for ARM64 including ARM64 intrinsics (arm64intr.h) on Visual Studio 2017 Preview. Getting error message like "#error This header is specific to ARM targets" while building the same.

This is how my sample code looks like - 

----------------------------------------------------------------------------------------------------------------------------------------------------------

#include <iostream>
#include <arm64intr.h>

int main()
{
    _arm_usat(31, 0, 0, 31);
    std::cout << "Hello World!\n"; 
}

----------------------------------------------------------------------------------------------------------------------------------------------------------

Please guide me with a solution or any work around for the same.

Thank you in advance.

Regards,

Shweta

Error while installing extension (specflow) in Visual studio 2017: Element not found. (Exception from HRESULT: 0x80070490)

$
0
0

Below is the log details for error.

8/17/2018 9:50:15 AM - System.Runtime.InteropServices.COMException (0x80070490): Element not found. (Exception from HRESULT: 0x80070490)
   at Microsoft.VisualStudio.Setup.Configuration.ISetupConfiguration2.GetInstanceForPath(String path)
   at VSIXInstaller.LocationBasedSKU..ctor(String appidInstallPath, String appidName, Version vsVersion, String edition, String rootSuffix)
   at VSIXInstaller.LocationBasedSKU..ctor(String appidInstallPath, String appidName, Version vsVersion, String edition, String rootSuffix, IntPtr alternateUserToken)
   at VSIXInstaller.ExtensionService.GetInstallableData(String vsixPath, String extensionPackParentName, Boolean isRepairSupported, IStateData stateData, IEnumerable`1& skuData)
   at VSIXInstaller.App.Initialize(Boolean isRepairSupported)
   at VSIXInstaller.App.Initialize()
   at System.Threading.Tasks.Task`1.InnerInvoke()
   at System.Threading.Tasks.Task.Execute()

Can you please help in resolving the issue?

How to disable DPI scaling for the Visual Studio Editor?

$
0
0

Hello!

I recently bought a 1440p display hoping for super clear text while I code. However, Windows 8.1 or Visual Studio is "zooming in" and thus making all the text blurry.

Normally, I can go to a program's compatibility settings and "Disable display scaling on high DPI settings." However, Visual Studio 2013 Properties does not have a "Compatibility" tab with this option.

I know that Windows is scaling VS 2013 up because when I drag the window halfway onto my 1080p display, the window shrinks and all text becomes clear, even the part of the window on my 1440p display.

How can I get clear text in VS2013?

VSTS How to build a Program built with Python and R

$
0
0

Hi,

I am trying to setup a CI/CD process for a project built using Python and R. The python program calls the R code using subprocess.call.

I am trying to figure which template or how exactly to set the CI/CD up. So far I have relied on using Pycharm and Rstudio for development but for this CI/CD I am trying to check if I could use VSTS. I couldn't find anything substantial on this and hope that you can give me some pointers which I can pick up on and continue.


Visual Studio For Linux Development - Help Needed with locating header files

$
0
0

I want to build a project for a Linux system, so I tried to use VS2017's Linux build tools (it's my first time with them, though).  When I went to main.cpp after creating a new project for it, I saw that I have an error on the line "#include <cstdio>" that says "cannot open source file "cstdio"".  What do I do make this work?  Thanks in advance.

I also want to know how to get a Linux system to connect to.  Do I need to get a virtual machine, or is there something else I need to do or get?


SQL schema compare not working

$
0
0

Hi,

I am using VS2015 PRO and trying to make a SQL schema comparisson but it does not work with remote databases, only with local network.

  • I select "Database" option
  • Click on "Select connectión"
  • Click on "Browse" and insert servername,35267 (which is intentionally different than 1433)
  • Click on database list and select the database (I can see databases, login is accepted)
  • Click on "Connect"
  • Takes me back to the "Select target schema" but no information is displayed, nor the "Ok" button is enabled and no error message is shown.

is this is a normal behaviour?

 




G.Waters




Using Visual Source Safe with VisualStudio 2017

$
0
0
Is there any way I can use VSS with VisualStudio 2017?  Team Foundation is not a good fit for simple source control.

Scc Display Information Dialog in launch Visual Studio 2017

$
0
0

I try launch Visual Studio 2017 (15.8.1, the problem was also in 15.7 in some time), and it show the dialog:

It not show in safemode or after clean chahe, but after few launch, it back to show the error.

The log content:

<?xml version="1.0" encoding="utf-16"?>
<?xml-stylesheet type="text/xsl" href="ActivityLog.xsl"?>
<activity>
  <entry>
    <record>1</record>
    <time>2018/08/20 10:05:27.706</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Microsoft Visual Studio 2017 version: 15.0.28010.2003</description>
  </entry>
  <entry>
    <record>2</record>
    <time>2018/08/20 10:05:27.706</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Log ID</description>
    <guid>{8AA8CA27-7032-4979-AC6D-7B825AC46169}</guid>
  </entry>
  <entry>
    <record>3</record>
    <time>2018/08/20 10:05:27.710</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Running in isolation mode.</description>
  </entry>
  <entry>
    <record>4</record>
    <time>2018/08/20 10:05:27.714</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Looking for master PkgDef file</description>
    <path>C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\IDE\master.pkgdef</path>
  </entry>
  <entry>
    <record>5</record>
    <time>2018/08/20 10:05:27.716</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Creating PkgDefCacheNonVolatile</description>
  </entry>
  <entry>
    <record>6</record>
    <time>2018/08/20 10:05:27.716</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>PkgDefCache flags</description>
    <hr>00013801</hr>
  </entry>
  <entry>
    <record>7</record>
    <time>2018/08/20 10:05:27.736</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Double-checking master pkgdef file</description>
  </entry>
  <entry>
    <record>8</record>
    <time>2018/08/20 10:05:27.737</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>PkgDefManagement initialized</description>
  </entry>
  <entry>
    <record>9</record>
    <time>2018/08/20 10:05:27.737</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>RootFolder</description>
    <path>C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\</path>
  </entry>
  <entry>
    <record>10</record>
    <time>2018/08/20 10:05:27.737</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>ShellFolder</description>
    <path>C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\</path>
  </entry>
  <entry>
    <record>66</record>
    <time>2018/08/20 10:05:28.598</time>
    <type>Information</type>
    <source>MruList</source>
    <description>Entering TryPromoteItem</description>
  </entry>
  <entry>
    <record>67</record>
    <time>2018/08/20 10:05:28.598</time>
    <type>Information</type>
    <source>MruList</source>
    <description>Did not find item to promote</description>
  </entry>
  <entry>
    <record>68</record>
    <time>2018/08/20 10:05:28.599</time>
    <type>Information</type>
    <source>MruList</source>
    <description>Entering AddItem. Persistence data for item: %UserProfile%\Documents\Visual Studio 2017\Projects\CAdvanceWorkshop\Tutorial\Program.c|{00000000-0000-0000-0000-000000000000}||False</description>
  </entry>
  <entry>
    <record>69</record>
    <time>2018/08/20 10:05:28.599</time>
    <type>Information</type>
    <source>MruList</source>
    <description>Entering TryPromoteItem</description>
  </entry>
  <entry>
    <record>70</record>
    <time>2018/08/20 10:05:28.599</time>
    <type>Information</type>
    <source>MruList</source>
    <description>Did not find item to promote</description>
  </entry>
  <entry>
    <record>71</record>
    <time>2018/08/20 10:05:28.768</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Entering function CVsPackageInfo::HrInstantiatePackage</description>
    <guid>{7AC58323-1325-44DB-A4D5-2823A1426A13}</guid>
  </entry>
  <entry>
    <record>72</record>
    <time>2018/08/20 10:05:28.768</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Feature Flags Package]</description>
    <guid>{7AC58323-1325-44DB-A4D5-2823A1426A13}</guid>
  </entry>
  <entry>
    <record>73</record>
    <time>2018/08/20 10:05:28.768</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Feature Flags Package]</description>
    <guid>{7AC58323-1325-44DB-A4D5-2823A1426A13}</guid>
  </entry>
  <entry>
    <record>74</record>
    <time>2018/08/20 10:05:28.771</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Entering function CVsPackageInfo::HrInstantiatePackage</description>
    <guid>{EFAEF2D3-8BDB-4D78-B3EB-B55E44203E80}</guid>
  </entry>
  <entry>
    <record>75</record>
    <time>2018/08/20 10:05:28.771</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Rules-based UI contexts implementation]</description>
    <guid>{EFAEF2D3-8BDB-4D78-B3EB-B55E44203E80}</guid>
  </entry>
  <entry>
    <record>76</record>
    <time>2018/08/20 10:05:28.775</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Has Solution and App Container&apos; for UI context 0563cf07-d14f-4b0f-b971-1913c51fa212.</description>
  </entry>
  <entry>
    <record>77</record>
    <time>2018/08/20 10:05:28.776</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;CommonCompatibleProjectType&apos; for UI context 07b009b1-d89d-4956-804e-40ea88ab6834.</description>
  </entry>
  <entry>
    <record>78</record>
    <time>2018/08/20 10:05:28.777</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;VSToolWindowUIContext&apos; for UI context 0b963243-bf0f-4f07-bbb5-27830da819eb.</description>
  </entry>
  <entry>
    <record>79</record>
    <time>2018/08/20 10:05:28.778</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;CodeCloneFileBasedPackageActivation&apos; for UI context 0e7ef3e2-dede-4d1a-b0f9-12ee78a26b31.</description>
  </entry>
  <entry>
    <record>80</record>
    <time>2018/08/20 10:05:28.778</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Autoload when the AzureTokenProvider nuget package is installed&apos; for UI context 18b3651f-0deb-401e-87ee-6eecb7a7e8de.</description>
  </entry>
  <entry>
    <record>81</record>
    <time>2018/08/20 10:05:28.779</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;LogCat Tool Window&apos; for UI context 197894f5-a027-4e07-9a05-8f37cdc87c0f.</description>
  </entry>
  <entry>
    <record>82</record>
    <time>2018/08/20 10:05:28.780</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;DependencyValidationActivation&apos; for UI context 1bbffb87-b857-4c21-90a1-fc9da21a1c4e.</description>
  </entry>
  <entry>
    <record>83</record>
    <time>2018/08/20 10:05:28.780</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;PowerShellFileSelected&apos; for UI context 1d16d31f-62c9-4d40-a521-a4dc2255004c.</description>
  </entry>
  <entry>
    <record>84</record>
    <time>2018/08/20 10:05:28.781</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Azure Functions Capability&apos; for UI context 1e5670c4-d270-4a0e-bd2b-d59eadd375ec.</description>
  </entry>
  <entry>
    <record>85</record>
    <time>2018/08/20 10:05:28.781</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;AzureResourceManagerToolsJSONOutlineContextRule&apos; for UI context 2a2b9676-4c9a-4e74-9f55-b18c49788560.</description>
  </entry>
  <entry>
    <record>86</record>
    <time>2018/08/20 10:05:28.783</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;ActiveProjectSupportsBlend&apos; for UI context 3a014e53-f5ba-4db3-9cd6-9469b8889d1b.</description>
  </entry>
  <entry>
    <record>87</record>
    <time>2018/08/20 10:05:28.783</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Has Solution and App Container and Not Building&apos; for UI context 3b164e37-2e43-4cf9-b3b0-d4cc6a5dbf4a.</description>
  </entry>
  <entry>
    <record>88</record>
    <time>2018/08/20 10:05:28.784</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Test Adapter for Boost.Test&apos; for UI context 3c4b983b-4670-40a8-9e2f-e7b457498c12.</description>
  </entry>
  <entry>
    <record>89</record>
    <time>2018/08/20 10:05:28.785</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Create IntelliTest Context Enabler&apos; for UI context 43e089fc-d57e-4b29-921d-31bd57750a0a.</description>
  </entry>
  <entry>
    <record>90</record>
    <time>2018/08/20 10:05:28.786</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;TaskRunnerExplorerUIContext&apos; for UI context 441e30df-ae09-4fb5-95db-1198a3c5f0a9.</description>
  </entry>
  <entry>
    <record>91</record>
    <time>2018/08/20 10:05:28.787</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Activate Browser Link&apos; for UI context 4d987316-17d4-4741-b0fe-766f88cbd893.</description>
  </entry>
  <entry>
    <record>92</record>
    <time>2018/08/20 10:05:28.787</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Has Solution and App Container and Not Building&apos; for UI context 5c517dfa-808a-4682-80e4-097851b5ac67.</description>
  </entry>
  <entry>
    <record>93</record>
    <time>2018/08/20 10:05:28.788</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;ContainerToolsPackageCommandVisibilityRule&apos; for UI context 5d0ad025-3bf2-4260-bdb9-8e320ffa4b1e.</description>
  </entry>
  <entry>
    <record>94</record>
    <time>2018/08/20 10:05:28.789</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;WebProjectsUIContext&apos; for UI context 65f4082e-1631-4a91-9c1d-4870a6f7152f.</description>
  </entry>
  <entry>
    <record>95</record>
    <time>2018/08/20 10:05:28.789</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;AzureResourceManagerToolsAutoLoadContextRule&apos; for UI context 66231e10-79aa-401a-a291-f802e39edf6d.</description>
  </entry>
  <entry>
    <record>96</record>
    <time>2018/08/20 10:05:28.790</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Linux Tool Window&apos; for UI context 670629fc-2347-428a-ac63-a5ca3ed65e30.</description>
  </entry>
  <entry>
    <record>97</record>
    <time>2018/08/20 10:05:28.791</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;LiveUnitTestingPackageActivationContext&apos; for UI context 67c5e672-14fd-4197-8e2f-bcd4f58aa13d.</description>
  </entry>
  <entry>
    <record>98</record>
    <time>2018/08/20 10:05:28.791</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;ConfigureAuthContext&apos; for UI context 68706691-355f-4ad3-b906-6ad4e3111eec.</description>
  </entry>
  <entry>
    <record>99</record>
    <time>2018/08/20 10:05:28.792</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Test Adapter for Google Test&apos; for UI context 7517f9ae-397f-48e1-8e1b-dac609d9f52d.</description>
  </entry>
  <entry>
    <record>100</record>
    <time>2018/08/20 10:05:28.792</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;CSharp or VB File Active&apos; for UI context 7941d596-a429-42a7-9cff-ba936e31df9b.</description>
  </entry>
  <entry>
    <record>101</record>
    <time>2018/08/20 10:05:28.793</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;StartupDelayed&apos; for UI context 7cac4ae1-2e6b-4b02-a91c-71611e86f273.</description>
  </entry>
  <entry>
    <record>102</record>
    <time>2018/08/20 10:05:28.794</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;BlendSolutionExists&apos; for UI context 7d30c25d-a30b-451a-a4d5-9229204e6aa5.</description>
  </entry>
  <entry>
    <record>103</record>
    <time>2018/08/20 10:05:28.794</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;ContainersToolsPackage&apos; for UI context 7fa13108-6cad-490e-a9e7-bfa08ec420e2.</description>
  </entry>
  <entry>
    <record>104</record>
    <time>2018/08/20 10:05:28.795</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;CodeCloneProjectBasedPackageActivation&apos; for UI context 83b602bd-0c2f-4c5e-96a5-3e1f58e60e56.</description>
  </entry>
  <entry>
    <record>105</record>
    <time>2018/08/20 10:05:28.795</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;ApacheCordovaToolsContext&apos; for UI context 895df540-da8b-49b6-bd64-32ffd1410798.</description>
  </entry>
  <entry>
    <record>106</record>
    <time>2018/08/20 10:05:28.796</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;StartGraphicsDiagnosticsIsUsable&apos; for UI context 8e31647d-30be-4efd-a01c-d4684f9096d1.</description>
  </entry>
  <entry>
    <record>107</record>
    <time>2018/08/20 10:05:28.796</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;TriggersPaneUIContext&apos; for UI context 935ad473-5801-4fe3-983a-753b1212c9b3.</description>
  </entry>
  <entry>
    <record>108</record>
    <time>2018/08/20 10:05:28.797</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;PackageManagerUIContext&apos; for UI context 9c1a4c33-0ecc-4ec7-9f81-75bd534c4825.</description>
  </entry>
  <entry>
    <record>109</record>
    <time>2018/08/20 10:05:28.798</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Generate Unit test default Context Enabler&apos; for UI context 9e320ac6-e171-460b-be27-a8487972575c.</description>
  </entry>
  <entry>
    <record>110</record>
    <time>2018/08/20 10:05:28.799</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;DockerComposePackageAutoLoadRule&apos; for UI context a339e303-52f4-47b4-9091-ac10bd0a1e10.</description>
  </entry>
  <entry>
    <record>111</record>
    <time>2018/08/20 10:05:28.800</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;GitCollaborationPackageActivation&apos; for UI context ade07bab-b689-492c-bc2c-d190b14dae2e.</description>
  </entry>
  <entry>
    <record>112</record>
    <time>2018/08/20 10:05:28.800</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;CICDCommand&apos; for UI context b52c9a07-ee56-4224-a834-20c9c4293f16.</description>
  </entry>
  <entry>
    <record>113</record>
    <time>2018/08/20 10:05:28.801</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;TestWindowAutoLoad&apos; for UI context b638d8c9-e2df-4324-81d0-f74d90c9695f.</description>
  </entry>
  <entry>
    <record>114</record>
    <time>2018/08/20 10:05:28.802</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Has Solution and App Container&apos; for UI context beee6818-689a-44d3-bbc4-32e9efe3baa2.</description>
  </entry>
  <entry>
    <record>115</record>
    <time>2018/08/20 10:05:28.802</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Inspector target&apos; for UI context c61989a3-b749-4eb2-972c-6949904fa3ef.</description>
  </entry>
  <entry>
    <record>116</record>
    <time>2018/08/20 10:05:28.803</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;AddOrchestratorSupportVisibilityRule&apos; for UI context c6b376c1-3ff1-4af1-8676-cd95ce77ea1d.</description>
  </entry>
  <entry>
    <record>117</record>
    <time>2018/08/20 10:05:28.804</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Auto load for vb, c#, php&apos; for UI context c7a507c9-4afb-474f-b871-6dc6fe403cf8.</description>
  </entry>
  <entry>
    <record>118</record>
    <time>2018/08/20 10:05:28.805</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;CSharp Project or Console App or Web Project Open&apos; for UI context c9b9b439-ce3f-4bb3-bc22-be2284d1d963.</description>
  </entry>
  <entry>
    <record>119</record>
    <time>2018/08/20 10:05:28.807</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;CSharp Project or Console App or Web Project Open&apos; for UI context cd2def36-cca4-46b6-b93b-7b5c0f4d3be1.</description>
  </entry>
  <entry>
    <record>120</record>
    <time>2018/08/20 10:05:28.808</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;DockerComposePackageCommandVisibilityRule&apos; for UI context cf83100a-911a-4362-9374-f6c9a93c158e.</description>
  </entry>
  <entry>
    <record>121</record>
    <time>2018/08/20 10:05:28.809</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;CSharp Project or Console App or Web Project Open&apos; for UI context d018aba7-8308-4a69-bf59-337cb7e0537d.</description>
  </entry>
  <entry>
    <record>122</record>
    <time>2018/08/20 10:05:28.810</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;GitCollaborationPackageActivation&apos; for UI context d97e3df7-11c5-4326-820f-ff80c6cac262.</description>
  </entry>
  <entry>
    <record>123</record>
    <time>2018/08/20 10:05:28.811</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Auto load Entity Data Model Package&apos; for UI context e000c7e5-dba5-4682-abe0-7f6ce57b236d.</description>
  </entry>
  <entry>
    <record>124</record>
    <time>2018/08/20 10:05:28.812</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Run IntelliTest Context Enabler&apos; for UI context e3d07646-d637-48a4-9396-fc4129a2fe89.</description>
  </entry>
  <entry>
    <record>125</record>
    <time>2018/08/20 10:05:28.812</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;CollaborationPackageActivation&apos; for UI context e406cf35-8143-43e8-b02c-34e2649cf66f.</description>
  </entry>
  <entry>
    <record>126</record>
    <time>2018/08/20 10:05:28.812</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;unnamed&apos; for UI context e551fe48-4b78-4dc4-9ddc-183cbfea7d5b.</description>
  </entry>
  <entry>
    <record>127</record>
    <time>2018/08/20 10:05:28.813</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Load Managed Project Package&apos; for UI context e7df1626-44dd-4e8c-a8a0-92eab6ddc16e.</description>
  </entry>
  <entry>
    <record>128</record>
    <time>2018/08/20 10:05:28.813</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;ProjectSystemComponentsUIContext&apos; for UI context eb597fe1-59de-4cd7-89dc-598f9aef4186.</description>
  </entry>
  <entry>
    <record>129</record>
    <time>2018/08/20 10:05:28.814</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;HtmlDesignToolsContext&apos; for UI context eb7164cf-770a-4b61-9508-dd49ac0a0703.</description>
  </entry>
  <entry>
    <record>130</record>
    <time>2018/08/20 10:05:28.814</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;unnamed&apos; for UI context ec852623-f4b6-4c74-9272-3361ef323b5b.</description>
  </entry>
  <entry>
    <record>131</record>
    <time>2018/08/20 10:05:28.815</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;VSToolWindowUIContext&apos; for UI context ee688735-d56d-4c7b-9a19-1b4cb1b8b504.</description>
  </entry>
  <entry>
    <record>132</record>
    <time>2018/08/20 10:05:28.816</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;ServiceFabircContainerRule&apos; for UI context f52dfcef-5313-4752-9339-c7f67b5f3674.</description>
  </entry>
  <entry>
    <record>133</record>
    <time>2018/08/20 10:05:28.816</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Microsoft Library Manager&apos; for UI context f8c0db80-39c2-4f32-9be3-701f2d25add8.</description>
  </entry>
  <entry>
    <record>134</record>
    <time>2018/08/20 10:05:28.817</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;ConfigFile&apos; for UI context f8c0db80-39c2-4f32-9be3-701f2d25add9.</description>
  </entry>
  <entry>
    <record>135</record>
    <time>2018/08/20 10:05:28.818</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;VSToolWindowUIContext&apos; for UI context fd7ce107-0b2a-409f-8e1c-90bf51caf448.</description>
  </entry>
  <entry>
    <record>136</record>
    <time>2018/08/20 10:05:28.818</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Rules-based UI contexts implementation]</description>
    <guid>{EFAEF2D3-8BDB-4D78-B3EB-B55E44203E80}</guid>
  </entry>
  <entry>
    <record>137</record>
    <time>2018/08/20 10:05:28.818</time>
    <type>Information</type>
    <source>AutoLoadManager</source>
    <description>Visual Studio is using the restricted package autoload manager that allows synchronous autoload requests.</description>
  </entry>
  <entry>
    <record>138</record>
    <time>2018/08/20 10:05:28.823</time>
    <type>Warning</type>
    <source>AutoLoadManager</source>
    <description>Package {88774dc5-045c-4df7-9a6a-cf4803082466} for UI context {adfc4e63-0397-11d1-9f4e-00a0c911004f} loads synchronously and may not be supported in a future release.</description>
  </entry>
  <entry>
    <record>139</record>
    <time>2018/08/20 10:05:28.823</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Entering function CVsPackageInfo::HrInstantiatePackage</description>
    <guid>{88774DC5-045C-4DF7-9A6A-CF4803082466}</guid>
  </entry>
  <entry>
    <record>140</record>
    <time>2018/08/20 10:05:28.823</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [IntelGfxDbgPackage]</description>
    <guid>{88774DC5-045C-4DF7-9A6A-CF4803082466}</guid>
  </entry>
  <entry>
    <record>141</record>
    <time>2018/08/20 10:05:28.837</time>
    <type>Information</type>
    <source>Package Framework</source>
    <description>Initialized ServiceProvider.GlobalProvider from SetSite.</description>
  </entry>
  <entry>
    <record>142</record>
    <time>2018/08/20 10:05:28.837</time>
    <type>Information</type>
    <source>Package Framework</source>
    <description>Initialized AsyncServiceProvider.GlobalProvider from SetSite.</description>
  </entry>
  <entry>
    <record>143</record>
    <time>2018/08/20 10:05:28.852</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Entering function CVsPackageInfo::HrInstantiatePackage</description>
    <guid>{DA9FB551-C724-11D0-AE1F-00A0C90FFFC3}</guid>
  </entry>
  <entry>
    <record>144</record>
    <time>2018/08/20 10:05:28.853</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Visual Studio Environment Package]</description>
    <guid>{DA9FB551-C724-11D0-AE1F-00A0C90FFFC3}</guid>
  </entry>
  <entry>
    <record>145</record>
    <time>2018/08/20 10:05:28.853</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Visual Studio Environment Package]</description>
    <guid>{DA9FB551-C724-11D0-AE1F-00A0C90FFFC3}</guid>
  </entry>
  <entry>
    <record>146</record>
    <time>2018/08/20 10:05:28.854</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Entering function CVsPackageInfo::HrInstantiatePackage</description>
    <guid>{C9DD4A57-47FB-11D2-83E7-00C04F9902C1}</guid>
  </entry>
  <entry>
    <record>147</record>
    <time>2018/08/20 10:05:28.856</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Visual Studio Debugger]</description>
    <guid>{C9DD4A57-47FB-11D2-83E7-00C04F9902C1}</guid>
  </entry>
  <entry>
    <record>148</record>
    <time>2018/08/20 10:05:28.857</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Loading UI library</description>
    <guid>{C9DD4A57-47FB-11D2-83E7-00C04F9902C1}</guid>
    <path>C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\Packages\Debugger\*\VSDebugUI.dll</path>
  </entry>
  <entry>
    <record>149</record>
    <time>2018/08/20 10:05:28.976</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Entering function CVsPackageInfo::HrInstantiatePackage</description>
    <guid>{F5E7E720-1401-11D1-883B-0000F87579D2}</guid>
  </entry>
  <entry>
    <record>150</record>
    <time>2018/08/20 10:05:28.976</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Text Management Package]</description>
    <guid>{F5E7E720-1401-11D1-883B-0000F87579D2}</guid>
  </entry>
  <entry>
    <record>151</record>
    <time>2018/08/20 10:05:28.991</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Text Management Package]</description>
    <guid>{F5E7E720-1401-11D1-883B-0000F87579D2}</guid>
  </entry>
  <entry>
    <record>152</record>
    <time>2018/08/20 10:05:29.014</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Entering function CVsPackageInfo::HrInstantiatePackage</description>
    <guid>{53544C4D-E3F8-4AA0-8195-8A8D16019423}</guid>
  </entry>
  <entry>
    <record>153</record>
    <time>2018/08/20 10:05:29.015</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Visual Studio Source Control Integration Package]</description>
    <guid>{53544C4D-E3F8-4AA0-8195-8A8D16019423}</guid>
  </entry>
  <entry>
    <record>154</record>
    <time>2018/08/20 10:05:29.017</time>
    <type>Warning</type>
    <source>AutoLoadManager</source>
    <description>Package {7fe30a77-37f9-4cf2-83dd-96b207028e1b} for UI context {11b8e6d7-c08b-4385-b321-321078cdd1f8} loads synchronously and may not be supported in a future release.</description>
  </entry>
  <entry>
    <record>155</record>
    <time>2018/08/20 10:05:29.017</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Entering function CVsPackageInfo::HrInstantiatePackage</description>
    <guid>{7FE30A77-37F9-4CF2-83DD-96B207028E1B}</guid>
  </entry>
  <entry>
    <record>156</record>
    <time>2018/08/20 10:05:29.017</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [SccProviderPackage]</description>
    <guid>{7FE30A77-37F9-4CF2-83DD-96B207028E1B}</guid>
  </entry>
  <entry>
    <record>157</record>
    <time>2018/08/20 10:05:29.174</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Entering function CVsPackageInfo::HrInstantiatePackage</description>
    <guid>{0B93CCC5-BC52-40E9-91A3-7B8B58C4526B}</guid>
  </entry>
  <entry>
    <record>158</record>
    <time>2018/08/20 10:05:29.174</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Microsoft.VisualStudio.Services.Integration.ServicesPackage, Microsoft.VisualStudio.Services.Integration]</description>
    <guid>{0B93CCC5-BC52-40E9-91A3-7B8B58C4526B}</guid>
  </entry>
  <entry>
    <record>159</record>
    <time>2018/08/20 10:05:29.177</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Microsoft.VisualStudio.Services.Integration.ServicesPackage, Microsoft.VisualStudio.Services.Integration]</description>
    <guid>{0B93CCC5-BC52-40E9-91A3-7B8B58C4526B}</guid>
  </entry>
  <entry>
    <record>160</record>
    <time>2018/08/20 10:05:29.201</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Entering function CVsPackageInfo::HrInstantiatePackage</description>
    <guid>{D7BB9305-5804-4F92-9CFE-119F4CB0563B}</guid>
  </entry>
  <entry>
    <record>161</record>
    <time>2018/08/20 10:05:29.201</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Scc Display Information]</description>
    <guid>{D7BB9305-5804-4F92-9CFE-119F4CB0563B}</guid>
  </entry>
  <entry>
    <record>162</record>
    <time>2018/08/20 10:05:29.212</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>SetSite failed for package [Scc Display Information]Source: &apos;Microsoft.VisualStudio.Shell.15.0&apos; Description: Object reference not set to an instance of an object.&#x000D;&#x000A;System.NullReferenceException: Object reference not set to an instance of an object.&#x000D;&#x000A;   at Microsoft.Internal.VisualStudio.Shell.KeyBindingHelper.&lt;GetKeyBindingsImpl&gt;d__4.MoveNext()&#x000D;&#x000A;   at System.Linq.Enumerable.FirstOrDefault[TSource](IEnumerable`1 source)&#x000D;&#x000A;   at Microsoft.Internal.VisualStudio.Shell.KeyBindingHelper.GetKeyBinding(Guid commandGroup, Int32 commandId, Guid keyBindingScope)&#x000D;&#x000A;   at Microsoft.Internal.VisualStudio.Shell.KeyBindingHelper.GetGlobalKeyBinding(Guid commandGroup, Int32 commandId)&#x000D;&#x000A;   at Microsoft.VisualStudio.PlatformUI.Packages.Scc.KeyBindingProvider.GetKeyBinding(Guid commandSet, Int32 commandId)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.SccDisplayInformationService.get_PublishKeyBindingText()&#x000D;&#x000A;  at Microsoft.VisualStudio.Services.SccDisplayInformationService.&lt;InitializeUIAsync&gt;d__71.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.SccDisplayInformationService.&lt;InitializeAsync&gt;d__17.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.SccDisplayInformationPackage.&lt;InitializeAsync&gt;d__2.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;  at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.AsyncPackage.&lt;&gt;c__DisplayClass17_0.&lt;&lt;Microsoft-VisualStudio-Shell-Interop-IAsyncLoadablePackageInitialize-Initialize&gt;b__1&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Threading.ThreadingTools.&lt;WithCancellationSlow&gt;d__12.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;  at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Threading.JoinableTask.&lt;JoinAsync&gt;d__78.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Threading.JoinableTask.CompleteOnCurrentThread()&#x000D;&#x000A;  at Microsoft.VisualStudio.Threading.JoinableTask.Join(CancellationToken cancellationToken)&#x000D;&#x000A;   at Microsoft.VisualStudio.Threading.JoinableTask`1.Join(CancellationToken cancellationToken)&#x000D;&#x000A;  at Microsoft.VisualStudio.Shell.VsTaskLibraryHelper.&lt;&gt;c__DisplayClass33_1`1.&lt;AsVsTask&gt;b__3()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;  at Microsoft.VisualStudio.Services.VsTask.RethrowException(AggregateException e)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.InternalGetResult(Boolean ignoreUIThreadCheck)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.GetResult()</description>
    <guid>{D7BB9305-5804-4F92-9CFE-119F4CB0563B}</guid>
    <hr>80004003 - E_POINTER</hr>
    <errorinfo></errorinfo>
  </entry>
  <entry>
    <record>163</record>
    <time>2018/08/20 10:05:29.219</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>End package load [Scc Display Information]</description>
    <guid>{D7BB9305-5804-4F92-9CFE-119F4CB0563B}</guid>
    <hr>80004003 - E_POINTER</hr>
    <errorinfo></errorinfo>
  </entry>
  <entry>
    <record>164</record>
    <time>2018/08/20 10:05:29.222</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Entering function LoadDTETypeLib</description>
  </entry>
  <entry>
    <record>165</record>
    <time>2018/08/20 10:05:29.225</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Leaving function LoadDTETypeLib</description>
  </entry>
</activity>



Why does Blend need to change a project created in VS?

$
0
0
I created a brand new WIndows Template Studio solution - called "UnMeCon" - with VS15.7.3 and added a .NET Standard 2.0 class library project - called "ConversionService" - to the solution.
When I tried to open the solution in VS Blend 15.7.3 (same version number as VS) I got the following - rather scary - message:

--------

One-way upgrade
Visual Studio will automatically make functional changes to the following projects in order to open them. You will not be able to open these projects in the version of Visual Studio in which they were originally created.
     - ConversionService, "<<location redacted>>\ConversionService.csproj"

Non-functional changes required
Visual Studio will automatically make non-functional changes to the following projects in order to enable them to open in Visual Studio 2015, Visual Studio 2013, Visual Studio 2012, and Visual Studio 2010 SP1. Project behavior will not be impacted.
     - UnMeCon, "<<location redacted>>\UnMeCon.sln"


No changes required
These projects can be opened in Visual Studio 2015, Visual Studio 2013, Visual Studio 2012, and Visual Studio 2010 SP1 without changing them.
     - , ""

--------

What does the above message mean? (I redacted the actual file locations.)
It seems to say that I won't be able to go back into VS to edit the ConversionService project, which is definitely something I want to be able to do.
Why does VS Blend 15.7.3 seemingly not like projects created in VS 15.7.3?

(I previously had the same issue with another completely separate solution containing UWP and NET Standard projects but I didn't need Blend for that.)

XamlParseException: ''Provide value on 'System.Windows.Markup.StaticResourceHolder' threw an exception

$
0
0

Using VS-2017 and working on a WPF (MVVM Pattern) solution shared in TFS with other developers

I'am getting this issue since I downloaded a new version of the solution from TFS

The solution compiles correctly and works fine on other developer's machines who work on this solution, except mine.

ExceptionTrace:

System.Windows.Markup.XamlParseException
  HResult=0x80131501
  Message='Provide value on 'System.Windows.Markup.StaticResourceHolder' 
threw an exception.' Line number '33' and line position '10'.
  Source=PresentationFramework
  StackTrace:
   at System.Windows.Markup.XamlReader.RewrapException(Exception e, 
IXamlLineInfo lineInfo, Uri baseUri)

Inner Exception 1:
NotImplementedException: The method or operation is not implemented.

I think that the problem is not in the code but in my machine, because now even the old versions of the solution (that used to work fine) are getting this same Exception and don't compile.

Can someone help me to discover what's going wrong !?

PS: I'm beginner in programming

thank you !

Creating an installer for an MFC application built with VS 2017

$
0
0

I am trying to create an installer for my MFC application that I coded in C++ on Visual Studio Enterprise 2017

I found this official walkthrough to do that: https://msdn.microsoft.com/en-us/library/dd293568.aspx

However, as the documentation suggests, this works for VS 2012 up to 2015.

Even when I tried to install "InstallShield", it requires VS 2012 to be installed.

Should I follow this walkthrough or is there another way to do it?

Got an Error message in MTM -Exception has been thrown by the target of an invocation

$
0
0

Hi There,

i got an error message in Microsoft Test manager 2015, under the Test Plan section stated that "Exception has been thrown by the target of an invocation"

Attached the snap shot.

Thanks in Advance.




HB


Windows Authentication doesn't work with IIS Express 10 when running Visual Studio 2017 under another account

$
0
0

At my workplace, we do development on a production network, meaning we have a regular, restricted account and an "admin" account, which has greater rights. We recently had a hardware refresh where we went from Windows 7 to Windows 10, and VS 2013 to VS 2017.

Under the old system, I could log in with my regular account, run VS 2013 as my admin account, and I was able to build and run my web application just fine in Firefox.

This does not work under Windows 10. When I try running VS 2017 under my admin account while logged into my regular account, windows authentication fails for my web application, giving me either 401.1 or 401.2 errors. The only way I have been able to get everything working is to log into my admin account and run it from there. This isn't the preferred way to do things. So, is there any way to do what I want to do in Windows 10 and VS 2017?

WPF Sql Error at DESIGN TIME

$
0
0

My WPF app works fine when running, but AT design time I get this error:SeverityCodeDescriptionProjectFileLineSuppression State
ErrorA network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified)UiMaintenanceOption.xaml14

Now the MaintenanceOption.xaml is a Window, with some UserControls that are in turn hooked up to a ViewModel.

I have Rem'd out all UserControls except for 1, so I can test, remd out the calls to the VM that load the data, cleaned my solution and rebuilt it (rebuilds fine) and I still get this error.

Any ideas on how to solve this would greatly be appreciated.  I have NO calls in the container Window calling the database.


nlm

VS Community 2017 and VS Code

$
0
0
I use VS Community exclusively for VB and C# .Net desktop apps.  I'm thinking about doing a portable installation of VS Code for occasional use. Can/Should I share code between the two environments?

Unable to report a problem from Visual Studio 2017

$
0
0
Hi,

I'm using Visual Studio products as an Cisco employee. I'm licensed to Visual Studio Professional Edition product family with license number  68443398.

All though i'm licensed as mentioned, i still can't report a problem from the Visual Studio 2017 IDE. 
I'm getting the following message:
"Your sign-in was successful but you don't have permission to access this resource".

Regards,

Lior

Alt ; Alt P not publishing in Visual studio 2017 15.8

$
0
0

Hi,

With the latest new release of Visual Studio 2017 15.8, I am not able to publish individual files or folders using Visual Studio. When I right click, I don't see the option to publish the selected file. Also when I try the keyboard shortcut "Alt;+  Alt P", 

it says: "The Key combination (Alt+<g class="gr_ gr_822 gr-alert gr_gramm gr_inline_cards gr_run_anim Punctuation multiReplace" data-gr-id="822" id="822">;,</g> Alt + P) is bound to command (Publish selected files) which is not currently available." 

Is this a bug or did something change with the latest update? 

Viewing all 21115 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>