forked from ravendb/demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDemoCron.csproj
31 lines (26 loc) · 1.11 KB
/
DemoCron.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="3.1.22" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="3.1.22" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="3.1.22" />
<PackageReference Include="Microsoft.Extensions.Logging.Configuration" Version="3.1.22" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="3.1.22" />
<PackageReference Include="NLog.Extensions.Logging" Version="1.5.0" />
<PackageReference Include="RavenDB.Client" Version="5.3.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DemoCommon\DemoCommon.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="NLog.config">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>