-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWorker.fsproj
More file actions
37 lines (29 loc) · 1.07 KB
/
Worker.fsproj
File metadata and controls
37 lines (29 loc) · 1.07 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
33
34
35
36
37
<Project Sdk="Microsoft.NET.Sdk.Worker">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<UserSecretsId>dotnet-Worker-4D7F76B9-D222-454A-9772-79BD789BB07C</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.ApplicationInsights.WorkerService" Version="3.0.0"/>
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.3"/>
</ItemGroup>
<ItemGroup>
<Compile Include="Settings.fs"/>
<Compile Include="Worker.fs"/>
<Compile Include="Program.fs"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Domain\Domain.fsproj"/>
</ItemGroup>
<ItemGroup Condition="$(DefineConstants.Contains('AWS'))">
<ProjectReference Include="..\Infra.Amazon\Infra.Amazon.fsproj"/>
</ItemGroup>
<ItemGroup Condition="$(DefineConstants.Contains('AZ'))">
<ProjectReference Include="..\Infra.Azure\Infra.Azure.fsproj"/>
</ItemGroup>
<ItemGroup>
<Content Include="Dockerfile">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>