-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCreateAndModifyObjects.csproj
More file actions
27 lines (23 loc) · 1.04 KB
/
CreateAndModifyObjects.csproj
File metadata and controls
27 lines (23 loc) · 1.04 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<RootNamespace>PayrollEngine.Client.Tutorial.CreateAndModifyObjects</RootNamespace>
<UserSecretsId>PayrollEngine.Client.Tutorial.CreateAndModifyObjects</UserSecretsId>
<Description>Payroll Engine Client Tutorial Create And Modify Objects</Description>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="PayrollEngine.Client.Services" Version="$(PayrollEngineVersion)" />
<PackageReference Include="PayrollEngine.Serilog" Version="$(PayrollEngineVersion)" />
<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>
<None Update="Tasks.csv">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>