-
-
Notifications
You must be signed in to change notification settings - Fork 125
Expand file tree
/
Copy pathTUnit.Core.csproj
More file actions
80 lines (66 loc) · 3.56 KB
/
TUnit.Core.csproj
File metadata and controls
80 lines (66 loc) · 3.56 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\Library.props" />
<ItemGroup>
<InternalsVisibleTo Include="TUnit.Engine" />
<InternalsVisibleTo Include="TUnit.UnitTests" />
<InternalsVisibleTo Include="TUnit.AspNetCore.Core" />
<InternalsVisibleTo Include="TUnit.Logging.Microsoft" />
<InternalsVisibleTo Include="TUnit.Aspire" />
<InternalsVisibleTo Include="TUnit.Aspire.Tests" />
<InternalsVisibleTo Include="TUnit.OpenTelemetry" />
<InternalsVisibleTo Include="TUnit.OpenTelemetry.Tests" />
<InternalsVisibleTo Include="TUnit.Engine.Tests" />
<InternalsVisibleTo Include="TUnit.Playwright" />
</ItemGroup>
<ItemGroup>
<TfmSpecificPackageFile Include="TUnit.Core.props">
<Pack>true</Pack>
<PackagePath>$(BuildTransitivePath)</PackagePath>
</TfmSpecificPackageFile>
<None Include="TUnit.Core.props">
<Pack>true</Pack>
<PackagePath>$(BuildPath)</PackagePath>
</None>
<TfmSpecificPackageFile Include="TUnit.Core.targets">
<Pack>true</Pack>
<PackagePath>$(BuildTransitivePath)</PackagePath>
</TfmSpecificPackageFile>
<None Include="TUnit.Core.targets">
<Pack>true</Pack>
<PackagePath>$(BuildPath)</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<None
Include="$(MSBuildProjectDirectory)\..\TUnit.Analyzers.Roslyn44\bin\$(Configuration)\netstandard2.0\TUnit.Analyzers.dll"
Pack="true" PackagePath="analyzers/dotnet/roslyn4.4/cs" Visible="false" />
<None
Include="$(MSBuildProjectDirectory)\..\TUnit.Analyzers.Roslyn47\bin\$(Configuration)\netstandard2.0\TUnit.Analyzers.dll"
Pack="true" PackagePath="analyzers/dotnet/roslyn4.7/cs" Visible="false" />
<None
Include="$(MSBuildProjectDirectory)\..\TUnit.Analyzers.Roslyn414\bin\$(Configuration)\netstandard2.0\TUnit.Analyzers.dll"
Pack="true" PackagePath="analyzers/dotnet/roslyn4.14/cs" Visible="false" />
<None
Include="$(MSBuildProjectDirectory)\..\TUnit.Analyzers.CodeFixers\bin\$(Configuration)\netstandard2.0\TUnit.Analyzers.CodeFixers.dll"
Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
<None
Include="$(MSBuildProjectDirectory)\..\TUnit.Core.SourceGenerator.Roslyn44\bin\$(Configuration)\netstandard2.0\TUnit.Core.SourceGenerator.dll"
Pack="true" PackagePath="analyzers/dotnet/roslyn4.4/cs" Visible="false" />
<None
Include="$(MSBuildProjectDirectory)\..\TUnit.Core.SourceGenerator.Roslyn47\bin\$(Configuration)\netstandard2.0\TUnit.Core.SourceGenerator.dll"
Pack="true" PackagePath="analyzers/dotnet/roslyn4.7/cs" Visible="false" />
<None
Include="$(MSBuildProjectDirectory)\..\TUnit.Core.SourceGenerator.Roslyn414\bin\$(Configuration)\netstandard2.0\TUnit.Core.SourceGenerator.dll"
Pack="true" PackagePath="analyzers/dotnet/roslyn4.14/cs" Visible="false" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="Microsoft.CSharp" />
<PackageReference Include="System.Text.Json" />
<PackageReference Include="System.Collections.Immutable" />
</ItemGroup>
<ItemGroup>
<Compile Remove="IClassDataSourceAttribute.cs" />
<Compile Remove="Interfaces\INestedClassDataSourceInitializer.cs" />
</ItemGroup>
<Import Project="..\Library.targets" />
</Project>