-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtriaxis.Tools.XELive.csproj
29 lines (26 loc) · 1.17 KB
/
triaxis.Tools.XELive.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net5.0;net6.0</TargetFrameworks>
<PackageId>triaxis.Tools.XELive</PackageId>
<PackAsTool>true</PackAsTool>
<ToolCommandName>XELive</ToolCommandName>
<AssemblyName>$(ToolCommandName)</AssemblyName>
<Version>0.3.2</Version>
<Authors>ssimek</Authors>
<Company>triaxis s.r.o.</Company>
<Description>Simple tool for live monitoring of commands executed on Sql Server using XEvents</Description>
<Copyright>© 2019-2021 triaxis s.r.o.</Copyright>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.8.0" />
<PackageReference Include="Crayon" Version="1.2.48" />
<PackageReference Include="Microsoft.SqlServer.XEvent.XELite" Version="2019.7.2.9" />
</ItemGroup>
<ItemGroup>
<None Include="appsettings.json" CopyToOutputDirectory="PreserveNewest" />
<None Include="LICENSE.txt" Pack="true" PackagePath="$(PackageLicenseFile)" />
</ItemGroup>
</Project>