-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPatternKit.Generators.csproj
More file actions
47 lines (39 loc) · 2.26 KB
/
PatternKit.Generators.csproj
File metadata and controls
47 lines (39 loc) · 2.26 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
38
39
40
41
42
43
44
45
46
47
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
<IsRoslynComponent>true</IsRoslynComponent>
<IncludeBuildOutput>true</IncludeBuildOutput>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<DisableTransitiveFrameworkReferences>true</DisableTransitiveFrameworkReferences>
<IsPackable>true</IsPackable>
<DevelopmentDependency>true</DevelopmentDependency>
<TargetFrameworks>netstandard2.0;</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<None Include="$(TargetDir)$(AssemblyName).dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
<None Include="$(TargetDir)$(AssemblyName).pdb" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" Condition="Exists('$(TargetDir)$(AssemblyName).pdb')" />
<None Include="..\PatternKit.Generators.Abstractions\bin\$(Configuration)\netstandard2.0\PatternKit.Generators.Abstractions.dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
</ItemGroup>
<ItemGroup>
<Analyzer Include="..\PatternKit.Generators.Abstractions\bin\$(Configuration)\netstandard2.0\PatternKit.Generators.Abstractions.dll" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="5.3.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="5.3.0" PrivateAssets="all" />
<PackageReference Include="System.Collections.Immutable" Version="10.0.5" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\PatternKit.Generators.Abstractions\PatternKit.Generators.Abstractions.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Remove="GenerateStrategyAttribute.cs" />
<Compile Remove="Builders\BuilderAttributes.cs" />
<Compile Remove="Factories\FactoriesAttributes.cs" />
<Compile Remove="GenerateVisitorAttribute.cs" />
</ItemGroup>
<ItemGroup Condition="'$(DOCFX)'!='true'">
<AdditionalFiles Include="AnalyzerReleases.Shipped.md" />
<AdditionalFiles Include="AnalyzerReleases.Unshipped.md" />
</ItemGroup>
</Project>