microsoft/TypeAgent
Publicmirrored fromhttps://github.com/microsoft/TypeAgentAvailable
dotnet/autoShell/autoShell.csproj
17lines · 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 | <PackageReference Include="Microsoft-WindowsAPICodePack-Core" Version="1.1.5" /> |
| 14 | <PackageReference Include="Microsoft-WindowsAPICodePack-Shell" Version="1.1.5" /> |
| 15 | <PackageReference Include="Newtonsoft.Json" Version="13.0.4" /> |
| 16 | </ItemGroup> |
| 17 | </Project> |