2022-01-27 13:40:04 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
<TargetFramework>net5.0-windows</TargetFramework>
|
|
|
|
|
<UseWPF>true</UseWPF>
|
|
|
|
|
<RootNamespace>MSFSPopoutPanelManager.Provider</RootNamespace>
|
|
|
|
|
<PackageId>MSFS 2020 Popout Panel Manager Provider</PackageId>
|
|
|
|
|
<Product>MSFS 2020 Popout Panel Manager Provider</Product>
|
2022-07-09 22:03:43 +00:00
|
|
|
|
<Version>3.3.6.0</Version>
|
2022-01-27 13:40:04 +00:00
|
|
|
|
<Authors>Stanley Kwok</Authors>
|
|
|
|
|
<Copyright>Stanley Kwok 2021</Copyright>
|
|
|
|
|
<PackageProjectUrl>https://github.com/hawkeye-stan/msfs-popout-panel-manager</PackageProjectUrl>
|
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
<ApplicationIcon />
|
|
|
|
|
<StartupObject />
|
2022-06-30 23:53:08 +00:00
|
|
|
|
<Platforms>x64</Platforms>
|
2022-01-27 13:40:04 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
|
|
|
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2022-06-30 23:53:08 +00:00
|
|
|
|
|
2022-01-27 13:40:04 +00:00
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="MouseKeyHook" Version="5.6.0" />
|
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
2022-02-07 03:05:05 +00:00
|
|
|
|
<PackageReference Include="WindowsInput" Version="6.4.0" />
|
2022-01-27 13:40:04 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\FsConnector\FsConnector.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Model\Model.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Shared\Shared.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|