-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLogMkAgent.csproj
More file actions
26 lines (22 loc) · 976 Bytes
/
LogMkAgent.csproj
File metadata and controls
26 lines (22 loc) · 976 Bytes
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
<Project Sdk="Microsoft.NET.Sdk.Worker">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PublishAot>false</PublishAot>
<InvariantGlobalization>true</InvariantGlobalization>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<UserSecretsId>7fc54f1f-5b05-4598-a4ee-202ccf395bcf</UserSecretsId>
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="10.0.0" />
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.11" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.11" />
<PackageReference Include="System.Text.Json" Version="9.0.11" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\LogMkCommon\LogMkCommon.csproj" />
</ItemGroup>
</Project>