-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathReactiveUI.SourceGenerators.Tests.csproj
More file actions
67 lines (61 loc) · 2.92 KB
/
Copy pathReactiveUI.SourceGenerators.Tests.csproj
File metadata and controls
67 lines (61 loc) · 2.92 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>$(TestTfms)</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>13.0</LangVersion>
<OutputType>Exe</OutputType>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
<NoWarn>$(NoWarn);CA1812;CA1001</NoWarn>
<ExcludeFromCodeCoverage>true</ExcludeFromCodeCoverage>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" />
<PackageReference Include="System.Formats.Asn1" />
<PackageReference Include="TUnit" />
<PackageReference Include="Verify.TUnit" />
<PackageReference Include="Verify.SourceGenerators" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" PrivateAssets="all" VersionOverride="5.3.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Common" PrivateAssets="all" VersionOverride="5.3.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.Common" PrivateAssets="all" VersionOverride="5.3.0" />
<PackageReference Include="Microsoft.CodeAnalysis" PrivateAssets="all" VersionOverride="5.3.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" PrivateAssets="all" VersionOverride="5.3.0" />
<PackageReference Include="ReactiveUI" />
<PackageReference Include="Splat" />
</ItemGroup>
<ItemGroup>
<Using Include="TUnit.Assertions" />
<Using Include="TUnit.Core" />
<Using Include="ReactiveUI.SourceGenerators" />
<Using Include="System.Text.RegularExpressions" />
<Using Include="Microsoft.CodeAnalysis" />
<Using Include="Microsoft.CodeAnalysis.CSharp" />
<Using Include="System.Collections.Immutable" />
<Using Include="Microsoft.CodeAnalysis.Diagnostics" />
<Using Include="ReactiveUI.SourceGenerators.CodeFixers" />
<Using Include="TUnit.Assertions" />
<Using Include="TUnit.Core" />
<Using Include="ReactiveUI.SourceGenerators" />
<Using Include="System.Text.RegularExpressions" />
<Using Include="Microsoft.CodeAnalysis" />
<Using Include="Microsoft.CodeAnalysis.CSharp" />
<Using Include="System.Collections.Immutable" />
<Using Include="Microsoft.CodeAnalysis.Diagnostics" />
<Using Include="ReactiveUI.SourceGenerators.CodeFixers" />
<Using Include="System.Runtime.CompilerServices" />
</ItemGroup>
<ItemGroup>
<Folder Include="DERIVEDLIST\" />
<Folder Include="IVIEWFOR\" />
<Folder Include="OAPH\" />
<Folder Include="REACTIVECMD\" />
<Folder Include="REACTIVE\" />
<Folder Include="REACTIVEOBJ\" />
<Folder Include="REACTIVECOLL\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ReactiveUI.SourceGenerators.Analyzers.CodeFixes\ReactiveUI.SourceGenerators.Analyzers.CodeFixes.csproj" />
<ProjectReference Include="..\ReactiveUI.SourceGenerators.Roslyn4120\ReactiveUI.SourceGenerators.Roslyn4120.csproj" />
</ItemGroup>
</Project>