-
Notifications
You must be signed in to change notification settings - Fork 382
/
Copy pathMicrosoft.TemplateEngine.Authoring.TemplateVerifier.csproj
39 lines (32 loc) · 1.58 KB
/
Microsoft.TemplateEngine.Authoring.TemplateVerifier.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>
<TargetFramework>$(NetMinimum)</TargetFramework>
<Description>The verification engine for the templates for .NET template engine.</Description>
<IsPackable>true</IsPackable>
<EnablePublicApiAnalyzer>true</EnablePublicApiAnalyzer>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" />
<PackageReference Include="Verify.Xunit" />
<PackageReference Include="Verify.DiffPlex" />
<PackageReference Include="Xunit" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(SrcDir)Microsoft.TemplateEngine.Utils\Microsoft.TemplateEngine.Utils.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\Shared\**\*.cs" Link="%(RecursiveDir)%(Filename)%(Extension)" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="LocalizableStrings.resx"
GenerateSource="true" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="Microsoft.TemplateEngine.Authoring.CLI.IntegrationTests" Key="$(TemplateEnginePublicKey)" />
<InternalsVisibleTo Include="Microsoft.TemplateEngine.Authoring.TemplateVerifier.UnitTests" Key="$(TemplateEnginePublicKey)" />
<InternalsVisibleTo Include="Microsoft.TemplateEngine.Authoring.TemplateApiVerifier" Key="$(TemplateEnginePublicKey)" />
<InternalsVisibleTo Include="DynamicProxyGenAssembly2" Key="$(DynamicProxyGenAssembly2PublicKey)" />
</ItemGroup>
</Project>