IT-KB.RU
3.18K subscribers
138 photos
11 videos
15 files
801 links
Собрание заметок об информационных технологиях

@EugeneLeitan 👀🧑‍💻
Download Telegram
Как писать только хороший код.

В мае на Build 2018 корпорация Microsoft представила расширение Visual Studio IntelliCode. Оно помогает писать код быстрее, избегать ошибок и предлагает разработчикам подсказки, предугадывая их цели. Несколько дней назад вышло обновление, направленное в сторону улучшения взаимодействия с C#: http://amp.gs/P74Y

Кстати, расширение уже работает и с Python

#Code #VisualStudio #Python
​​1️⃣ Вслед за Windows Server 2022 выходит Visual Studio 2022 Preview 1!
https://devblogs.microsoft.com/visualstudio/visual-studio-2022-preview-1-now-available/

20-тисекундный обзор на youtube:
https://youtu.be/TYO5rhZFeUQ

Скачать дистрибутив VS:
https://aka.ms/vs2022preview


2️⃣ Обновляем PowerShell 7.2 при помощи Microsoft Update!
https://devblogs.microsoft.com/powershell/preview-updating-powershell-7-2-with-microsoft-update/

How updates will work
Because of the large changes and validation required to get this to work, we will publish updates only for future releases. We have already been working on a release that updates 7.2 preview 5 or newer to 7.2 preview 7. We will begin the Microsoft Update publishing process once we release an update to GitHub.

Test new installs of PowerShell 7.2 preview
- you’ll need to have Windows 10 RS3 (10.0.16299) or newer installed and Microsoft Update enable
- run the following script from an elevated PowerShell session to setup the registry in such a way that Microsoft Update will install and update the latest version of PowerShell 7 preview

$pwshRegPath = "HKLM:\SOFTWARE\Microsoft\PowerShellCore"
$previewPath = Join-Path -Path $pwshRegPath -ChildPath "InstalledVersions\39243d76-adaf-42b1-94fb-16ecf83237c8"
if (!(Test-Path -Path $previewPath)) {
$null = New-Item -Path $previewPath -ItemType Directory -Force
}

Set-ItemProperty -Path $pwshRegPath -Name UseMU -Value 1 -Type DWord
Set-ItemProperty -Path $previewPath -Name Install -Value 1 -Type DWord

#Microsoft #VisualStudio #Powershell