microsoft/TypeAgent
Publicmirrored fromhttps://github.com/microsoft/TypeAgentAvailable
dotnet/uiAutomationHelper/UiAutomationHelper.csproj
27lines · modecode
| 1 | <Project Sdk="Microsoft.NET.Sdk"> |
| 2 | <PropertyGroup> |
| 3 | <TargetFramework>net8.0-windows</TargetFramework> |
| 4 | <OutputType>Exe</OutputType> |
| 5 | <Nullable>enable</Nullable> |
| 6 | <ImplicitUsings>enable</ImplicitUsings> |
| 7 | <LangVersion>latest</LangVersion> |
| 8 | <RootNamespace>UiAutomationHelper</RootNamespace> |
| 9 | <AssemblyName>UiAutomationHelper</AssemblyName> |
| 10 | <Version>0.1.0</Version> |
| 11 | <OutputPath>bin\$(Configuration)</OutputPath> |
| 12 | <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> |
| 13 | <NoWarn>$(NoWarn);SYSLIB1054;CA1508;CA1859</NoWarn> |
| 14 | </PropertyGroup> |
| 15 | <ItemGroup> |
| 16 | <Compile Remove="test/**" /> |
| 17 | <None Remove="test/**" /> |
| 18 | <EmbeddedResource Remove="test/**" /> |
| 19 | </ItemGroup> |
| 20 | <ItemGroup> |
| 21 | <PackageReference Include="FlaUI.Core" Version="4.0.0" /> |
| 22 | <PackageReference Include="FlaUI.UIA3" Version="4.0.0" /> |
| 23 | </ItemGroup> |
| 24 | <ItemGroup> |
| 25 | <InternalsVisibleTo Include="UiAutomationHelper.Tests" /> |
| 26 | </ItemGroup> |
| 27 | </Project> |
| 28 | |