forked from Azure/bicep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBicep.LangServer.csproj
41 lines (35 loc) · 1.51 KB
/
Bicep.LangServer.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<RootNamespace>Bicep.LanguageServer</RootNamespace>
<!-- generates a NOTICE file in the publish output using our custom targets -->
<EnableNoticeInPublishOutput>true</EnableNoticeInPublishOutput>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Bicep.Core\Bicep.Core.csproj" />
<ProjectReference Include="..\Bicep.Decompiler\Bicep.Decompiler.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.ResourceManager.ResourceGraph" Version="1.0.1" />
<PackageReference Include="OmniSharp.Extensions.LanguageServer" Version="0.19.7" />
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="SharpYaml" Version="2.1.0" />
</ItemGroup>
<ItemGroup>
<None Remove="./Files/**/*.*" />
<EmbeddedResource Include="./Files/**/*.*" LogicalName="$([System.String]::new('Files/%(RecursiveDir)%(Filename)%(Extension)').Replace('\', '/'))" WithCulture="false" />
</ItemGroup>
<ItemGroup>
<Compile Update="LangServerResources.Designer.cs">
<DependentUpon>LangServerResources.resx</DependentUpon>
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="LangServerResources.resx">
<LastGenOutput>LangServerResources.Designer.cs</LastGenOutput>
<Generator>PublicResXFileCodeGenerator</Generator>
</EmbeddedResource>
</ItemGroup>
</Project>