/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/LanguageServer/LanguageServerPublish.props
13 строк
831 B
David Barbet
Implement LSP daemon mode (#84199)
25 июл 2026, 00:26
Не верифицирован
25 июл 2026, 00:26
490f516
Код
Авторство
О чём код?
<Project> <PropertyGroup> <!-- Publishing settings shared by the thin client and bundled language server so their outputs land side-by-side. --> <SelfContained>false</SelfContained> <PublishDir Condition="'$(RuntimeIdentifier)' != ''">$(ArtifactsDir)/LanguageServer/$(Configuration)/$(TargetFramework)/$(RuntimeIdentifier)</PublishDir> <!-- List of runtime identifiers that we want to publish executables for. --> <RuntimeIdentifiers>win-x64;win-arm64;linux-x64;linux-arm64;linux-musl-x64;linux-musl-arm64;osx-x64;osx-arm64</RuntimeIdentifiers> <!-- Publish ready-to-run executables when publishing platform-specific Release builds. --> <PublishReadyToRun Condition="'$(Configuration)' == 'Release' AND '$(DotNetBuildUseMonoRuntime)' != 'true'">true</PublishReadyToRun> </PropertyGroup> </Project>