-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDependencyInjection.Tests.csproj
More file actions
43 lines (35 loc) · 2.14 KB
/
DependencyInjection.Tests.csproj
File metadata and controls
43 lines (35 loc) · 2.14 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
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\DependencyInjection.CodeAnalysis\Devlooped.Extensions.DependencyInjection.props" />
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
<RootNamespace>Tests</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
<PackageReference Include="Moq" Version="4.20.72" />
<PackageReference Include="Spectre.Console.Cli" Version="0.53.1" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5" PrivateAssets="all" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.5" />
<PackageReference Include="System.ComponentModel.Composition" Version="10.0.1" />
<PackageReference Include="System.Composition.AttributedModel" Version="10.0.1" />
<PackageReference Include="System.Composition.Hosting" Version="10.0.1" />
<PackageReference Include="System.Composition.TypedParts" Version="10.0.1" />
<PackageReference Include="Microsoft.Bcl.HashCode" Version="6.0.0" GeneratePathProperty="true" />
<PackageReference Include="Microsoft.Bcl.TimeProvider" Version="10.0.1" GeneratePathProperty="true" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DependencyInjection.CodeAnalysis\DependencyInjection.CodeAnalysis.csproj" ReferenceOutputAssembly="false" OutputItemType="Analyzer" />
<ProjectReference Include="..\DependencyInjection.CodeFixes\DependencyInjection.CodeFixes.csproj" ReferenceOutputAssembly="false" OutputItemType="Analyzer" />
</ItemGroup>
<ItemGroup>
<Using Include="Xunit" />
<Using Include="Xunit.Abstractions" />
</ItemGroup>
<Import Project="..\DependencyInjection.CodeAnalysis\Devlooped.Extensions.DependencyInjection.targets" />
<ItemGroup>
<Analyzer Include="$(PkgMicrosoft_Bcl_HashCode)\lib\netstandard2.0\Microsoft.Bcl.HashCode.dll" />
<Analyzer Include="$(PkgMicrosoft_Bcl_TimeProvider)\lib\netstandard2.0\Microsoft.Bcl.TimeProvider.dll" />
</ItemGroup>
</Project>