1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2024-11-22 05:40:11 +00:00
msfs-popout-panel-manager/WindowsAgent/WindowsAgent.csproj

33 lines
1.2 KiB
XML
Raw Normal View History

2022-07-23 19:23:32 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<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>
2022-07-30 02:29:20 +00:00
<Version>3.4.1.0</Version>
<AssemblyVersion>3.4.1.0</AssemblyVersion>
<FileVersion>3.4.1.0</FileVersion>
2022-07-23 19:23:32 +00:00
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<DebugType>Embedded</DebugType>
<Configurations>Debug;Release;DebugTouchPanel;ReleaseTouchPanel</Configurations>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="InputSimulatorCore" Version="1.0.5" />
<PackageReference Include="WindowsHook" Version="1.0.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Shared\Shared.csproj" />
2022-07-25 12:40:21 +00:00
<ProjectReference Include="..\UserDataAgent\UserDataAgent.csproj" />
2022-07-23 19:23:32 +00:00
</ItemGroup>
</Project>