-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathScriptingDevelopment.csproj
More file actions
24 lines (20 loc) · 932 Bytes
/
ScriptingDevelopment.csproj
File metadata and controls
24 lines (20 loc) · 932 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<RootNamespace>PayrollEngine.Client.Tutorial.ScriptingDevelopment</RootNamespace>
<UserSecretsId>PayrollEngine.Client.Tutorial.ScriptingDevelopment</UserSecretsId>
<Description>Payroll Engine Client Tutorial Scripting Development</Description>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="PayrollEngine.Client.Services" Version="0.10.0-beta.1" />
<PackageReference Include="PayrollEngine.Serilog" Version="0.10.0-beta.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.3" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>