Cherry pick `rel/1.22.2` items (#3645)

This commit is contained in:
Brandon Waterloo [MSFT] 2022-10-14 13:28:48 -04:00 коммит произвёл GitHub
Родитель 2722725aca
Коммит b897625419
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,7 @@
## 1.22.2 - 14 October 2022
### Fixed
* Fixed an issue blocking debugging of ASP.NET apps. [#3638](https://github.com/microsoft/vscode-docker/issues/3638)
## 1.22.1 - 30 June 2022
### Fixed
* Fixed a crash that could occur with certain Dockerfiles. [#3450](https://github.com/microsoft/vscode-docker/issues/3450)

Просмотреть файл

@ -1,7 +1,7 @@
<Project>
<Target Name="GetBlazorManifestLocations" DependsOnTargets="ResolveStaticWebAssetsConfiguration">
<PropertyGroup>
<BlazorManifestInputLocation>$(StaticWebAssetDevelopmentManifestPath)</BlazorManifestInputLocation>
<BlazorManifestInputLocation>$([System.IO.Path]::Combine($(MSBuildProjectDirectory), $(StaticWebAssetDevelopmentManifestPath)))</BlazorManifestInputLocation>
<BlazorManifestOutputLocation>$([System.IO.Path]::Combine($(MSBuildProjectDirectory), $(OutputPath), $(TargetName).staticwebassets.runtime.json))</BlazorManifestOutputLocation>
</PropertyGroup>