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

57 lines
2.2 KiB
XML
Raw Normal View History

2022-07-23 19:23:32 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2023-07-12 22:41:31 +00:00
<TargetFramework>net7.0-windows</TargetFramework>
2022-07-23 19:23:32 +00:00
<AssemblyName>SimConnectAgent</AssemblyName>
<PackageId>MSFS 2020 Popout Panel Manager SimConnectAgent</PackageId>
<Product>MSFS 2020 Popout Panel Manager SimConnectAgent</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.SimConnectAgent</RootNamespace>
<Platforms>x64</Platforms>
2024-03-03 05:02:21 +00:00
<Version>4.1.0.3</Version>
<AssemblyVersion>4.1.0.3</AssemblyVersion>
<FileVersion>4.1.0.3</FileVersion>
2022-07-23 19:23:32 +00:00
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<DebugType>Embedded</DebugType>
2023-07-12 22:41:31 +00:00
<Configurations>Debug;Release;Local</Configurations>
2022-07-23 19:23:32 +00:00
</PropertyGroup>
<ItemGroup Condition=" '$(Configuration)' == 'ReleaseTouchPanel' Or '$(Configuration)' == 'DebugTouchPanel' ">
<Content Include="Resources\MobiFlightPresets\msfs2020_eventids.cip">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="Resources\MobiFlightPresets\msfs2020_eventids_user.cip">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="Resources\MobiFlightPresets\msfs2020_simvars.cip">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
2023-07-12 22:41:31 +00:00
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
2022-07-23 19:23:32 +00:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Shared\Shared.csproj" />
<ProjectReference Include="..\WindowsAgent\WindowsAgent.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="Microsoft.FlightSimulator.SimConnect">
<HintPath>Resources\SimConnect\Managed\Microsoft.FlightSimulator.SimConnect.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<ContentWithTargetPath Include=".\Resources\SimConnect\SimConnect.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<TargetPath>SimConnect.dll</TargetPath>
</ContentWithTargetPath>
</ItemGroup>
</Project>