Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions src/Bicep.LangServer/Bicep.LangServer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,20 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<RootNamespace>Bicep.LanguageServer</RootNamespace>
<!-- generates a NOTICE file in the publish output using our custom targets -->
<EnableNoticeInPublishOutput>true</EnableNoticeInPublishOutput>
<!-- Disable CS1591 Missing XML comment for publicly visible type or member for generated code -->
<NoWarn>$(NoWarn);CS1591</NoWarn>

<!-- Set up the NuGet package to be a dotnet tool -->
<PackAsTool>true</PackAsTool>
<EnableNuget>true</EnableNuget>
<PackageId>Azure.Bicep.LangServer</PackageId>
<ToolCommandName>bicep-ls</ToolCommandName>
<PackageTags>Azure;ResourceManager;ARM;Deployments;Templates;Bicep</PackageTags>
<Description>
Bicep Language Server
</Description>
</PropertyGroup>

<ItemGroup>
Expand Down
Loading