BasicTestApp.csproj 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
  2. <PropertyGroup>
  3. <TargetFramework>$(DefaultNetCoreTargetFramework)</TargetFramework>
  4. <!-- Must be defined before ReferenceFromSource.props is imported -->
  5. <AdditionalRunArguments>--pathbase /subdir</AdditionalRunArguments>
  6. <!-- Resx generation on Resources.resx only -->
  7. <GenerateResxSource>false</GenerateResxSource>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <Reference Include="System.ComponentModel" />
  11. <Reference Include="System.Net.Http.Json" />
  12. <Reference Include="Microsoft.AspNetCore.Components.WebAssembly" />
  13. <Reference Include="Microsoft.AspNetCore.Components.Authorization" />
  14. <Reference Include="Microsoft.AspNetCore.Components.Web.Extensions" />
  15. <Reference Include="Microsoft.Extensions.Logging.Configuration" />
  16. <Reference Include="Newtonsoft.Json" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <ProjectReference Include="..\TestContentPackage\TestContentPackage.csproj" />
  20. <ProjectReference Include="..\LazyTestContentPackage\LazyTestContentPackage.csproj" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <EmbeddedResource Update="Resources.resx" GenerateSource="true" />
  24. </ItemGroup>
  25. <ItemGroup>
  26. <BlazorWebAssemblyLazyLoad Include="Newtonsoft.Json" />
  27. <BlazorWebAssemblyLazyLoad Include="LazyTestContentPackage" />
  28. </ItemGroup>
  29. </Project>