microsoft/TypeAgent

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
cleanup/test-consolelogs

Branches

Tags

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

Clone

HTTPS

Download ZIP

dotnet/autoShell/autoShell.csproj

29lines · 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 </PropertyGroup>
12 <ItemGroup>
13 <COMReference Include="UIAutomationClient">
14 <WrapperTool>tlbimp</WrapperTool>
15 <VersionMinor>0</VersionMinor>
16 <VersionMajor>1</VersionMajor>
17 <Guid>944de083-8fb8-45cf-bcb7-c477acb2f897</Guid>
18 <Lcid>0</Lcid>
19 <Isolated>false</Isolated>
20 <EmbedInteropTypes>true</EmbedInteropTypes>
21 </COMReference>
22 </ItemGroup>
23 <ItemGroup>
24 <PackageReference Include="Microsoft-WindowsAPICodePack-Core" Version="1.1.5" />
25 <PackageReference Include="Microsoft-WindowsAPICodePack-Shell" Version="1.1.5" />
26 <PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
27 <PackageReference Include="System.Management" Version="8.0.0" />
28 </ItemGroup>
29</Project>