-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKustoTimeGrab.csproj
More file actions
29 lines (26 loc) · 1.13 KB
/
KustoTimeGrab.csproj
File metadata and controls
29 lines (26 loc) · 1.13 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<ApplicationManifest>app.manifest</ApplicationManifest>
<AssemblyName>KustoTimeGrab</AssemblyName>
<RootNamespace>KustoTimeGrab</RootNamespace>
<!-- Startup perf -->
<PublishReadyToRun>true</PublishReadyToRun>
<PublishReadyToRunComposite>true</PublishReadyToRunComposite>
<TieredPGO>true</TieredPGO>
<!-- Distribution -->
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FlaUI.Core" Version="4.0.0"/>
<PackageReference Include="FlaUI.UIA3" Version="4.0.0"/>
</ItemGroup>
</Project>