-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathTransporter.Service.csproj
84 lines (75 loc) · 3.56 KB
/
Transporter.Service.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<Version>3.0.0</Version>
<RootNamespace>TransporterService</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CouchbaseNetClient" Version="3.6.1" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
<PackageReference Include="Quartz" Version="3.11.0" />
<PackageReference Include="Quartz.Extensions.Hosting" Version="3.11.0" />
<PackageReference Include="NLog.Extensions.Logging" Version="1.7.5" />
<PackageReference Include="NLog.Targets.Graylog" Version="0.0.1" />
</ItemGroup>
<ItemGroup>
<Content Include=".git\config" />
<Content Include=".git\description" />
<Content Include=".git\HEAD" />
<Content Include=".git\hooks\applypatch-msg.sample" />
<Content Include=".git\hooks\commit-msg.sample" />
<Content Include=".git\hooks\fsmonitor-watchman.sample" />
<Content Include=".git\hooks\post-update.sample" />
<Content Include=".git\hooks\pre-applypatch.sample" />
<Content Include=".git\hooks\pre-commit.sample" />
<Content Include=".git\hooks\pre-merge-commit.sample" />
<Content Include=".git\hooks\pre-push.sample" />
<Content Include=".git\hooks\pre-rebase.sample" />
<Content Include=".git\hooks\pre-receive.sample" />
<Content Include=".git\hooks\prepare-commit-msg.sample" />
<Content Include=".git\hooks\update.sample" />
<Content Include=".git\index" />
<Content Include=".git\info\exclude" />
<Content Include=".git\logs\HEAD" />
<Content Include=".git\logs\refs\heads\main" />
<Content Include=".git\logs\refs\remotes\origin\HEAD" />
<Content Include=".git\objects\3d\d5f8107a6d403fe10b05ae7db29cb81952f498" />
<Content Include=".git\objects\df\cfd56f444f9ae40e1082c07fe254cc547136cf" />
<Content Include=".git\objects\f8\c9f245a80ad34675eca6bc47789a1df177f39b" />
<Content Include=".git\packed-refs" />
<Content Include=".git\refs\heads\main" />
<Content Include=".git\refs\remotes\origin\HEAD" />
</ItemGroup>
<ItemGroup>
<Folder Include=".git\objects\info" />
<Folder Include=".git\objects\pack" />
<Folder Include=".git\refs\tags" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Transporter.Core\**" />
<Compile Remove="Transporter.MSSQLAdapter\**" />
<Compile Remove="Transporter.CouchbaseAdapter\**" />
<Compile Remove="Transporter.IntegrationTests\**" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="Transporter.Core\**" />
<EmbeddedResource Remove="Transporter.MSSQLAdapter\**" />
<EmbeddedResource Remove="Transporter.CouchbaseAdapter\**" />
<EmbeddedResource Remove="Transporter.IntegrationTests\**" />
</ItemGroup>
<ItemGroup>
<None Remove="Transporter.Core\**" />
<None Remove="Transporter.MSSQLAdapter\**" />
<None Remove="Transporter.CouchbaseAdapter\**" />
<None Remove="Transporter.IntegrationTests\**" />
<None Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="Transporter.Core\Transporter.Core.csproj" />
<ProjectReference Include="Transporter.CouchbaseAdapter\Transporter.CouchbaseAdapter.csproj" />
<ProjectReference Include="Transporter.MSSQLAdapter\Transporter.MSSQLAdapter.csproj" />
</ItemGroup>
</Project>