1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2024-10-16 06:00:45 +00:00
msfs-popout-panel-manager/WindowsAgent/WindowsAgent.csproj

34 lines
1.2 KiB
XML
Raw Permalink Normal View History

2024-02-28 02:44:21 +00:00
<Project Sdk="Microsoft.NET.Sdk">
2022-07-23 19:23:32 +00:00
<PropertyGroup>
2023-07-12 22:41:31 +00:00
<TargetFramework>net7.0-windows</TargetFramework>
2022-07-23 19:23:32 +00:00
<AssemblyName>WindowsAgent</AssemblyName>
<PackageId>MSFS 2020 Popout Panel Manager WindowsAgent</PackageId>
<Product>MSFS 2020 Popout Panel Manager WindowsAgent</Product>
<Authors>Stanley Kwok</Authors>
<Company>Stanley Kwok</Company>
<Copyright>Stanley Kwok 2021</Copyright>
<PackageProjectUrl>https://github.com/hawkeye-stan/msfs-popout-panel-manager</PackageProjectUrl>
<RootNamespace>MSFSPopoutPanelManager.WindowsAgent</RootNamespace>
<Platforms>x64</Platforms>
2024-03-14 22:50:32 +00:00
<Version>4.1.1.0</Version>
<AssemblyVersion>4.1.1.0</AssemblyVersion>
<FileVersion>4.1.1.0</FileVersion>
2022-07-23 19:23:32 +00:00
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<DebugType>Embedded</DebugType>
2023-07-26 20:22:44 +00:00
<Configurations>Debug;Release;Local</Configurations>
2023-07-23 05:13:23 +00:00
<UseWindowsForms>true</UseWindowsForms>
2022-07-23 19:23:32 +00:00
</PropertyGroup>
<ItemGroup>
<PackageReference Include="InputSimulatorCore" Version="1.0.5" />
<PackageReference Include="WindowsHook" Version="1.0.1" />
</ItemGroup>
<ItemGroup>
2023-07-12 22:41:31 +00:00
<ProjectReference Include="..\DomainModel\DomainModel.csproj" />
2022-07-23 19:23:32 +00:00
<ProjectReference Include="..\Shared\Shared.csproj" />
</ItemGroup>
</Project>