| 12345678910111213141516171819202122232425262728293031323334353637 |
- <Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
- <PropertyGroup>
- <TargetFramework>$(DefaultNetCoreTargetFramework)</TargetFramework>
- <!-- Must be defined before ReferenceFromSource.props is imported -->
- <AdditionalRunArguments>--pathbase /subdir</AdditionalRunArguments>
- <!-- Resx generation on Resources.resx only -->
- <GenerateResxSource>false</GenerateResxSource>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="System.ComponentModel" />
- <Reference Include="System.Net.Http.Json" />
- <Reference Include="Microsoft.AspNetCore.Components.WebAssembly" />
- <Reference Include="Microsoft.AspNetCore.Components.Authorization" />
- <Reference Include="Microsoft.AspNetCore.Components.Web.Extensions" />
- <Reference Include="Microsoft.Extensions.Logging.Configuration" />
- <Reference Include="Newtonsoft.Json" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\TestContentPackage\TestContentPackage.csproj" />
- <ProjectReference Include="..\LazyTestContentPackage\LazyTestContentPackage.csproj" />
- </ItemGroup>
- <ItemGroup>
- <EmbeddedResource Update="Resources.resx" GenerateSource="true" />
- </ItemGroup>
- <ItemGroup>
- <BlazorWebAssemblyLazyLoad Include="Newtonsoft.Json" />
- <BlazorWebAssemblyLazyLoad Include="LazyTestContentPackage" />
- </ItemGroup>
- </Project>
|