-
Notifications
You must be signed in to change notification settings - Fork 793
/
Copy pathdotnet-grpc.Tests.csproj
66 lines (58 loc) · 2.75 KB
/
dotnet-grpc.Tests.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- MSBuild has issues with testing frameworks other than the one referenced in global.json -->
<TargetFrameworks>net7.0</TargetFrameworks>
<IsPackable>false</IsPackable>
<RootNamespace>Grpc.Dotnet.Cli.Tests</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Content Include="TestAssets\**\*" CopyToOutputDirectory="PreserveNewest" />
<Compile Include="..\Shared\ExceptionAssert.cs" Link="Infrastructure\ExceptionAssert.cs" />
<Compile Include="..\Shared\TaskExtensions.cs" Link="Infrastructure\TaskExtensions.cs" />
<FrameworkReference Include="Microsoft.AspNetCore.App" />
<ProjectReference Include="..\..\src\dotnet-grpc\dotnet-grpc.csproj" />
</ItemGroup>
<!-- Flow package versions for testing -->
<ItemGroup>
<!-- Parameter1: PackageName -->
<!-- Parameter2: PackageVersion -->
<!-- Parameter3: PrivateAssets -->
<!-- Parameter4: ApplicableServiceType -->
<!-- Parameter5: ApplicableToWebProjects (Optional: default is null, i.e. applies to both web and non-web projects) -->
<AssemblyAttribute Include="Grpc.Dotnet.Cli.Internal.GrpcDependencyAttribute">
<_Parameter1>Google.Protobuf</_Parameter1>
<_Parameter2>$(GoogleProtobufPackageVersion)</_Parameter2>
<_Parameter3>Default</_Parameter3>
<_Parameter4>Client;None</_Parameter4>
</AssemblyAttribute>
<AssemblyAttribute Include="Grpc.Dotnet.Cli.Internal.GrpcDependencyAttribute">
<_Parameter1>Grpc.AspNetCore</_Parameter1>
<_Parameter2>$(GrpcDotnetVersion)</_Parameter2>
<_Parameter3>Default</_Parameter3>
<_Parameter4>Both;Server</_Parameter4>
</AssemblyAttribute>
<AssemblyAttribute Include="Grpc.Dotnet.Cli.Internal.GrpcDependencyAttribute">
<_Parameter1>Grpc.Net.ClientFactory</_Parameter1>
<_Parameter2>$(GrpcDotnetVersion)</_Parameter2>
<_Parameter3>Default</_Parameter3>
<_Parameter4>Client</_Parameter4>
<_Parameter5>false</_Parameter5>
</AssemblyAttribute>
<AssemblyAttribute Include="Grpc.Dotnet.Cli.Internal.GrpcDependencyAttribute">
<_Parameter1>Grpc.AspNetCore.Server.ClientFactory</_Parameter1>
<_Parameter2>$(GrpcDotnetVersion)</_Parameter2>
<_Parameter3>Default</_Parameter3>
<_Parameter4>Client</_Parameter4>
<_Parameter5>true</_Parameter5>
</AssemblyAttribute>
<AssemblyAttribute Include="Grpc.Dotnet.Cli.Internal.GrpcDependencyAttribute">
<_Parameter1>Grpc.Tools</_Parameter1>
<_Parameter2>$(GrpcToolsPackageVersion)</_Parameter2>
<_Parameter3>All</_Parameter3>
<_Parameter4>Client;None</_Parameter4>
</AssemblyAttribute>
</ItemGroup>
<ItemGroup>
<Folder Include="TestAssets\EmptyProject\Proto\Subfolder\" />
</ItemGroup>
</Project>