FastGithub.UI.csproj 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <UseWPF>true</UseWPF>
  4. <UseWindowsForms>true</UseWindowsForms>
  5. <OutputType>WinExe</OutputType>
  6. <LangVersion>8.0</LangVersion>
  7. <Nullable>enable</Nullable>
  8. <TargetFramework>net45</TargetFramework>
  9. <ApplicationIcon>app.ico</ApplicationIcon>
  10. <ApplicationManifest>app.manifest</ApplicationManifest>
  11. <PackageLicenseExpression>MIT</PackageLicenseExpression>
  12. <AutoGenerateBindingRedirects>False</AutoGenerateBindingRedirects>
  13. <StartupObject></StartupObject>
  14. </PropertyGroup>
  15. <ItemGroup>
  16. <None Remove="Resource\*.*" />
  17. <Resource Include="Resource\*.*" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <Compile Remove="App.xaml.cs" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <Page Remove="App.xaml" />
  24. </ItemGroup>
  25. <ItemGroup>
  26. <Reference Include="System.Net.Http" />
  27. </ItemGroup>
  28. <ItemGroup>
  29. <PackageReference Include="LiveCharts.Wpf" Version="0.9.7">
  30. <PrivateAssets>all</PrivateAssets>
  31. </PackageReference>
  32. <PackageReference Include="Newtonsoft.Json" Version="13.0.1">
  33. <PrivateAssets>all</PrivateAssets>
  34. </PackageReference>
  35. </ItemGroup>
  36. </Project>