-
Notifications
You must be signed in to change notification settings - Fork 382
/
Copy pathMicrosoft.TemplateEngine.Authoring.CLI.csproj
39 lines (33 loc) · 1.83 KB
/
Microsoft.TemplateEngine.Authoring.CLI.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>$(NetMinimum)</TargetFramework>
<Description>A dotnet CLI tool with commands for template authoring.</Description>
<IsPackable>true</IsPackable>
<PackAsTool>true</PackAsTool>
<ToolCommandName>dotnet-template-authoring</ToolCommandName>
<RollForward>Major</RollForward>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" />
<PackageReference Include="System.CommandLine" />
<PackageReference Include="Verify.Xunit" />
<PackageReference Include="Verify.DiffPlex" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(ToolsDir)Microsoft.TemplateEngine.TemplateLocalizer.Core\Microsoft.TemplateEngine.TemplateLocalizer.Core.csproj" />
<ProjectReference Include="$(ToolsDir)Microsoft.TemplateEngine.Authoring.TemplateVerifier\Microsoft.TemplateEngine.Authoring.TemplateVerifier.csproj" />
<ProjectReference Include="$(SrcDir)Microsoft.TemplateEngine.Orchestrator.RunnableProjects\Microsoft.TemplateEngine.Orchestrator.RunnableProjects.csproj" />
<ProjectReference Include="$(SrcDir)Microsoft.TemplateEngine.Utils\Microsoft.TemplateEngine.Utils.csproj" />
<ProjectReference Include="$(SrcDir)Microsoft.TemplateEngine.Edge\Microsoft.TemplateEngine.Edge.csproj" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="LocalizableStrings.resx"
GenerateSource="true" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="Microsoft.TemplateEngine.Authoring.CLI.IntegrationTests" Key="$(TemplateEnginePublicKey)" />
<InternalsVisibleTo Include="Microsoft.TemplateEngine.Authoring.CLI.UnitTests" Key="$(TemplateEnginePublicKey)" />
</ItemGroup>
</Project>