I'm trying to install the newest visual studio 2019 version (yes, I have a license for it). However, during the installation process the window freezes with this warning:
If I press cancel, it continues installation and completes with a warning.
After that, when I try to open VS2019, I get a create window with empty/blank project template:
In addition, for every project a migration is required and afterwards there are problems with Nuget, as you can see here:
Error occurred while restoring NuGet packages: '' is not a valid version string.
By migrating cs.proj to VS2019 it adds several fields like OldToolsVersion, ToolsVersion
and stops working
<Project Sdk="Microsoft.NET.Sdk.Web" ToolsVersion="Current">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel>
<FileUpgradeFlags>
</FileUpgradeFlags>
<UpgradeBackupLocation>
</UpgradeBackupLocation>
<OldToolsVersion>2.0</OldToolsVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="YYY" Version="1.0.0-CI-20200211-095627" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\XXXX.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="Resources\DataStructure.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>
In the end, I have a headache right now. I tried a lot - Reinstalling core, updating Nuget package.
Missing vc_runtimeminimum_x86.msi and installation won't work
NuGet Package Restore Not Working
Thanks for your help.