-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDependencyInjection.CodeFixes.csproj
More file actions
23 lines (19 loc) · 1013 Bytes
/
DependencyInjection.CodeFixes.csproj
File metadata and controls
23 lines (19 loc) · 1013 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>Devlooped.Extensions.DependencyInjection.CodeFixes</AssemblyName>
<PackFolder>analyzers/dotnet</PackFolder>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NuGetizer" Version="1.4.6" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.2.0" Pack="false" />
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.Common" Version="4.2.0" Pack="false" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Composition.AttributedModel" Version="10.0.5" />
<PackageReference Include="System.Composition.Hosting" Version="10.0.5" />
<PackageReference Include="System.Composition.TypedParts" Version="10.0.5" />
<ProjectReference Include="..\DependencyInjection.CodeAnalysis\DependencyInjection.CodeAnalysis.csproj" />
</ItemGroup>
</Project>