-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMatching.Engine.csproj
More file actions
32 lines (27 loc) · 1.12 KB
/
Matching.Engine.csproj
File metadata and controls
32 lines (27 loc) · 1.12 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Autofac" />
<PackageReference Include="Autofac.Extensions.DependencyInjection" />
<PackageReference Include="Dapper" />
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" />
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" />
<PackageReference Include="Microsoft.Extensions.Hosting" />
<PackageReference Include="Newtonsoft.Json" />
<PackageReference Include="System.Data.SqlClient" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Libraries\Matching.Core\Matching.Core.csproj" />
<ProjectReference Include="..\Libraries\EnvironmentSetup\EnvironmentSetup.csproj" />
<ProjectReference Include="..\Libraries\Messaging\Messaging.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>