WpfApp1.csproj 908 B

123456789101112131415161718192021222324252627282930313233343536
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net8.0-windows</TargetFramework>
  5. <Nullable>enable</Nullable>
  6. <ImplicitUsings>enable</ImplicitUsings>
  7. <UseWPF>true</UseWPF>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <None Remove="bin\Debug\net8.0-windows\img\net.jpg" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <Content Include="bin\Debug\net8.0-windows\Test.json" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <Page Include="bin\Debug\net8.0-windows\dark.xaml">
  20. <Generator>MSBuild:Compile</Generator>
  21. </Page>
  22. <Page Include="bin\Debug\net8.0-windows\light.xaml">
  23. <Generator>MSBuild:Compile</Generator>
  24. </Page>
  25. </ItemGroup>
  26. <ItemGroup>
  27. <Resource Include="bin\Debug\net8.0-windows\img\net.jpg" />
  28. </ItemGroup>
  29. </Project>