microsoft/TypeAgent

Public

mirrored fromhttps://github.com/microsoft/TypeAgentAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
dev/georgeng/async-clientio-callbacks

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

dotnet/autoShell/autoShell.csproj

25lines · modecode

1<Project Sdk="Microsoft.NET.Sdk">
2 <PropertyGroup>
3 <TargetFramework>net8.0-windows</TargetFramework>
4 <OutputType>Exe</OutputType>
5 <UseWindowsForms>true</UseWindowsForms>
6 <UseWPF>true</UseWPF>
7 <ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
8 <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
9 <OutputPath>bin\$(Configuration)</OutputPath>
10 <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
11 <!-- Suppress interop warnings that are by-design for Win32/COM P/Invoke code -->
12 <NoWarn>$(NoWarn);SYSLIB1054;SYSLIB1096;CA1712;CA2101;CA1838</NoWarn>
13 </PropertyGroup>
14 <ItemGroup>
15 <InternalsVisibleTo Include="autoShell.Tests" />
16 <InternalsVisibleTo Include="DynamicProxyGenAssembly2" />
17 </ItemGroup>
18 <ItemGroup>
19 <PackageReference Include="Interop.UIAutomationClient" Version="10.19041.0" />
20 <PackageReference Include="Microsoft-WindowsAPICodePack-Core" Version="1.1.5" />
21 <PackageReference Include="Microsoft-WindowsAPICodePack-Shell" Version="1.1.5" />
22 <PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
23 <PackageReference Include="System.Management" Version="8.0.0" />
24 </ItemGroup>
25</Project>