forked from signalfx/microservices-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cartservice.csproj
33 lines (29 loc) · 1.38 KB
/
cartservice.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<LangVersion>11.0</LangVersion>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="Google.Protobuf" Version="3.23.1" />
<PackageReference Include="Google.Protobuf.Tools" Version="3.23.1" />
<PackageReference Include="Grpc" Version="2.46.6" />
<PackageReference Include="Grpc.HealthCheck" Version="2.53.0" />
<PackageReference Include="Grpc.Tools" Version="2.54.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />
<PackageReference Include="StackExchange.Redis" Version="2.6.111" />
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="7.0.2" />
</ItemGroup>
<ItemGroup>
<None Update="Dockerfile">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<!-- Nested test projects are atypical for .NET and for the build of both projects to work correctly it needs to be excluded from root project -->
<Compile Remove="tests/**" />
</ItemGroup>
</Project>