-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathExtendedObjectModel.csproj
More file actions
25 lines (21 loc) · 1008 Bytes
/
ExtendedObjectModel.csproj
File metadata and controls
25 lines (21 loc) · 1008 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<RootNamespace>PayrollEngine.Client.Tutorial.ExtendedObjectModel</RootNamespace>
<UserSecretsId>PayrollEngine.Client.Tutorial.ExtendedObjectModel</UserSecretsId>
<Description>Payroll Engine Client Tutorial Extended Object Model</Description>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="PayrollEngine.Client.Services" Version="$(PayrollEngineVersion)" />
<PackageReference Include="PayrollEngine.Serilog" Version="$(PayrollEngineVersion)" />
<PackageReference Include="AutoMapper" Version="16.1.1" />
<PackageReference Include="Serilog.Sinks.Async" Version="2.1.0" />
<PackageReference Include="Serilog.Sinks.File" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="10.0.5" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>