-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCompiledHandlebars.Core.Cli.csproj
More file actions
27 lines (26 loc) · 1.27 KB
/
CompiledHandlebars.Core.Cli.csproj
File metadata and controls
27 lines (26 loc) · 1.27 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<Platforms>AnyCPU;x64</Platforms>
<StartupObject>CompiledHandlebars.Core.Cli.Program</StartupObject>
<LangVersion>default</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Buildalyzer" Version="8.0.0" />
<PackageReference Include="Buildalyzer.Logger" Version="8.0.0" />
<PackageReference Include="Buildalyzer.Workspaces" Version="8.0.0" />
<PackageReference Include="Microsoft.Build" Version="18.0.2" />
<PackageReference Include="Microsoft.Build.Tasks.Core" Version="18.0.2" />
<PackageReference Include="Microsoft.CodeAnalysis" Version="5.0.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="4.14.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="5.0.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Compiler\CompiledHandlebars.Compiler.csproj" />
</ItemGroup>
</Project>