-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathOffloc.Cleaner.csproj
More file actions
37 lines (32 loc) · 1.27 KB
/
Offloc.Cleaner.csproj
File metadata and controls
37 lines (32 loc) · 1.27 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">
<PropertyGroup>
<OutputType>Exe</OutputType>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<UserSecretsId>bd191539-371a-49fd-a9f4-f6c77878fc6a</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DocumentFormat.OpenXml" />
<PackageReference Include="Microsoft.Extensions.Configuration" />
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" />
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Libraries\EnvironmentSetup\EnvironmentSetup.csproj" />
<ProjectReference Include="..\Libraries\Messaging\Messaging.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Configuration\DiscretionaryWriterConfig.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Configuration\GroupWriterConfig.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Configuration\IndexFieldMappings.xlsx">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>