forked from akpaevj/OneSTools.EventLog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOneSTools.EventLog.Exporter.csproj
More file actions
42 lines (36 loc) · 1.62 KB
/
OneSTools.EventLog.Exporter.csproj
File metadata and controls
42 lines (36 loc) · 1.62 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
38
39
40
41
42
<Project Sdk="Microsoft.NET.Sdk.Worker">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<UserSecretsId>dotnet-EventLogExporterElasticSearch-E480DCDC-5542-443A-A879-763D915661EB</UserSecretsId>
<Authors>Akpaev Evgeny</Authors>
<Copyright>Akpaev Evgeny</Copyright>
<PackageProjectUrl></PackageProjectUrl>
<Description>Служба для экспорта журнала регистрации 1С в ClickHouse и ElasticSearch</Description>
<Version>1.0.5</Version>
<AssemblyName>EventLogExporter</AssemblyName>
<RootNamespace>OneSTools.EventLog.Exporter</RootNamespace>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
<OutputPath>..\Build\Release</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>portable</DebugType>
<DebugSymbols>true</DebugSymbols>
<OutputPath>..\Build\Debug</OutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Hosting" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting.Systemd" Version="5.0.1" />
<PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" Version="5.0.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\OneSTools.EventLog.Exporter.Core\OneSTools.EventLog.Exporter.Core.csproj" />
</ItemGroup>
<ProjectExtensions>
<VisualStudio>
<UserProperties appsettings_1json__JsonSchema="" />
</VisualStudio>
</ProjectExtensions>
</Project>