mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-22 22:00:11 +00:00
90 lines
3.2 KiB
XML
90 lines
3.2 KiB
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<OutputType>WinExe</OutputType>
|
|||
|
<TargetFramework>net5.0-windows</TargetFramework>
|
|||
|
<UseWPF>true</UseWPF>
|
|||
|
<Version>3.2.0</Version>
|
|||
|
<PackageId>MSFS 2020 Popout Panel Manager</PackageId>
|
|||
|
<Authors>Stanley Kwok</Authors>
|
|||
|
<Product>MSFS 2020 Popout Panel Manager</Product>
|
|||
|
<Copyright>Stanley Kwok 2021</Copyright>
|
|||
|
<PackageProjectUrl>https://github.com/hawkeye-stan/msfs-popout-panel-manager</PackageProjectUrl>
|
|||
|
<AssemblyName>MSFSPopoutPanelManager</AssemblyName>
|
|||
|
<RootNamespace>MSFSPopoutPanelManager.WpfApp</RootNamespace>
|
|||
|
<ApplicationIcon>logo.ico</ApplicationIcon>
|
|||
|
<Platforms>x64</Platforms>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<Content Include="log4net.config">
|
|||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|||
|
</Content>
|
|||
|
<Content Include="..\README.md">
|
|||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|||
|
</Content>
|
|||
|
<Content Include="Resources\check.png">
|
|||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|||
|
</Content>
|
|||
|
<Content Include="Resources\cross.png">
|
|||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|||
|
</Content>
|
|||
|
<Content Include="Resources\info.png">
|
|||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|||
|
</Content>
|
|||
|
<Content Include="Resources\msfsconnected.png">
|
|||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|||
|
</Content>
|
|||
|
<Content Include="Resources\msfsdisconnected.png">
|
|||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|||
|
</Content>
|
|||
|
<Content Include="Resources\transparent.png">
|
|||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|||
|
</Content>
|
|||
|
<Content Include="..\VERSION.md">
|
|||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|||
|
</Content>
|
|||
|
<Content Include="..\LICENSE">
|
|||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|||
|
</Content>
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="CalcBinding" Version="2.5.2" />
|
|||
|
<PackageReference Include="Fody" Version="6.6.0">
|
|||
|
<PrivateAssets>all</PrivateAssets>
|
|||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|||
|
</PackageReference>
|
|||
|
<PackageReference Include="Hardcodet.NotifyIcon.Wpf" Version="1.1.0" />
|
|||
|
<PackageReference Include="log4net" Version="2.0.14" />
|
|||
|
<PackageReference Include="MahApps.Metro" Version="2.4.9" />
|
|||
|
<PackageReference Include="MouseKeyHook" Version="5.6.0" />
|
|||
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
|||
|
<PackageReference Include="PropertyChanged.Fody" Version="3.4.0" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\Model\Model.csproj" />
|
|||
|
<ProjectReference Include="..\Provider\Provider.csproj" />
|
|||
|
<ProjectReference Include="..\Shared\Shared.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<Resource Include="logo.ico" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<Compile Update="UserControlPanelConfiguration.xaml.cs">
|
|||
|
<SubType>Code</SubType>
|
|||
|
</Compile>
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<Page Update="UserControlPanelConfiguration.xaml">
|
|||
|
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
|
|||
|
<SubType>Designer</SubType>
|
|||
|
</Page>
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|