-
Notifications
You must be signed in to change notification settings - Fork 858
Expand file tree
/
Copy pathMicrosoft.Gen.Logging.csproj
More file actions
37 lines (31 loc) · 1.28 KB
/
Microsoft.Gen.Logging.csproj
File metadata and controls
37 lines (31 loc) · 1.28 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
28
29
30
31
32
33
34
35
36
37
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>Microsoft.Gen.Logging</RootNamespace>
<Description>Code generator to support Microsoft.Extensions.Telemetry's logging features.</Description>
<Workstream>Telemetry</Workstream>
</PropertyGroup>
<PropertyGroup>
<AnalyzerLanguage>cs</AnalyzerLanguage>
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
<InjectIsExternalInitOnLegacy>true</InjectIsExternalInitOnLegacy>
</PropertyGroup>
<PropertyGroup>
<Stage>normal</Stage>
<MinCodeCoverage>99</MinCodeCoverage>
<MinMutationScore>85</MinMutationScore>
</PropertyGroup>
<ItemGroup>
<Compile Update="Parsing\Resources.Designer.cs" DesignTime="True" AutoGen="True" DependentUpon="Resources.resx" />
<Compile Include="..\Shared\*.cs" LinkBase="Shared" />
<Compile Remove="..\Shared\JsonEmitterBase.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Parsing\Resources.resx" Generator="ResXFileCodeGenerator" LastGenOutput="Resources.Designer.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleToTest Include="Microsoft.Gen.Logging.Unit.Tests" />
</ItemGroup>
</Project>